summaryrefslogtreecommitdiffstats
path: root/isys/Makefile
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-07-13 16:10:34 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-07-13 16:10:34 +0000
commit77e953388a77e71f9586282b51752d761515085f (patch)
tree39c312a6a9de29bbb584b5e9164493864cdca4ff /isys/Makefile
parentafc61c4cd8e42eee9a8c897afc59d2a220871cbd (diff)
downloadanaconda-77e953388a77e71f9586282b51752d761515085f.tar.gz
anaconda-77e953388a77e71f9586282b51752d761515085f.tar.xz
anaconda-77e953388a77e71f9586282b51752d761515085f.zip
* isys/isys.c: Added back the doConfigNetDevice() and
doPumpNetDevice() functions, but rewritten to use libdhcp instead of pump. Since the UI has not changed for IPv6, these two functions don't really do IPv6 stuff yet. * isys/Makefile: Link and compile with libdhcp. NOTE: This requires libdhcp-1.9 (which I haven't released yet) because I moved the IP_STRLEN macro to ip_addr.h instead of having it in anaconda.
Diffstat (limited to 'isys/Makefile')
-rw-r--r--isys/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/isys/Makefile b/isys/Makefile
index ed3be03af..a68f716d9 100644
--- a/isys/Makefile
+++ b/isys/Makefile
@@ -17,6 +17,10 @@ SUBDIRS = gzlib
LOADLIBES += $(shell pkg-config --libs glib-2.0)
CFLAGS += $(shell pkg-config --cflags glib-2.0)
+# libdhcp
+LOADLIBES += $(shell pkg-config --libs libdhcp)
+CFLAGS += $(shell pkg-config --cflags libdhcp)
+
GENERATED = nfs_mountversion.h
ifeq ($(ARCH),sparc)