Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/bsd/dhcp/dist import of dhcp 4.3.0.
details: https://anonhg.NetBSD.org/src/rev/caa54146b2c6
branches: trunk
changeset: 330497:caa54146b2c6
user: spz <spz%NetBSD.org@localhost>
date: Sat Jul 12 11:57:24 2014 +0000
description:
import of dhcp 4.3.0.
Excerpts of the upstream RELNOTES:
The major "theme" for ISC DHCP 4.3.x was to update the suport for
DHCPv6 to include several of the features that have been available
for DHCPv4. These include:
- Support the use of classes
- Support for on_commit, on_expiry and on_release statements
- Better logging of address assignments
- Support for using DHCPv6 relay options in expressions
This release also adds suppport for the standard DDNS as described in the
current RFCs as well as enhancing support for dynamically adding and removing
subclasses via OMAPI.
There are a number of DHCPv6 limitations and features missing in this
release, which will be addressed in the future:
- Only Solaris, Linux, FreeBSD, NetBSD, and OpenBSD are supported.
- DHCPv6 includes human-readable text in status code messages, in
English. A method to reconfigure or support other languages would
be preferable.
- The "host-identifier" option is limited to a simple token.
- The client and server can only operate DHCPv4 or DHCPv6 at a time,
not both. To use both protocols simultaneously, two instances of the
relevant daemon are required, one with the '-6' command line option.
Changes since 4.3.0b1
- Tidy up receive packet processing.
Thanks to Brad Plank of GTA for reporting the issue and suggesting
a possible patch.
[ISC-Bugs #34447]
Changes since 4.3.0a1
- Modify the message displayed when a process hits a fatal error.
The new message is much shorter and simply points to the README
and our website for directions on bug submissions.
[ISC-Bugs #24789]
- Handle an absent resolv.conf file better.
[ISC-Bugs #35194]
Changes since 4.2.5
- Address static analysis warnings.
[ISC-Bugs #33510] [ISC-Bugs #33511]
- Silence benign static analysis warnings.
[ISC-Bugs #33428]
- Add check for 64-bit package for atf.
[ISC-Bugs #32206]
- Use newer auto* tool packages and turn on RFC_3542 support on Mac OS.
[ISC-Bugs #26303]
- Remove a variable when it isn't being used due to #ifdefs to avoid
a compiler warning on Solaris using GCC.
[ISC-Bugs #33032]
- Add a check for too much whitespace in a config or lease file.
Thanks to Paolo Pellegrino for finding the issue and a suggestion
for the patch.
[ISC-Bugs #33351]
- Fix several problems with using OMAPI to manipulate class and subclass
objects.
[ISC-Bugs #27452]
- Added a sleep call after killing the old client to allow time
for the sockets to be cleaned. This should allow the -r option
to work more consistently.
[ISC-Bugs #18175]
- Missing files for ISC DHCP Developer's Guide are now included in
the release tarballs. To generate this documentation, please use
make devel command in doc directory. [ISC-Bugs #32767]
- Update client script for use with openwrt.
[ISC-Bugs #29843]
- Fix the socket handling for DHCPv6 clients to allow multiple instances
of a client on a single machine to work properly. Previously only
one client would receive the packets. Thanks to Jiri Popelka at Red Hat
for the bug report and a potential patch.
[ISC-Bugs #34784]
- Added support for gentle shutdown after signal is received.
[ISC-Bugs #32692] [ISC-Bugs 34945]
- Enhance the DHCPv6 server logging to include the addresses that are assigned
to the clients.
[ISC-Bugs #26377]
- Fix an operation in the DDNS code to be a bitwise instead of logical or.
[ISC-Bugs #35138]
diffstat:
external/bsd/dhcp/dist/LICENSE | 5 +-
external/bsd/dhcp/dist/Makefile.am | 5 +-
external/bsd/dhcp/dist/Makefile.in | 584 +-
external/bsd/dhcp/dist/README | 44 +-
external/bsd/dhcp/dist/RELNOTES | 387 +-
external/bsd/dhcp/dist/aclocal.m4 | 904 +-
external/bsd/dhcp/dist/client/Makefile.am | 4 +-
external/bsd/dhcp/dist/client/Makefile.in | 563 +-
external/bsd/dhcp/dist/client/clparse.c | 80 +-
external/bsd/dhcp/dist/client/dhclient-script.8 | 16 +-
external/bsd/dhcp/dist/client/dhclient.conf.5 | 16 +-
external/bsd/dhcp/dist/client/dhclient.leases.5 | 12 +-
external/bsd/dhcp/dist/client/scripts/bsdos | 2 +-
external/bsd/dhcp/dist/client/scripts/freebsd | 4 +-
external/bsd/dhcp/dist/client/scripts/macos | 4 +-
external/bsd/dhcp/dist/client/scripts/netbsd | 2 +-
external/bsd/dhcp/dist/client/scripts/openbsd | 2 +-
external/bsd/dhcp/dist/client/scripts/openwrt | 54 +-
external/bsd/dhcp/dist/common/Makefile.in | 552 +-
external/bsd/dhcp/dist/common/comapi.c | 13 +-
external/bsd/dhcp/dist/common/ctrace.c | 11 +-
external/bsd/dhcp/dist/common/dhcp-eval.5 | 14 +-
external/bsd/dhcp/dist/common/dhcp-options.5 | 364 +-
external/bsd/dhcp/dist/common/dlpi.c | 9 +-
external/bsd/dhcp/dist/common/ethernet.c | 13 +-
external/bsd/dhcp/dist/common/execute.c | 223 +-
external/bsd/dhcp/dist/common/fddi.c | 13 +-
external/bsd/dhcp/dist/common/inet.c | 14 +-
external/bsd/dhcp/dist/common/lpf.c | 14 +-
external/bsd/dhcp/dist/common/memory.c | 13 +-
external/bsd/dhcp/dist/common/nit.c | 13 +-
external/bsd/dhcp/dist/common/options.c | 17 +-
external/bsd/dhcp/dist/common/packet.c | 5 +-
external/bsd/dhcp/dist/common/parse.c | 668 +-
external/bsd/dhcp/dist/common/print.c | 17 +-
external/bsd/dhcp/dist/common/raw.c | 13 +-
external/bsd/dhcp/dist/common/resolv.c | 19 +-
external/bsd/dhcp/dist/common/socket.c | 130 +-
external/bsd/dhcp/dist/common/tables.c | 122 +-
external/bsd/dhcp/dist/common/tests/Makefile.am | 12 +-
external/bsd/dhcp/dist/common/tests/Makefile.in | 493 +-
external/bsd/dhcp/dist/common/tests/dns_unittest.c | 176 +
external/bsd/dhcp/dist/common/tests/test_alloc.c | 3 +-
external/bsd/dhcp/dist/common/tr.c | 5 +-
external/bsd/dhcp/dist/common/tree.c | 738 +-
external/bsd/dhcp/dist/common/upf.c | 13 +-
external/bsd/dhcp/dist/compile | 347 +
external/bsd/dhcp/dist/config.guess | 1558 ++
external/bsd/dhcp/dist/config.sub | 1788 ++
external/bsd/dhcp/dist/configure | 9784 +++++--------
external/bsd/dhcp/dist/configure.ac | 137 +-
external/bsd/dhcp/dist/contrib/dhcp-lease-list.pl | 199 +
external/bsd/dhcp/dist/depcomp | 635 +-
external/bsd/dhcp/dist/dhcpctl/Makefile.am | 6 +-
external/bsd/dhcp/dist/dhcpctl/Makefile.in | 575 +-
external/bsd/dhcp/dist/dhcpctl/callback.c | 13 +-
external/bsd/dhcp/dist/dhcpctl/cltest.c | 7 +-
external/bsd/dhcp/dist/dhcpctl/dhcpctl.3 | 20 +-
external/bsd/dhcp/dist/dhcpctl/dhcpctl.c | 17 +-
external/bsd/dhcp/dist/dhcpctl/dhcpctl.h | 13 +-
external/bsd/dhcp/dist/dhcpctl/omshell.1 | 27 +-
external/bsd/dhcp/dist/dhcpctl/omshell.c | 33 +-
external/bsd/dhcp/dist/dhcpctl/remote.c | 13 +-
external/bsd/dhcp/dist/doc/References.xml | 2 +-
external/bsd/dhcp/dist/doc/devel/arch.dox | 11 +
external/bsd/dhcp/dist/doc/devel/atf.dox | 200 +
external/bsd/dhcp/dist/doc/devel/contrib.dox | 12 +
external/bsd/dhcp/dist/doc/devel/debug.dox | 33 +
external/bsd/dhcp/dist/doc/devel/isc-logo.jpg | Bin
external/bsd/dhcp/dist/doc/devel/mainpage.dox | 41 +
external/bsd/dhcp/dist/doc/devel/omapi.dox | 15 +
external/bsd/dhcp/dist/doc/devel/qa.dox | 93 +
external/bsd/dhcp/dist/doc/ja_JP.eucJP/dhclient-script.8 | 4 +-
external/bsd/dhcp/dist/doc/ja_JP.eucJP/dhclient.8 | 4 +-
external/bsd/dhcp/dist/doc/ja_JP.eucJP/dhclient.conf.5 | 4 +-
external/bsd/dhcp/dist/doc/ja_JP.eucJP/dhclient.leases.5 | 4 +-
external/bsd/dhcp/dist/doc/ja_JP.eucJP/dhcp-eval.5 | 4 +-
external/bsd/dhcp/dist/doc/ja_JP.eucJP/dhcp-options.5 | 7 +-
external/bsd/dhcp/dist/dst/Makefile.in | 348 +-
external/bsd/dhcp/dist/dst/dst_internal.h | 3 +-
external/bsd/dhcp/dist/dst/dst_support.c | 8 +-
external/bsd/dhcp/dist/dst/hmac_link.c | 8 +-
external/bsd/dhcp/dist/dst/md5.h | 3 +-
external/bsd/dhcp/dist/dst/md5_dgst.c | 5 +-
external/bsd/dhcp/dist/dst/md5_locl.h | 3 +-
external/bsd/dhcp/dist/dst/prandom.c | 15 +-
external/bsd/dhcp/dist/includes/Makefile.in | 317 +-
external/bsd/dhcp/dist/includes/arpa/nameser.h | 11 +-
external/bsd/dhcp/dist/includes/arpa/nameser_compat.h | 9 +-
external/bsd/dhcp/dist/includes/cdefs.h | 9 +-
external/bsd/dhcp/dist/includes/config.h.in | 68 +-
external/bsd/dhcp/dist/includes/ctrace.h | 9 +-
external/bsd/dhcp/dist/includes/dhcp.h | 9 +-
external/bsd/dhcp/dist/includes/dhcp6.h | 7 +-
external/bsd/dhcp/dist/includes/dhctoken.h | 22 +-
external/bsd/dhcp/dist/includes/failover.h | 11 +-
external/bsd/dhcp/dist/includes/heap.h | 3 +-
external/bsd/dhcp/dist/includes/inet.h | 11 +-
external/bsd/dhcp/dist/includes/isc-dhcp/dst.h | 3 +-
external/bsd/dhcp/dist/includes/minires.h | 3 +-
external/bsd/dhcp/dist/includes/netinet/if_ether.h | 9 +-
external/bsd/dhcp/dist/includes/netinet/ip.h | 9 +-
external/bsd/dhcp/dist/includes/netinet/ip_icmp.h | 9 +-
external/bsd/dhcp/dist/includes/netinet/udp.h | 9 +-
external/bsd/dhcp/dist/includes/omapip/alloc.h | 11 +-
external/bsd/dhcp/dist/includes/omapip/buffer.h | 11 +-
external/bsd/dhcp/dist/includes/omapip/convert.h | 11 +-
external/bsd/dhcp/dist/includes/omapip/hash.h | 11 +-
external/bsd/dhcp/dist/includes/omapip/isclib.h | 16 +-
external/bsd/dhcp/dist/includes/omapip/omapip.h | 16 +-
external/bsd/dhcp/dist/includes/omapip/omapip_p.h | 11 +-
external/bsd/dhcp/dist/includes/omapip/result.h | 3 +-
external/bsd/dhcp/dist/includes/omapip/trace.h | 9 +-
external/bsd/dhcp/dist/includes/osdep.h | 17 +-
external/bsd/dhcp/dist/includes/site.h | 48 +-
external/bsd/dhcp/dist/includes/statement.h | 11 +-
external/bsd/dhcp/dist/includes/t_api.h | 5 +-
external/bsd/dhcp/dist/includes/tree.h | 21 +-
external/bsd/dhcp/dist/install-sh | 532 +-
external/bsd/dhcp/dist/missing | 437 +-
external/bsd/dhcp/dist/omapip/Makefile.am | 3 +-
external/bsd/dhcp/dist/omapip/Makefile.in | 445 +-
external/bsd/dhcp/dist/omapip/alloc.c | 13 +-
external/bsd/dhcp/dist/omapip/array.c | 13 +-
external/bsd/dhcp/dist/omapip/auth.c | 14 +-
external/bsd/dhcp/dist/omapip/buffer.c | 32 +-
external/bsd/dhcp/dist/omapip/connection.c | 15 +-
external/bsd/dhcp/dist/omapip/convert.c | 13 +-
external/bsd/dhcp/dist/omapip/errwarn.c | 30 +-
external/bsd/dhcp/dist/omapip/generic.c | 13 +-
external/bsd/dhcp/dist/omapip/handle.c | 13 +-
external/bsd/dhcp/dist/omapip/hash.c | 13 +-
external/bsd/dhcp/dist/omapip/inet_addr.c | 12 +-
external/bsd/dhcp/dist/omapip/isclib.c | 249 +-
external/bsd/dhcp/dist/omapip/iscprint.c | 6 +-
external/bsd/dhcp/dist/omapip/listener.c | 13 +-
external/bsd/dhcp/dist/omapip/message.c | 13 +-
external/bsd/dhcp/dist/omapip/omapi.3 | 10 +-
external/bsd/dhcp/dist/omapip/protocol.c | 13 +-
external/bsd/dhcp/dist/omapip/result.c | 5 +-
external/bsd/dhcp/dist/omapip/support.c | 14 +-
external/bsd/dhcp/dist/omapip/test.c | 16 +-
external/bsd/dhcp/dist/omapip/toisc.c | 13 +-
external/bsd/dhcp/dist/omapip/trace.c | 11 +-
external/bsd/dhcp/dist/relay/Makefile.am | 3 +-
external/bsd/dhcp/dist/relay/Makefile.in | 450 +-
external/bsd/dhcp/dist/relay/dhcrelay.8 | 15 +-
external/bsd/dhcp/dist/server/Makefile.am | 4 +-
external/bsd/dhcp/dist/server/Makefile.in | 990 +-
external/bsd/dhcp/dist/server/bootp.c | 44 +-
external/bsd/dhcp/dist/server/class.c | 19 +-
external/bsd/dhcp/dist/server/confpars.c | 1241 +-
external/bsd/dhcp/dist/server/db.c | 63 +-
external/bsd/dhcp/dist/server/dhcp.c | 603 +-
external/bsd/dhcp/dist/server/dhcpd.8 | 8 +-
external/bsd/dhcp/dist/server/dhcpd.conf.5 | 366 +-
external/bsd/dhcp/dist/server/dhcpd.leases.5 | 25 +-
external/bsd/dhcp/dist/server/failover.c | 27 +-
external/bsd/dhcp/dist/server/ldap.c | 13 +-
external/bsd/dhcp/dist/server/ldap_casa.c | 5 +-
external/bsd/dhcp/dist/server/mdb.c | 301 +-
external/bsd/dhcp/dist/server/omapi.c | 540 +-
external/bsd/dhcp/dist/server/salloc.c | 13 +-
external/bsd/dhcp/dist/server/stables.c | 19 +-
external/bsd/dhcp/dist/server/tests/Makefile.am | 5 +-
external/bsd/dhcp/dist/server/tests/Makefile.in | 1160 +-
external/bsd/dhcp/dist/server/tests/hash_unittest.c | 5 +-
external/bsd/dhcp/dist/server/tests/load_bal_unittest.c | 3 +-
external/bsd/dhcp/dist/server/tests/mdb6_unittest.c | 36 +-
external/bsd/dhcp/dist/server/tests/simple_unittest.c | 3 +-
external/bsd/dhcp/dist/test-driver | 127 +
external/bsd/dhcp/dist/tests/DHCPv6/README | 2 +-
external/bsd/dhcp/dist/tests/Makefile.in | 294 +-
external/bsd/dhcp/dist/tests/t_api.c | 19 +-
external/bsd/dhcp/dist/tests/t_api_dhcp.c | 3 +-
external/bsd/dhcp/dist/tests/unit_test_sample.c | 3 +-
176 files changed, 18778 insertions(+), 12705 deletions(-)
diffs (truncated from 45099 to 300 lines):
diff -r e3aae78f4d1f -r caa54146b2c6 external/bsd/dhcp/dist/LICENSE
--- a/external/bsd/dhcp/dist/LICENSE Sat Jul 12 09:58:39 2014 +0000
+++ b/external/bsd/dhcp/dist/LICENSE Sat Jul 12 11:57:24 2014 +0000
@@ -1,4 +1,4 @@
-# Copyright (c) 2004-2013 by Internet Systems Consortium, Inc. ("ISC")
+# Copyright (c) 2004-2014 by Internet Systems Consortium, Inc. ("ISC")
# Copyright (c) 1995-2003 by Internet Software Consortium
#
# Permission to use, copy, modify, and distribute this software for any
@@ -18,3 +18,6 @@
# Redwood City, CA 94063
# <info%isc.org@localhost>
# https://www.isc.org/
+
+See the specific source files for any additional copyright or
+license statements.
diff -r e3aae78f4d1f -r caa54146b2c6 external/bsd/dhcp/dist/Makefile.am
--- a/external/bsd/dhcp/dist/Makefile.am Sat Jul 12 09:58:39 2014 +0000
+++ b/external/bsd/dhcp/dist/Makefile.am Sat Jul 12 11:57:24 2014 +0000
@@ -12,13 +12,16 @@
contrib/ms2isc/Registry.pm contrib/ms2isc/ms2isc.pl \
contrib/ms2isc/readme.txt contrib/ldap/dhcpd-conf-to-ldap \
contrib/ldap/dhcp.schema contrib/ldap/README.ldap \
+ contrib/dhcp-lease-list.pl \
doc/IANA-arp-parameters doc/Makefile doc/References.html \
doc/References.txt doc/References.xml doc/api+protocol \
doc/ja_JP.eucJP/dhclient-script.8 doc/ja_JP.eucJP/dhclient.8 \
doc/ja_JP.eucJP/dhclient.conf.5 doc/ja_JP.eucJP/dhclient.leases.5 \
doc/ja_JP.eucJP/dhcp-eval.5 doc/ja_JP.eucJP/dhcp-options.5 \
doc/examples/dhclient-dhcpv6.conf doc/examples/dhcpd-dhcpv6.conf \
- util/bindvar.sh \
+ doc/devel/arch.dox doc/devel/atf.dox doc/devel/contrib.dox \
+ doc/devel/debug.dox doc/devel/isc-logo.jpg doc/devel/mainpage.dox \
+ doc/devel/omapi.dox doc/devel/qa.dox util/bindvar.sh \
bind/Makefile bind/bind.tar.gz bind/version.tmp \
common/tests/Atffile server/tests/Atffile
diff -r e3aae78f4d1f -r caa54146b2c6 external/bsd/dhcp/dist/Makefile.in
--- a/external/bsd/dhcp/dist/Makefile.in Sat Jul 12 09:58:39 2014 +0000
+++ b/external/bsd/dhcp/dist/Makefile.in Sat Jul 12 11:57:24 2014 +0000
@@ -1,8 +1,8 @@
-# Makefile.in generated by automake 1.10.1 from Makefile.am.
+# Makefile.in generated by automake 1.14 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -15,9 +15,55 @@
@SET_MAKE@
VPATH = @srcdir@
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
+ case $$MAKEFLAGS in \
+ *\\[\ \ ]*) \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
@@ -30,11 +76,14 @@
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
subdir = .
-DIST_COMMON = README $(am__configure_deps) $(nobase_include_HEADERS) \
- $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
- $(top_srcdir)/configure $(top_srcdir)/doc/devel/doxyfile.in \
- depcomp install-sh missing
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
+ $(top_srcdir)/configure $(am__configure_deps) \
+ $(top_srcdir)/doc/devel/doxyfile.in $(nobase_include_HEADERS) \
+ README compile config.guess config.sub depcomp install-sh \
+ missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@@ -44,42 +93,137 @@
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/includes/config.h
CONFIG_CLEAN_FILES = doc/devel/doxyfile
+CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
SOURCES =
DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-dvi-recursive install-exec-recursive \
- install-html-recursive install-info-recursive \
- install-pdf-recursive install-ps-recursive install-recursive \
- installcheck-recursive installdirs-recursive pdf-recursive \
- ps-recursive uninstall-recursive
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+ ctags-recursive dvi-recursive html-recursive info-recursive \
+ install-data-recursive install-dvi-recursive \
+ install-exec-recursive install-html-recursive \
+ install-info-recursive install-pdf-recursive \
+ install-ps-recursive install-recursive installcheck-recursive \
+ installdirs-recursive pdf-recursive ps-recursive \
+ tags-recursive uninstall-recursive
+am__can_run_installinfo = \
+ case $$AM_UPDATE_INFO_DIR in \
+ n|no|NO) false;; \
+ *) (install-info --version) >/dev/null 2>&1;; \
+ esac
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+ for p in $$list; do echo "$$p $$p"; done | \
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+ if (++n[$$2] == $(am__install_max)) \
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+ END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__uninstall_files_from_dir = { \
+ test -z "$$files" \
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+ $(am__cd) "$$dir" && rm -f $$files; }; \
+ }
am__installdirs = "$(DESTDIR)$(includedir)"
-nobase_includeHEADERS_INSTALL = $(install_sh_DATA)
HEADERS = $(nobase_include_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
+am__recursive_targets = \
+ $(RECURSIVE_TARGETS) \
+ $(RECURSIVE_CLEAN_TARGETS) \
+ $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+ cscope distdir dist dist-all distcheck
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
+CSCOPE = cscope
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
- { test ! -d $(distdir) \
- || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
- && rm -fr $(distdir); }; }
+ if test -d "$(distdir)"; then \
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
+ && rm -rf "$(distdir)" \
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
+ else :; fi
+am__post_remove_distdir = $(am__remove_distdir)
+am__relativize = \
+ dir0=`pwd`; \
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
+ sed_rest='s,^[^/]*/*,,'; \
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
+ sed_butlast='s,/*[^/]*$$,,'; \
+ while test -n "$$dir1"; do \
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
+ if test "$$first" != "."; then \
+ if test "$$first" = ".."; then \
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
+ else \
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
+ if test "$$first2" = "$$first"; then \
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
+ else \
+ dir2="../$$dir2"; \
+ fi; \
+ dir0="$$dir0"/"$$first"; \
+ fi; \
+ fi; \
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
+ done; \
+ reldir="$$dir2"
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
+DIST_TARGETS = dist-gzip
distuninstallcheck_listfiles = find . -type f -print
+am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
ATF_CFLAGS = @ATF_CFLAGS@
ATF_LDFLAGS = @ATF_LDFLAGS@
AUTOCONF = @AUTOCONF@
@@ -139,7 +283,11 @@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
+build = @build@
build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
builddir = @builddir@
byte_order = @byte_order@
datadir = @datadir@
@@ -147,7 +295,11 @@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
+host = @host@
host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
htmldir = @htmldir@
Home |
Main Index |
Thread Index |
Old Index