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

« back to all changes in this revision

Viewing changes to libatalk/nbp/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.
69
69
am_libnbp_la_OBJECTS = nbp_util.lo nbp_lkup.lo nbp_rgstr.lo \
70
70
        nbp_unrgstr.lo
71
71
libnbp_la_OBJECTS = $(am_libnbp_la_OBJECTS)
72
 
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
 
72
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
73
73
depcomp = $(SHELL) $(top_srcdir)/depcomp
74
74
am__depfiles_maybe = depfiles
75
75
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
120
120
DEFAULT_CNID_SCHEME = @DEFAULT_CNID_SCHEME@
121
121
DEFS = @DEFS@
122
122
DEPDIR = @DEPDIR@
 
123
DSYMUTIL = @DSYMUTIL@
123
124
ECHO = @ECHO@
124
125
ECHO_C = @ECHO_C@
125
126
ECHO_N = @ECHO_N@
154
155
MAKEINFO = @MAKEINFO@
155
156
MKDIR_P = @MKDIR_P@
156
157
NETATALK_VERSION = @NETATALK_VERSION@
 
158
NMEDIT = @NMEDIT@
157
159
OBJEXT = @OBJEXT@
158
160
OVERWRITE_CONFIG = @OVERWRITE_CONFIG@
159
161
PACKAGE = @PACKAGE@
171
173
PS = @PS@
172
174
QUOTA_LIBS = @QUOTA_LIBS@
173
175
RANLIB = @RANLIB@
 
176
SED = @SED@
174
177
SERVERTEXT = @SERVERTEXT@
175
178
SET_MAKE = @SET_MAKE@
176
179
SHELL = @SHELL@
255
258
              exit 1;; \
256
259
          esac; \
257
260
        done; \
258
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  libatalk/nbp/Makefile'; \
 
261
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  libatalk/nbp/Makefile'; \
259
262
        cd $(top_srcdir) && \
260
 
          $(AUTOMAKE) --foreign  libatalk/nbp/Makefile
 
263
          $(AUTOMAKE) --gnu  libatalk/nbp/Makefile
261
264
.PRECIOUS: Makefile
262
265
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
263
266
        @case '$?' in \
330
333
        unique=`for i in $$list; do \
331
334
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
332
335
          done | \
333
 
          $(AWK) '    { files[$$0] = 1; } \
334
 
               END { for (i in files) print i; }'`; \
 
336
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
337
              END { if (nonempty) { for (i in files) print i; }; }'`; \
335
338
        mkid -fID $$unique
336
339
tags: TAGS
337
340
 
343
346
        unique=`for i in $$list; do \
344
347
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
345
348
          done | \
346
 
          $(AWK) '    { files[$$0] = 1; } \
347
 
               END { for (i in files) print i; }'`; \
 
349
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
350
              END { if (nonempty) { for (i in files) print i; }; }'`; \
348
351
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
349
352
          test -n "$$unique" || unique=$$empty_fix; \
350
353
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
354
357
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
355
358
                $(TAGS_FILES) $(LISP)
356
359
        tags=; \
357
 
        here=`pwd`; \
358
360
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
359
361
        unique=`for i in $$list; do \
360
362
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
361
363
          done | \
362
 
          $(AWK) '    { files[$$0] = 1; } \
363
 
               END { for (i in files) print i; }'`; \
 
364
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
365
              END { if (nonempty) { for (i in files) print i; }; }'`; \
364
366
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
365
367
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
366
368
             $$tags $$unique