122 lines
5.2 KiB
Diff
122 lines
5.2 KiB
Diff
|
diff -up dhcp-4.2.0/client/Makefile.am.sharedlib dhcp-4.2.0/client/Makefile.am
|
||
|
--- dhcp-4.2.0/client/Makefile.am.sharedlib 2010-10-01 14:22:36.020002772 +0200
|
||
|
+++ dhcp-4.2.0/client/Makefile.am 2010-10-01 14:22:36.030002772 +0200
|
||
|
@@ -6,7 +6,7 @@ dhclient_SOURCES = clparse.c dhclient.c
|
||
|
scripts/solaris scripts/openwrt
|
||
|
dhclient_CPPFLAGS = -DCLIENT_PATH='"$(sbindir)"' -DLOCALSTATEDIR='"$(localstatedir)"'
|
||
|
dhclient_CFLAGS = -fpie
|
||
|
-dhclient_LDADD = ../common/libdhcp.a ../omapip/libomapi.a \
|
||
|
+dhclient_LDADD = ../common/libdhcp.a ../omapip/libomapi.la \
|
||
|
$(BIND9_LIBDIR) -ldns-export -lisc-export $(CAPNG_LDADD)
|
||
|
dhclient_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
|
||
|
|
||
|
diff -up dhcp-4.2.0/configure.ac.sharedlib dhcp-4.2.0/configure.ac
|
||
|
--- dhcp-4.2.0/configure.ac.sharedlib 2010-10-01 14:22:36.020002772 +0200
|
||
|
+++ dhcp-4.2.0/configure.ac 2010-10-01 14:22:36.060002772 +0200
|
||
|
@@ -30,7 +30,8 @@ fi
|
||
|
# Use this to define _GNU_SOURCE to pull in the IPv6 Advanced Socket API.
|
||
|
AC_USE_SYSTEM_EXTENSIONS
|
||
|
|
||
|
-AC_PROG_RANLIB
|
||
|
+# Use libtool to simplify building of shared libraries
|
||
|
+AC_PROG_LIBTOOL
|
||
|
AC_CONFIG_HEADERS([includes/config.h])
|
||
|
|
||
|
# we sometimes need to know byte order for building packets
|
||
|
diff -up dhcp-4.2.0/dhcpctl/Makefile.am.sharedlib dhcp-4.2.0/dhcpctl/Makefile.am
|
||
|
--- dhcp-4.2.0/dhcpctl/Makefile.am.sharedlib 2010-10-01 14:22:36.020002772 +0200
|
||
|
+++ dhcp-4.2.0/dhcpctl/Makefile.am 2010-10-01 14:22:36.030002772 +0200
|
||
|
@@ -1,15 +1,15 @@
|
||
|
bin_PROGRAMS = omshell
|
||
|
-lib_LIBRARIES = libdhcpctl.a
|
||
|
+lib_LTLIBRARIES = libdhcpctl.la
|
||
|
noinst_PROGRAMS = cltest
|
||
|
man_MANS = omshell.1 dhcpctl.3
|
||
|
EXTRA_DIST = $(man_MANS)
|
||
|
|
||
|
omshell_SOURCES = omshell.c
|
||
|
-omshell_LDADD = libdhcpctl.a ../common/libdhcp.a ../omapip/libomapi.a \
|
||
|
+omshell_LDADD = libdhcpctl.la ../common/libdhcp.a ../omapip/libomapi.la \
|
||
|
$(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
|
||
|
-libdhcpctl_a_SOURCES = dhcpctl.c callback.c remote.c
|
||
|
+libdhcpctl_la_SOURCES = dhcpctl.c callback.c remote.c
|
||
|
|
||
|
cltest_SOURCES = cltest.c
|
||
|
-cltest_LDADD = libdhcpctl.a ../common/libdhcp.a ../omapip/libomapi.a \
|
||
|
+cltest_LDADD = libdhcpctl.la ../common/libdhcp.a ../omapip/libomapi.la \
|
||
|
$(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
diff -up dhcp-4.2.0/dst/base64.c.sharedlib dhcp-4.2.0/dst/base64.c
|
||
|
--- dhcp-4.2.0/dst/base64.c.sharedlib 2010-10-01 14:27:18.280002774 +0200
|
||
|
+++ dhcp-4.2.0/dst/base64.c 2010-10-01 14:28:10.650002773 +0200
|
||
|
@@ -64,6 +64,7 @@ static const char rcsid[] = "$Id: base64
|
||
|
|
||
|
#include <sys/socket.h>
|
||
|
|
||
|
+#include "dst_internal.h"
|
||
|
#include "cdefs.h"
|
||
|
#include "osdep.h"
|
||
|
#include "arpa/nameser.h"
|
||
|
diff -up dhcp-4.2.0/dst/Makefile.am.sharedlib dhcp-4.2.0/dst/Makefile.am
|
||
|
--- dhcp-4.2.0/dst/Makefile.am.sharedlib 2007-05-29 18:32:10.000000000 +0200
|
||
|
+++ dhcp-4.2.0/dst/Makefile.am 2010-10-01 14:22:36.030002772 +0200
|
||
|
@@ -1,8 +1,8 @@
|
||
|
AM_CPPFLAGS = -DMINIRES_LIB -DHMAC_MD5
|
||
|
|
||
|
-lib_LIBRARIES = libdst.a
|
||
|
+lib_LTLIBRARIES = libdst.la
|
||
|
|
||
|
-libdst_a_SOURCES = dst_support.c dst_api.c hmac_link.c md5_dgst.c \
|
||
|
+libdst_la_SOURCES = dst_support.c dst_api.c hmac_link.c md5_dgst.c \
|
||
|
base64.c prandom.c
|
||
|
|
||
|
EXTRA_DIST = dst_internal.h md5.h md5_locl.h
|
||
|
diff -up dhcp-4.2.0/omapip/Makefile.am.sharedlib dhcp-4.2.0/omapip/Makefile.am
|
||
|
--- dhcp-4.2.0/omapip/Makefile.am.sharedlib 2010-10-01 14:22:36.020002772 +0200
|
||
|
+++ dhcp-4.2.0/omapip/Makefile.am 2010-10-01 14:22:36.030002772 +0200
|
||
|
@@ -1,9 +1,9 @@
|
||
|
AM_CFLAGS = -fpic
|
||
|
|
||
|
-lib_LIBRARIES = libomapi.a
|
||
|
+lib_LTLIBRARIES = libomapi.la
|
||
|
noinst_PROGRAMS = svtest
|
||
|
|
||
|
-libomapi_a_SOURCES = protocol.c buffer.c alloc.c result.c connection.c \
|
||
|
+libomapi_la_SOURCES = protocol.c buffer.c alloc.c result.c connection.c \
|
||
|
errwarn.c listener.c dispatch.c generic.c support.c \
|
||
|
handle.c message.c convert.c hash.c auth.c inet_addr.c \
|
||
|
array.c trace.c toisc.c iscprint.c isclib.c
|
||
|
@@ -13,5 +13,5 @@ EXTRA_DIST = $(man_MANS)
|
||
|
|
||
|
svtest_SOURCES = test.c
|
||
|
svtest_CFLAGS = -fpie
|
||
|
-svtest_LDADD = libomapi.a $(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
+svtest_LDADD = libomapi.la $(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
|
||
|
diff -up dhcp-4.2.0/relay/Makefile.am.sharedlib dhcp-4.2.0/relay/Makefile.am
|
||
|
--- dhcp-4.2.0/relay/Makefile.am.sharedlib 2010-10-01 14:22:36.020002772 +0200
|
||
|
+++ dhcp-4.2.0/relay/Makefile.am 2010-10-01 14:22:36.030002772 +0200
|
||
|
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DLOCALSTATEDIR='"@localst
|
||
|
sbin_PROGRAMS = dhcrelay
|
||
|
dhcrelay_SOURCES = dhcrelay.c
|
||
|
dhcrelay_CFLAGS = -fpie
|
||
|
-dhcrelay_LDADD = ../common/libdhcp.a ../omapip/libomapi.a \
|
||
|
+dhcrelay_LDADD = ../common/libdhcp.a ../omapip/libomapi.la \
|
||
|
$(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
dhcrelay_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
|
||
|
|
||
|
diff -up dhcp-4.2.0/server/Makefile.am.sharedlib dhcp-4.2.0/server/Makefile.am
|
||
|
--- dhcp-4.2.0/server/Makefile.am.sharedlib 2010-10-01 14:22:36.020002772 +0200
|
||
|
+++ dhcp-4.2.0/server/Makefile.am 2010-10-01 14:22:36.030002772 +0200
|
||
|
@@ -7,8 +7,8 @@ dhcpd_SOURCES = dhcpd.c dhcp.c bootp.c c
|
||
|
dhcpv6.c mdb6.c ldap.c ldap_casa.c
|
||
|
|
||
|
dhcpd_CFLAGS = $(LDAP_CFLAGS) -fpie
|
||
|
-dhcpd_LDADD = ../common/libdhcp.a ../omapip/libomapi.a \
|
||
|
- ../dhcpctl/libdhcpctl.a $(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
+dhcpd_LDADD = ../common/libdhcp.a ../omapip/libomapi.la \
|
||
|
+ ../dhcpctl/libdhcpctl.la $(BIND9_LIBDIR) -ldns-export -lisc-export
|
||
|
dhcpd_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
|
||
|
|
||
|
man_MANS = dhcpd.8 dhcpd.conf.5 dhcpd.leases.5
|