diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2008-10-13 11:10:11 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2008-10-13 11:10:11 +0000 |
commit | ab35a768ad6e4e9b5227ceb4a517657ba7fefcc5 (patch) | |
tree | 9741c230a5c7c1f7f6a37895edc8a6c65e8c14a9 /net/isc-dhcp3-server/files/patch-configure | |
parent | . add linux_base-fc6, linux_base-f7, linux_base-f8 to CONFLICTS; (diff) |
Move isc-dhcp3-(server|client|relay) to isc-dhcp30-(server|client|relay)
to make space for the isc-dhcp31 and isc-dhcp40 servers of it.
Notes
Notes:
svn path=/head/; revision=221530
Diffstat (limited to 'net/isc-dhcp3-server/files/patch-configure')
-rw-r--r-- | net/isc-dhcp3-server/files/patch-configure | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/net/isc-dhcp3-server/files/patch-configure b/net/isc-dhcp3-server/files/patch-configure deleted file mode 100644 index 5aff6909acce..000000000000 --- a/net/isc-dhcp3-server/files/patch-configure +++ /dev/null @@ -1,41 +0,0 @@ ---- configure.orig Sat Apr 20 23:44:13 2002 -+++ configure Mon Apr 28 23:02:10 2003 -@@ -13,6 +13,9 @@ - elif [ x$1 = x--dirs ]; then - dirs=$2 - shift -+ elif [ x$1 = x--subsys ]; then -+ subsys=$2 -+ shift - elif [ x$1 = x--no-links ]; then - nolinks=YES - elif [ x$1 = x--copts ]; then -@@ -233,7 +236,14 @@ - fi - - if [ x"$dirs" = x ]; then -- dirs=". client server relay common omapip dhcpctl minires dst" -+ dirs=". common minires dst omapip dhcpctl" -+ if [ x$subsys = x ]; then -+ dirs="$dirs server omshell client relay" -+ elif [ x$subsys = xserver ]; then -+ dirs="$dirs server omshell" -+ elif [ x$subsys = xclient -o x$subsys = xrelay ]; then -+ dirs="$dirs $subsys" -+ fi - fi - - for foo in $dirs; do -@@ -253,7 +263,11 @@ - - # Make the link tree in which to actually build. - if [ x$nolinks = x ]; then -- make links -+ if [ x$subsys = x ]; then -+ make links -+ else -+ make links.$subsys -+ fi - fi - - exit 0 |