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

« back to all changes in this revision

Viewing changes to etc/psf/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.
77
77
psf_LDADD = $(LDADD)
78
78
libexecSCRIPT_INSTALL = $(INSTALL_SCRIPT)
79
79
SCRIPTS = $(libexec_SCRIPTS)
80
 
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
 
80
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
81
81
depcomp = $(SHELL) $(top_srcdir)/depcomp
82
82
am__depfiles_maybe = depfiles
83
83
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
141
141
DEFAULT_CNID_SCHEME = @DEFAULT_CNID_SCHEME@
142
142
DEFS = @DEFS@
143
143
DEPDIR = @DEPDIR@
 
144
DSYMUTIL = @DSYMUTIL@
144
145
ECHO = @ECHO@
145
146
ECHO_C = @ECHO_C@
146
147
ECHO_N = @ECHO_N@
175
176
MAKEINFO = @MAKEINFO@
176
177
MKDIR_P = @MKDIR_P@
177
178
NETATALK_VERSION = @NETATALK_VERSION@
 
179
NMEDIT = @NMEDIT@
178
180
OBJEXT = @OBJEXT@
179
181
OVERWRITE_CONFIG = @OVERWRITE_CONFIG@
180
182
PACKAGE = @PACKAGE@
192
194
PS = @PS@
193
195
QUOTA_LIBS = @QUOTA_LIBS@
194
196
RANLIB = @RANLIB@
 
197
SED = @SED@
195
198
SERVERTEXT = @SERVERTEXT@
196
199
SET_MAKE = @SET_MAKE@
197
200
SHELL = @SHELL@
289
292
              exit 1;; \
290
293
          esac; \
291
294
        done; \
292
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  etc/psf/Makefile'; \
 
295
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  etc/psf/Makefile'; \
293
296
        cd $(top_srcdir) && \
294
 
          $(AUTOMAKE) --foreign  etc/psf/Makefile
 
297
          $(AUTOMAKE) --gnu  etc/psf/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 $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
322
 
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
 
324
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
 
325
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
323
326
          else :; fi; \
324
327
        done
325
328
 
421
424
        unique=`for i in $$list; do \
422
425
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
423
426
          done | \
424
 
          $(AWK) '    { files[$$0] = 1; } \
425
 
               END { for (i in files) print i; }'`; \
 
427
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
428
              END { if (nonempty) { for (i in files) print i; }; }'`; \
426
429
        mkid -fID $$unique
427
430
tags: TAGS
428
431
 
434
437
        unique=`for i in $$list; do \
435
438
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
436
439
          done | \
437
 
          $(AWK) '    { files[$$0] = 1; } \
438
 
               END { for (i in files) print i; }'`; \
 
440
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
441
              END { if (nonempty) { for (i in files) print i; }; }'`; \
439
442
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
440
443
          test -n "$$unique" || unique=$$empty_fix; \
441
444
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
445
448
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
446
449
                $(TAGS_FILES) $(LISP)
447
450
        tags=; \
448
 
        here=`pwd`; \
449
451
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
450
452
        unique=`for i in $$list; do \
451
453
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
452
454
          done | \
453
 
          $(AWK) '    { files[$$0] = 1; } \
454
 
               END { for (i in files) print i; }'`; \
 
455
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
456
              END { if (nonempty) { for (i in files) print i; }; }'`; \
455
457
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
456
458
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
457
459
             $$tags $$unique