summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2016-10-08 13:19:45 +0200
committerFrancis Dupont <fdupont@isc.org>2016-10-08 13:19:45 +0200
commit007ba82ad2d5fcf70a2a2703646440d026eb3c6a (patch)
tree6b4edcd68ff01dc4947b9c32284c9ec5b64c7a65
parent6d91a86b23bd004c11e5ab742dbd5153db25dab5 (diff)
downloadisc-dhcp-007ba82ad2d5fcf70a2a2703646440d026eb3c6a.tar.gz
Updated docs
-rw-r--r--README22
-rw-r--r--RELNOTES6
2 files changed, 28 insertions, 0 deletions
diff --git a/README b/README
index 75846327..155cd900 100644
--- a/README
+++ b/README
@@ -163,6 +163,28 @@ You can get a list of these by typing:
./configure --help
+If you want to use dynamic shared libraries automake, autoconf
+(aka GNU autotools) and libtool must be available. The DHCP
+distribution provides 3 configure.ac* files: the -lt version
+has no libtool support and was copied to the configure.ac
+standard file in the distribution. To enable libtool support
+you should perform these steps:
+
+ cp configure.ac+lt configure.ac
+ autoreconf -i
+
+after you can use the regenerated configure as usual
+(with libtool support (--enable-libtool) on by default):
+
+ ./configure
+
+For compatibility (and people who don't read this documentation)
+the --enable-libtool configuration file is supported even by
+the distributed configure (and off by default). The previous
+steps are performed and the regenerated configure called with
+almost the same parameters (this "almost" makes the use of
+this feature not recommended).
+
DYNAMIC DNS UPDATES
A fully-featured implementation of dynamic DNS updates is included in
diff --git a/RELNOTES b/RELNOTES
index c387dfdd..1e3b124e 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -134,6 +134,12 @@ by Eric Young (eay@cryptsoft.com).
arguments.
[ISC-Bugs #39318]
+- Added support of dynamic shared libraries with libtool. A new
+ --enable-libtool configuration parameter is available but
+ should not be used directly: *please* read the build configuration
+ section in the README file for the recommended procedure.
+ [ISC-Bugs #29402]
+
Changes since 4.3.0 (bug fixes)
- Tidy up several small tickets.