~darkxst/ubuntu/trusty/gdm/nokill

« back to all changes in this revision

Viewing changes to gui/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha, Tim Lunn, Jeremy Bicha, Robert Ancell
  • Date: 2013-05-31 22:36:08 UTC
  • mfrom: (1.4.55)
  • Revision ID: package-import@ubuntu.com-20130531223608-33uo85niksee5460
Tags: 3.8.1.1-0ubuntu1
[ Tim Lunn ]
* New upstream release
* debian/patches/ubuntu_dont_catch_sigsegv.patch:
  - Dropped, obsolete
* debian/rules:
  - Don't rename gdm binary since that's already been
    done in the new version

[ Jeremy Bicha ]
* debian/control.in: Bump minimum glib
* debian/watch: Watch for unstable releases
* debian/patches/00git_logind_check.patch:
  - Dropped, applied in new release
* debian/patches/08_frequent-users_greeter.patch: Refreshed

[ Robert Ancell ]
* New upstream release
* debian/patches/ubuntu_daemon_autologin_tracking.patch:
* debian/patches/ubuntu_ensure_dirs.patch:
* debian/patches/ubuntu_slave-only-set-up-autologin.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.12.2 from Makefile.am.
 
1
# Makefile.in generated by automake 1.13.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
51
51
host_triplet = @host@
52
52
@XDMCP_SUPPORT_TRUE@am__append_1 = simple-chooser
53
53
subdir = gui
54
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
55
 
        $(top_srcdir)/mkinstalldirs
 
54
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
56
55
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
57
 
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
58
 
        $(top_srcdir)/configure.ac
 
56
am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
 
57
        $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \
 
58
        $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \
 
59
        $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
 
60
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
 
61
        $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
 
62
        $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
 
63
        $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
 
64
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
59
65
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
60
66
        $(ACLOCAL_M4)
61
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
67
mkinstalldirs = $(install_sh) -d
62
68
CONFIG_HEADER = $(top_builddir)/config.h
63
69
CONFIG_CLEAN_FILES =
64
70
CONFIG_CLEAN_VPATH_FILES =
76
82
am__v_at_1 = 
77
83
SOURCES =
78
84
DIST_SOURCES =
79
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
80
 
        html-recursive info-recursive install-data-recursive \
81
 
        install-dvi-recursive install-exec-recursive \
82
 
        install-html-recursive install-info-recursive \
83
 
        install-pdf-recursive install-ps-recursive install-recursive \
84
 
        installcheck-recursive installdirs-recursive pdf-recursive \
85
 
        ps-recursive uninstall-recursive
 
85
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 
86
        ctags-recursive dvi-recursive html-recursive info-recursive \
 
87
        install-data-recursive install-dvi-recursive \
 
88
        install-exec-recursive install-html-recursive \
 
89
        install-info-recursive install-pdf-recursive \
 
90
        install-ps-recursive install-recursive installcheck-recursive \
 
91
        installdirs-recursive pdf-recursive ps-recursive \
 
92
        tags-recursive uninstall-recursive
86
93
am__can_run_installinfo = \
87
94
  case $$AM_UPDATE_INFO_DIR in \
88
95
    n|no|NO) false;; \
90
97
  esac
91
98
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
92
99
  distclean-recursive maintainer-clean-recursive
93
 
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
94
 
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
100
am__recursive_targets = \
 
101
  $(RECURSIVE_TARGETS) \
 
102
  $(RECURSIVE_CLEAN_TARGETS) \
 
103
  $(am__extra_recursive_targets)
 
104
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
95
105
        distdir
 
106
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
107
# Read a list of newline-separated strings from the standard input,
 
108
# and print each of them once, without duplicates.  Input order is
 
109
# *not* preserved.
 
110
am__uniquify_input = $(AWK) '\
 
111
  BEGIN { nonempty = 0; } \
 
112
  { items[$$0] = 1; nonempty = 1; } \
 
113
  END { if (nonempty) { for (i in items) print i; }; } \
 
114
'
 
115
# Make sure the list of sources is unique.  This is necessary because,
 
116
# e.g., the same source file might be shared among _SOURCES variables
 
117
# for different programs/libraries.
 
118
am__define_uniq_tagged_files = \
 
119
  list='$(am__tagged_files)'; \
 
120
  unique=`for i in $$list; do \
 
121
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
122
  done | $(am__uniquify_input)`
96
123
ETAGS = etags
97
124
CTAGS = ctags
98
125
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
185
212
GDM_INITIAL_VT = @GDM_INITIAL_VT@
186
213
GDM_OLD_CONF = @GDM_OLD_CONF@
187
214
GDM_PID_FILE = @GDM_PID_FILE@
 
215
GDM_RAN_ONCE_MARKER_DIR = @GDM_RAN_ONCE_MARKER_DIR@
 
216
GDM_RAN_ONCE_MARKER_DIR_EXPANDED = @GDM_RAN_ONCE_MARKER_DIR_EXPANDED@
 
217
GDM_RAN_ONCE_MARKER_FILE = @GDM_RAN_ONCE_MARKER_FILE@
 
218
GDM_RAN_ONCE_MARKER_FILE_EXPANDED = @GDM_RAN_ONCE_MARKER_FILE_EXPANDED@
 
219
GDM_RUN_DIR = @GDM_RUN_DIR@
188
220
GDM_SCREENSHOT_DIR = @GDM_SCREENSHOT_DIR@
189
221
GDM_SESSION_DEFAULT_PATH = @GDM_SESSION_DEFAULT_PATH@
190
222
GDM_SIMPLE_GREETER_EXTENSIONS_DATA_DIR = @GDM_SIMPLE_GREETER_EXTENSIONS_DATA_DIR@
230
262
INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
231
263
INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
232
264
ITSTOOL = @ITSTOOL@
 
265
JOURNALD_CFLAGS = @JOURNALD_CFLAGS@
 
266
JOURNALD_LIBS = @JOURNALD_LIBS@
233
267
LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
234
268
LD = @LD@
235
269
LDFLAGS = @LDFLAGS@
449
483
# (1) if the variable is set in 'config.status', edit 'config.status'
450
484
#     (which will cause the Makefiles to be regenerated when you run 'make');
451
485
# (2) otherwise, pass the desired values on the 'make' command line.
452
 
$(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
 
486
$(am__recursive_targets):
453
487
        @fail= failcom='exit 1'; \
454
488
        for f in x $$MAKEFLAGS; do \
455
489
          case $$f in \
477
511
        if test "$$dot_seen" = "no"; then \
478
512
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
479
513
        fi; test -z "$$fail"
480
 
tags-recursive:
481
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
482
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
483
 
        done
484
 
ctags-recursive:
485
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
486
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
487
 
        done
488
 
cscopelist-recursive:
489
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
490
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
491
 
        done
492
 
 
493
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
494
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
495
 
        unique=`for i in $$list; do \
496
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
497
 
          done | \
498
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
499
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
500
 
        mkid -fID $$unique
501
 
tags: TAGS
502
 
 
503
 
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
504
 
                $(TAGS_FILES) $(LISP)
 
514
 
 
515
ID: $(am__tagged_files)
 
516
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
517
tags: tags-recursive
 
518
TAGS: tags
 
519
 
 
520
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
505
521
        set x; \
506
522
        here=`pwd`; \
507
523
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
517
533
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
518
534
          fi; \
519
535
        done; \
520
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
521
 
        unique=`for i in $$list; do \
522
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
523
 
          done | \
524
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
525
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
536
        $(am__define_uniq_tagged_files); \
526
537
        shift; \
527
538
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
528
539
          test -n "$$unique" || unique=$$empty_fix; \
534
545
              $$unique; \
535
546
          fi; \
536
547
        fi
537
 
ctags: CTAGS
538
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
539
 
                $(TAGS_FILES) $(LISP)
540
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
541
 
        unique=`for i in $$list; do \
542
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
543
 
          done | \
544
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
545
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
548
ctags: ctags-recursive
 
549
 
 
550
CTAGS: ctags
 
551
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
552
        $(am__define_uniq_tagged_files); \
546
553
        test -z "$(CTAGS_ARGS)$$unique" \
547
554
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
548
555
             $$unique
551
558
        here=`$(am__cd) $(top_builddir) && pwd` \
552
559
          && $(am__cd) $(top_srcdir) \
553
560
          && gtags -i $(GTAGS_ARGS) "$$here"
 
561
cscopelist: cscopelist-recursive
554
562
 
555
 
cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
556
 
        list='$(SOURCES) $(HEADERS) $(LISP)'; \
 
563
cscopelist-am: $(am__tagged_files)
 
564
        list='$(am__tagged_files)'; \
557
565
        case "$(srcdir)" in \
558
566
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
559
567
          *) sdir=$(subdir)/$(srcdir) ;; \
725
733
 
726
734
uninstall-am:
727
735
 
728
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) \
729
 
        cscopelist-recursive ctags-recursive install-am install-strip \
730
 
        tags-recursive
 
736
.MAKE: $(am__recursive_targets) install-am install-strip
731
737
 
732
 
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
733
 
        all all-am check check-am clean clean-generic clean-libtool \
734
 
        cscopelist cscopelist-recursive ctags ctags-recursive \
735
 
        distclean distclean-generic distclean-libtool distclean-tags \
736
 
        distdir dvi dvi-am html html-am info info-am install \
737
 
        install-am install-data install-data-am install-dvi \
 
738
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
 
739
        check-am clean clean-generic clean-libtool cscopelist-am ctags \
 
740
        ctags-am distclean distclean-generic distclean-libtool \
 
741
        distclean-tags distdir dvi dvi-am html html-am info info-am \
 
742
        install install-am install-data install-data-am install-dvi \
738
743
        install-dvi-am install-exec install-exec-am install-html \
739
744
        install-html-am install-info install-info-am install-man \
740
745
        install-pdf install-pdf-am install-ps install-ps-am \
741
746
        install-strip installcheck installcheck-am installdirs \
742
747
        installdirs-am maintainer-clean maintainer-clean-generic \
743
748
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
744
 
        ps ps-am tags tags-recursive uninstall uninstall-am
 
749
        ps ps-am tags tags-am uninstall uninstall-am
745
750
 
746
751
 
747
752
# Tell versions [3.59,3.63) of GNU make to not export all variables.