~ubuntu-branches/ubuntu/quantal/shadow/quantal

« back to all changes in this revision

Viewing changes to lib/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2010-11-24 13:42:42 UTC
  • mfrom: (1.1.9 upstream) (18.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20101124134242-832f4tew5s81ntj7
Tags: 1:4.1.4.2+svn3283-2ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Ubuntu specific:
    + debian/login.defs: use SHA512 by default for password crypt routine.
  - debian/{source_shadow.py,rules}: Add apport hook
  - debian/rules: fix FTBFS from newer libtools
  - debian/patches/495_stdout-encrypted-password: chpasswd can report
    password hashes on stdout (Debian bug 505640).
  - Rework 495_stdout-encrypted-password to cope with chpasswd using PAM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.2 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
16
17
 
17
18
VPATH = @srcdir@
18
19
pkgdatadir = $(datadir)/@PACKAGE@
 
20
pkgincludedir = $(includedir)/@PACKAGE@
19
21
pkglibdir = $(libdir)/@PACKAGE@
20
 
pkgincludedir = $(includedir)/@PACKAGE@
 
22
pkglibexecdir = $(libexecdir)/@PACKAGE@
21
23
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
24
install_sh_DATA = $(install_sh) -c -m 644
23
25
install_sh_PROGRAM = $(install_sh) -c
32
34
POST_UNINSTALL = :
33
35
build_triplet = @build@
34
36
host_triplet = @host@
 
37
@WITH_TCB_TRUE@am__append_1 = tcbfuncs.c tcbfuncs.h
35
38
subdir = lib
36
39
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
37
40
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
45
mkinstalldirs = $(install_sh) -d
43
46
CONFIG_HEADER = $(top_builddir)/config.h
44
47
CONFIG_CLEAN_FILES =
 
48
CONFIG_CLEAN_VPATH_FILES =
45
49
LTLIBRARIES = $(noinst_LTLIBRARIES)
46
50
libshadow_la_LIBADD =
 
51
am__libshadow_la_SOURCES_DIST = commonio.c commonio.h defines.h \
 
52
        encrypt.c exitcodes.h faillog.h fputsx.c getdef.c getdef.h \
 
53
        get_gid.c getlong.c get_pid.c get_uid.c getulong.c groupio.c \
 
54
        groupmem.c groupio.h gshadow.c lockpw.c nscd.c nscd.h \
 
55
        pam_defs.h port.c port.h prototypes.h pwauth.c pwauth.h pwio.c \
 
56
        pwio.h pwmem.c sgetgrent.c sgetpwent.c sgetspent.c sgroupio.c \
 
57
        sgroupio.h shadow.c shadowio.c shadowio.h shadowmem.c utent.c \
 
58
        tcbfuncs.c tcbfuncs.h
 
59
@WITH_TCB_TRUE@am__objects_1 = tcbfuncs.lo
47
60
am_libshadow_la_OBJECTS = commonio.lo encrypt.lo fputsx.lo getdef.lo \
48
61
        get_gid.lo getlong.lo get_pid.lo get_uid.lo getulong.lo \
49
62
        groupio.lo groupmem.lo gshadow.lo lockpw.lo nscd.lo port.lo \
50
63
        pwauth.lo pwio.lo pwmem.lo sgetgrent.lo sgetpwent.lo \
51
64
        sgetspent.lo sgroupio.lo shadow.lo shadowio.lo shadowmem.lo \
52
 
        utent.lo
 
65
        utent.lo $(am__objects_1)
53
66
libshadow_la_OBJECTS = $(am_libshadow_la_OBJECTS)
54
67
libshadow_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
55
68
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
57
70
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
58
71
depcomp = $(SHELL) $(top_srcdir)/depcomp
59
72
am__depfiles_maybe = depfiles
 
73
am__mv = mv -f
60
74
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
61
75
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
62
76
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
67
81
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
68
82
        $(LDFLAGS) -o $@
69
83
SOURCES = $(libshadow_la_SOURCES)
70
 
DIST_SOURCES = $(libshadow_la_SOURCES)
 
84
DIST_SOURCES = $(am__libshadow_la_SOURCES_DIST)
71
85
ETAGS = etags
72
86
CTAGS = ctags
73
87
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
108
122
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
109
123
LD = @LD@
110
124
LDFLAGS = @LDFLAGS@
 
125
LIBACL = @LIBACL@
 
126
LIBATTR = @LIBATTR@
111
127
LIBAUDIT = @LIBAUDIT@
112
128
LIBCRACK = @LIBCRACK@
113
129
LIBCRYPT = @LIBCRYPT@
119
135
LIBS = @LIBS@
120
136
LIBSELINUX = @LIBSELINUX@
121
137
LIBSKEY = @LIBSKEY@
 
138
LIBTCB = @LIBTCB@
122
139
LIBTOOL = @LIBTOOL@
123
140
LIPO = @LIPO@
124
141
LN_S = @LN_S@
142
159
PACKAGE_NAME = @PACKAGE_NAME@
143
160
PACKAGE_STRING = @PACKAGE_STRING@
144
161
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
162
PACKAGE_URL = @PACKAGE_URL@
145
163
PACKAGE_VERSION = @PACKAGE_VERSION@
146
164
PATH_SEPARATOR = @PATH_SEPARATOR@
147
165
POSUB = @POSUB@
216
234
AUTOMAKE_OPTIONS = 1.0 foreign
217
235
noinst_LTLIBRARIES = libshadow.la
218
236
libshadow_la_LDFLAGS = -version-info 0:0:0
219
 
libshadow_la_SOURCES = \
220
 
        commonio.c \
221
 
        commonio.h \
222
 
        defines.h \
223
 
        encrypt.c \
224
 
        exitcodes.h \
225
 
        faillog.h \
226
 
        fputsx.c \
227
 
        getdef.c \
228
 
        getdef.h \
229
 
        get_gid.c \
230
 
        getlong.c \
231
 
        get_pid.c \
232
 
        get_uid.c \
233
 
        getulong.c \
234
 
        groupio.c \
235
 
        groupmem.c \
236
 
        groupio.h \
237
 
        gshadow.c \
238
 
        lockpw.c \
239
 
        nscd.c \
240
 
        nscd.h \
241
 
        pam_defs.h \
242
 
        port.c \
243
 
        port.h \
244
 
        prototypes.h \
245
 
        pwauth.c \
246
 
        pwauth.h \
247
 
        pwio.c \
248
 
        pwio.h \
249
 
        pwmem.c \
250
 
        sgetgrent.c \
251
 
        sgetpwent.c \
252
 
        sgetspent.c \
253
 
        sgroupio.c \
254
 
        sgroupio.h\
255
 
        shadow.c \
256
 
        shadowio.c \
257
 
        shadowio.h \
258
 
        shadowmem.c \
259
 
        utent.c
260
 
 
 
237
libshadow_la_SOURCES = commonio.c commonio.h defines.h encrypt.c \
 
238
        exitcodes.h faillog.h fputsx.c getdef.c getdef.h get_gid.c \
 
239
        getlong.c get_pid.c get_uid.c getulong.c groupio.c groupmem.c \
 
240
        groupio.h gshadow.c lockpw.c nscd.c nscd.h pam_defs.h port.c \
 
241
        port.h prototypes.h pwauth.c pwauth.h pwio.c pwio.h pwmem.c \
 
242
        sgetgrent.c sgetpwent.c sgetspent.c sgroupio.c sgroupio.h \
 
243
        shadow.c shadowio.c shadowio.h shadowmem.c utent.c \
 
244
        $(am__append_1)
261
245
 
262
246
# These files are unneeded for some reason, listed in
263
247
# order of appearance:
280
264
              exit 1;; \
281
265
          esac; \
282
266
        done; \
283
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  lib/Makefile'; \
284
 
        cd $(top_srcdir) && \
285
 
          $(AUTOMAKE) --foreign  lib/Makefile
 
267
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \
 
268
        $(am__cd) $(top_srcdir) && \
 
269
          $(AUTOMAKE) --foreign lib/Makefile
286
270
.PRECIOUS: Makefile
287
271
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
288
272
        @case '$?' in \
300
284
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
301
285
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
302
286
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
287
$(am__aclocal_m4_deps):
303
288
 
304
289
clean-noinstLTLIBRARIES:
305
290
        -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
343
328
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shadow.Plo@am__quote@
344
329
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shadowio.Plo@am__quote@
345
330
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shadowmem.Plo@am__quote@
 
331
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcbfuncs.Plo@am__quote@
346
332
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utent.Plo@am__quote@
347
333
 
348
334
.c.o:
349
335
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
350
 
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
336
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
351
337
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
352
338
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
353
339
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
354
340
 
355
341
.c.obj:
356
342
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
357
 
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
343
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
358
344
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
359
345
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
360
346
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
361
347
 
362
348
.c.lo:
363
349
@am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
364
 
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
350
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
365
351
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
366
352
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
367
353
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
384
370
 
385
371
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
386
372
                $(TAGS_FILES) $(LISP)
387
 
        tags=; \
 
373
        set x; \
388
374
        here=`pwd`; \
389
375
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
390
376
        unique=`for i in $$list; do \
392
378
          done | \
393
379
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
394
380
              END { if (nonempty) { for (i in files) print i; }; }'`; \
395
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
381
        shift; \
 
382
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
396
383
          test -n "$$unique" || unique=$$empty_fix; \
397
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
398
 
            $$tags $$unique; \
 
384
          if test $$# -gt 0; then \
 
385
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
386
              "$$@" $$unique; \
 
387
          else \
 
388
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
389
              $$unique; \
 
390
          fi; \
399
391
        fi
400
392
ctags: CTAGS
401
393
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
402
394
                $(TAGS_FILES) $(LISP)
403
 
        tags=; \
404
395
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
405
396
        unique=`for i in $$list; do \
406
397
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
407
398
          done | \
408
399
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
409
400
              END { if (nonempty) { for (i in files) print i; }; }'`; \
410
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
401
        test -z "$(CTAGS_ARGS)$$unique" \
411
402
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
412
 
             $$tags $$unique
 
403
             $$unique
413
404
 
414
405
GTAGS:
415
406
        here=`$(am__cd) $(top_builddir) && pwd` \
416
 
          && cd $(top_srcdir) \
417
 
          && gtags -i $(GTAGS_ARGS) $$here
 
407
          && $(am__cd) $(top_srcdir) \
 
408
          && gtags -i $(GTAGS_ARGS) "$$here"
418
409
 
419
410
distclean-tags:
420
411
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
435
426
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
436
427
          if test -d $$d/$$file; then \
437
428
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
429
            if test -d "$(distdir)/$$file"; then \
 
430
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
431
            fi; \
438
432
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
439
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
433
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
434
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
440
435
            fi; \
441
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
436
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
442
437
          else \
443
 
            test -f $(distdir)/$$file \
444
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
438
            test -f "$(distdir)/$$file" \
 
439
            || cp -p $$d/$$file "$(distdir)/$$file" \
445
440
            || exit 1; \
446
441
          fi; \
447
442
        done
469
464
 
470
465
distclean-generic:
471
466
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
467
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
472
468
 
473
469
maintainer-clean-generic:
474
470
        @echo "This command is intended for maintainers to use"
490
486
 
491
487
html: html-am
492
488
 
 
489
html-am:
 
490
 
493
491
info: info-am
494
492
 
495
493
info-am:
498
496
 
499
497
install-dvi: install-dvi-am
500
498
 
 
499
install-dvi-am:
 
500
 
501
501
install-exec-am:
502
502
 
503
503
install-html: install-html-am
504
504
 
 
505
install-html-am:
 
506
 
505
507
install-info: install-info-am
506
508
 
 
509
install-info-am:
 
510
 
507
511
install-man:
508
512
 
509
513
install-pdf: install-pdf-am
510
514
 
 
515
install-pdf-am:
 
516
 
511
517
install-ps: install-ps-am
512
518
 
 
519
install-ps-am:
 
520
 
513
521
installcheck-am:
514
522
 
515
523
maintainer-clean: maintainer-clean-am
547
555
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
548
556
        pdf pdf-am ps ps-am tags uninstall uninstall-am
549
557
 
 
558
 
550
559
# Tell versions [3.59,3.63) of GNU make to not export all variables.
551
560
# Otherwise a system limit (for SysV at least) may be exceeded.
552
561
.NOEXPORT: