~ubuntu-branches/ubuntu/precise/netatalk/precise

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2010-01-23 05:08:37 UTC
  • mfrom: (8.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100123050837-rh5465ophfkjpsn2
Tags: 2.0.5-3
* Fix replace/drop bogus and/or obsolete configure options:
  + Use --without-ssl-dir/--with-ssl-dir (not --with-openssl-dir/
    --without-openssl-dir). Closes: bug#565969, thanks to Fabian
    Greffrath.
  + Use --enable-tcp-wrappers (not --with-tcp-wrappers).
  + Use --disable-srvloc (not --disable-slp).
  + Drop --disable-logger (obsolete since 2.0.1).
  + Drop --with-mangling (apparently obsolete since 2.0 alpha 1).
  + Drop --with-nls-dir and --without-xfs (apparently obsolete).
* Autoreconfigure during build (since upstream does not enable
  maintainer-mode). Disable autotools-related patches. Build-depend on
  libtool, automake1.11 and autoconf. Closes: bug#559060, thanks to
  Cyril Brulebois and others.
* Add safety-check to fail build if accidentally linked against
  libssl. Thanks to Fabian Greffrath (see bug#565969).
* Disable atalkd by default, to not require supported network active
  at daemon start time. Closes: bug#565568, thanks to Kurt Roeckx.
  Add NEWS entry about the change.
* Build-depend on and enable hardening-includes.
* Fix adjust "See also" of manpages referring to afile or achfile.
* Set urgency=medium as earlier lack of explicit disabling openssl
  caused the package to violate licensing for some architectures, also
  affecting testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10 from Makefile.am.
 
1
# Makefile.in generated by automake 1.10.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  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
6
6
# This Makefile.in is free software; the Free Software Foundation
7
7
# gives unlimited permission to copy and/or distribute it,
8
8
# with or without modifications, as long as this notice is preserved.
125
125
DEFAULT_CNID_SCHEME = @DEFAULT_CNID_SCHEME@
126
126
DEFS = @DEFS@
127
127
DEPDIR = @DEPDIR@
 
128
DSYMUTIL = @DSYMUTIL@
128
129
ECHO = @ECHO@
129
130
ECHO_C = @ECHO_C@
130
131
ECHO_N = @ECHO_N@
159
160
MAKEINFO = @MAKEINFO@
160
161
MKDIR_P = @MKDIR_P@
161
162
NETATALK_VERSION = @NETATALK_VERSION@
 
163
NMEDIT = @NMEDIT@
162
164
OBJEXT = @OBJEXT@
163
165
OVERWRITE_CONFIG = @OVERWRITE_CONFIG@
164
166
PACKAGE = @PACKAGE@
176
178
PS = @PS@
177
179
QUOTA_LIBS = @QUOTA_LIBS@
178
180
RANLIB = @RANLIB@
 
181
SED = @SED@
179
182
SERVERTEXT = @SERVERTEXT@
180
183
SET_MAKE = @SET_MAKE@
181
184
SHELL = @SHELL@
391
394
        unique=`for i in $$list; do \
392
395
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
393
396
          done | \
394
 
          $(AWK) '    { files[$$0] = 1; } \
395
 
               END { for (i in files) print i; }'`; \
 
397
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
398
              END { if (nonempty) { for (i in files) print i; }; }'`; \
396
399
        mkid -fID $$unique
397
400
tags: TAGS
398
401
 
417
420
        unique=`for i in $$list; do \
418
421
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
419
422
          done | \
420
 
          $(AWK) '    { files[$$0] = 1; } \
421
 
               END { for (i in files) print i; }'`; \
 
423
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
424
              END { if (nonempty) { for (i in files) print i; }; }'`; \
422
425
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
423
426
          test -n "$$unique" || unique=$$empty_fix; \
424
427
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
428
431
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
429
432
                $(TAGS_FILES) $(LISP)
430
433
        tags=; \
431
 
        here=`pwd`; \
432
434
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
433
435
        unique=`for i in $$list; do \
434
436
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
435
437
          done | \
436
 
          $(AWK) '    { files[$$0] = 1; } \
437
 
               END { for (i in files) print i; }'`; \
 
438
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
439
              END { if (nonempty) { for (i in files) print i; }; }'`; \
438
440
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
439
441
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
440
442
             $$tags $$unique
505
507
        tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
506
508
        $(am__remove_distdir)
507
509
 
 
510
dist-lzma: distdir
 
511
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
 
512
        $(am__remove_distdir)
 
513
 
508
514
dist-tarZ: distdir
509
515
        tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
510
516
        $(am__remove_distdir)
531
537
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
532
538
        *.tar.bz2*) \
533
539
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
540
        *.tar.lzma*) \
 
541
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
534
542
        *.tar.Z*) \
535
543
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
536
544
        *.shar.gz*) \
682
690
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
683
691
        all all-am am--refresh check check-am clean clean-generic \
684
692
        clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
685
 
        dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \
686
 
        distclean-generic distclean-hdr distclean-libtool \
 
693
        dist-gzip dist-lzma dist-shar dist-tarZ dist-zip distcheck \
 
694
        distclean distclean-generic distclean-hdr distclean-libtool \
687
695
        distclean-tags distcleancheck distdir distuninstallcheck dvi \
688
696
        dvi-am html html-am info info-am install install-am \
689
697
        install-data install-data-am install-dvi install-dvi-am \