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

« back to all changes in this revision

Viewing changes to libatalk/cnid/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.
66
66
libcnid_la_DEPENDENCIES = $(LIBCNID_DEPS)
67
67
am_libcnid_la_OBJECTS = cnid.lo cnid_init.lo
68
68
libcnid_la_OBJECTS = $(am_libcnid_la_OBJECTS)
69
 
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
 
69
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
70
70
depcomp = $(SHELL) $(top_srcdir)/depcomp
71
71
am__depfiles_maybe = depfiles
72
72
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
126
126
DEFAULT_CNID_SCHEME = @DEFAULT_CNID_SCHEME@
127
127
DEFS = @DEFS@
128
128
DEPDIR = @DEPDIR@
 
129
DSYMUTIL = @DSYMUTIL@
129
130
ECHO = @ECHO@
130
131
ECHO_C = @ECHO_C@
131
132
ECHO_N = @ECHO_N@
160
161
MAKEINFO = @MAKEINFO@
161
162
MKDIR_P = @MKDIR_P@
162
163
NETATALK_VERSION = @NETATALK_VERSION@
 
164
NMEDIT = @NMEDIT@
163
165
OBJEXT = @OBJEXT@
164
166
OVERWRITE_CONFIG = @OVERWRITE_CONFIG@
165
167
PACKAGE = @PACKAGE@
177
179
PS = @PS@
178
180
QUOTA_LIBS = @QUOTA_LIBS@
179
181
RANLIB = @RANLIB@
 
182
SED = @SED@
180
183
SERVERTEXT = @SERVERTEXT@
181
184
SET_MAKE = @SET_MAKE@
182
185
SHELL = @SHELL@
271
274
              exit 1;; \
272
275
          esac; \
273
276
        done; \
274
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  libatalk/cnid/Makefile'; \
 
277
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  libatalk/cnid/Makefile'; \
275
278
        cd $(top_srcdir) && \
276
 
          $(AUTOMAKE) --foreign  libatalk/cnid/Makefile
 
279
          $(AUTOMAKE) --gnu  libatalk/cnid/Makefile
277
280
.PRECIOUS: Makefile
278
281
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
279
282
        @case '$?' in \
414
417
        unique=`for i in $$list; do \
415
418
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
416
419
          done | \
417
 
          $(AWK) '    { files[$$0] = 1; } \
418
 
               END { for (i in files) print i; }'`; \
 
420
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
421
              END { if (nonempty) { for (i in files) print i; }; }'`; \
419
422
        mkid -fID $$unique
420
423
tags: TAGS
421
424
 
440
443
        unique=`for i in $$list; do \
441
444
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
442
445
          done | \
443
 
          $(AWK) '    { files[$$0] = 1; } \
444
 
               END { for (i in files) print i; }'`; \
 
446
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
447
              END { if (nonempty) { for (i in files) print i; }; }'`; \
445
448
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
446
449
          test -n "$$unique" || unique=$$empty_fix; \
447
450
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
451
454
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
452
455
                $(TAGS_FILES) $(LISP)
453
456
        tags=; \
454
 
        here=`pwd`; \
455
457
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
456
458
        unique=`for i in $$list; do \
457
459
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
458
460
          done | \
459
 
          $(AWK) '    { files[$$0] = 1; } \
460
 
               END { for (i in files) print i; }'`; \
 
461
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
462
              END { if (nonempty) { for (i in files) print i; }; }'`; \
461
463
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
462
464
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
463
465
             $$tags $$unique