d66b1112ff
I have created a patch that can be applied to provide IPv6 support for sysutils/socket utility. The patch imported from NetBSD and cleaned up to be cleanly work on FreeBSD. PR: ports/36202 Submitted by: Janos Mohacsi <janos.mohacsi@dante.org.uk> Approved by: maintainer timeout
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
*** Makefile.orig Fri Mar 22 11:42:23 2002
|
|
--- Makefile Fri Mar 22 11:56:04 2002
|
|
***************
|
|
*** 8,14 ****
|
|
### socket.1 in /usr/local/man/man1/socket.1
|
|
### Make sure the target directories exist before doing a "make install".
|
|
|
|
! INSTALLBASE = /usr/local
|
|
INSTALLBINPATH = $(INSTALLBASE)/bin
|
|
INSTALLBINMODE = 755
|
|
INSTALLMANPATH = $(INSTALLBASE)/man
|
|
--- 8,14 ----
|
|
### socket.1 in /usr/local/man/man1/socket.1
|
|
### Make sure the target directories exist before doing a "make install".
|
|
|
|
! INSTALLBASE = ${PREFIX}
|
|
INSTALLBINPATH = $(INSTALLBASE)/bin
|
|
INSTALLBINMODE = 755
|
|
INSTALLMANPATH = $(INSTALLBASE)/man
|
|
***************
|
|
*** 43,50 ****
|
|
### CDC 4680 EP/IX: (I know it *has* setsid(2), but not with bsd43)
|
|
# SWITCHES = -systype bsd43 -DNOSETSID
|
|
|
|
! # FreeBSD 2.x (4.4BSD)
|
|
! SWITCHES=-DHAVE_SYS_PARAM_H -Wall
|
|
|
|
### It should not be necessary to change anything below this line.
|
|
##################################################################
|
|
--- 43,49 ----
|
|
### CDC 4680 EP/IX: (I know it *has* setsid(2), but not with bsd43)
|
|
# SWITCHES = -systype bsd43 -DNOSETSID
|
|
|
|
!
|
|
|
|
### It should not be necessary to change anything below this line.
|
|
##################################################################
|