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

« back to all changes in this revision

Viewing changes to etc/afpd/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.
84
84
afpd_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
85
85
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(afpd_LDFLAGS) \
86
86
        $(LDFLAGS) -o $@
87
 
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
 
87
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
88
88
depcomp = $(SHELL) $(top_srcdir)/depcomp
89
89
am__depfiles_maybe = depfiles
90
90
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
144
144
DEFAULT_CNID_SCHEME = @DEFAULT_CNID_SCHEME@
145
145
DEFS = @DEFS@
146
146
DEPDIR = @DEPDIR@
 
147
DSYMUTIL = @DSYMUTIL@
147
148
ECHO = @ECHO@
148
149
ECHO_C = @ECHO_C@
149
150
ECHO_N = @ECHO_N@
178
179
MAKEINFO = @MAKEINFO@
179
180
MKDIR_P = @MKDIR_P@
180
181
NETATALK_VERSION = @NETATALK_VERSION@
 
182
NMEDIT = @NMEDIT@
181
183
OBJEXT = @OBJEXT@
182
184
OVERWRITE_CONFIG = @OVERWRITE_CONFIG@
183
185
PACKAGE = @PACKAGE@
195
197
PS = @PS@
196
198
QUOTA_LIBS = @QUOTA_LIBS@
197
199
RANLIB = @RANLIB@
 
200
SED = @SED@
198
201
SERVERTEXT = @SERVERTEXT@
199
202
SET_MAKE = @SET_MAKE@
200
203
SHELL = @SHELL@
289
292
              exit 1;; \
290
293
          esac; \
291
294
        done; \
292
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  etc/afpd/Makefile'; \
 
295
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  etc/afpd/Makefile'; \
293
296
        cd $(top_srcdir) && \
294
 
          $(AUTOMAKE) --foreign  etc/afpd/Makefile
 
297
          $(AUTOMAKE) --gnu  etc/afpd/Makefile
295
298
.PRECIOUS: Makefile
296
299
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
297
300
        @case '$?' in \
318
321
             || test -f $$p1 \
319
322
          ; then \
320
323
            f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
321
 
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
322
 
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \
 
324
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(sbinPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
 
325
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(sbinPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \
323
326
          else :; fi; \
324
327
        done
325
328
 
409
412
        unique=`for i in $$list; do \
410
413
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
411
414
          done | \
412
 
          $(AWK) '    { files[$$0] = 1; } \
413
 
               END { for (i in files) print i; }'`; \
 
415
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
416
              END { if (nonempty) { for (i in files) print i; }; }'`; \
414
417
        mkid -fID $$unique
415
418
tags: TAGS
416
419
 
422
425
        unique=`for i in $$list; do \
423
426
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
424
427
          done | \
425
 
          $(AWK) '    { files[$$0] = 1; } \
426
 
               END { for (i in files) print i; }'`; \
 
428
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
429
              END { if (nonempty) { for (i in files) print i; }; }'`; \
427
430
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
428
431
          test -n "$$unique" || unique=$$empty_fix; \
429
432
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
433
436
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
434
437
                $(TAGS_FILES) $(LISP)
435
438
        tags=; \
436
 
        here=`pwd`; \
437
439
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
438
440
        unique=`for i in $$list; do \
439
441
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
440
442
          done | \
441
 
          $(AWK) '    { files[$$0] = 1; } \
442
 
               END { for (i in files) print i; }'`; \
 
443
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
444
              END { if (nonempty) { for (i in files) print i; }; }'`; \
443
445
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
444
446
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
445
447
             $$tags $$unique