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

« back to all changes in this revision

Viewing changes to man/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.
109
109
DEFAULT_CNID_SCHEME = @DEFAULT_CNID_SCHEME@
110
110
DEFS = @DEFS@
111
111
DEPDIR = @DEPDIR@
 
112
DSYMUTIL = @DSYMUTIL@
112
113
ECHO = @ECHO@
113
114
ECHO_C = @ECHO_C@
114
115
ECHO_N = @ECHO_N@
143
144
MAKEINFO = @MAKEINFO@
144
145
MKDIR_P = @MKDIR_P@
145
146
NETATALK_VERSION = @NETATALK_VERSION@
 
147
NMEDIT = @NMEDIT@
146
148
OBJEXT = @OBJEXT@
147
149
OVERWRITE_CONFIG = @OVERWRITE_CONFIG@
148
150
PACKAGE = @PACKAGE@
160
162
PS = @PS@
161
163
QUOTA_LIBS = @QUOTA_LIBS@
162
164
RANLIB = @RANLIB@
 
165
SED = @SED@
163
166
SERVERTEXT = @SERVERTEXT@
164
167
SET_MAKE = @SET_MAKE@
165
168
SHELL = @SHELL@
241
244
              exit 1;; \
242
245
          esac; \
243
246
        done; \
244
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  man/Makefile'; \
 
247
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  man/Makefile'; \
245
248
        cd $(top_srcdir) && \
246
 
          $(AUTOMAKE) --foreign  man/Makefile
 
249
          $(AUTOMAKE) --gnu  man/Makefile
247
250
.PRECIOUS: Makefile
248
251
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
249
252
        @case '$?' in \
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; nonemtpy = 1; } \
 
350
              END { if (nonempty) { for (i in files) print i; }; }'`; \
348
351
        mkid -fID $$unique
349
352
tags: TAGS
350
353
 
369
372
        unique=`for i in $$list; do \
370
373
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
371
374
          done | \
372
 
          $(AWK) '    { files[$$0] = 1; } \
373
 
               END { for (i in files) print i; }'`; \
 
375
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
376
              END { if (nonempty) { for (i in files) print i; }; }'`; \
374
377
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
375
378
          test -n "$$unique" || unique=$$empty_fix; \
376
379
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
380
383
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
381
384
                $(TAGS_FILES) $(LISP)
382
385
        tags=; \
383
 
        here=`pwd`; \
384
386
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
385
387
        unique=`for i in $$list; do \
386
388
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
387
389
          done | \
388
 
          $(AWK) '    { files[$$0] = 1; } \
389
 
               END { for (i in files) print i; }'`; \
 
390
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
391
              END { if (nonempty) { for (i in files) print i; }; }'`; \
390
392
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
391
393
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
392
394
             $$tags $$unique