1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

* Fix compilation under -stable where sys/types.h was not being included

before sys/socket.h.
* Remove a bit of cruft from the port's Makefile.

PR:		17303
Submitted by:	Cliff Rowley <dozprompt@onsea.com>
This commit is contained in:
Chris D. Faulhaber 2000-03-11 02:10:40 +00:00
parent e1de7422e3
commit 8a4485f4cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26736
2 changed files with 10 additions and 1 deletions

View File

@ -12,7 +12,6 @@ MASTER_SITES= http://knapster.netpedia.net/packages/
MAINTAINER= jedgar@FreeBSD.org
#BUILD_DEPENDS= aclocal:${PORTSDIR}/devel/automake
LIB_DEPENDS= kdecore.3:${PORTSDIR}/x11/kdelibs11
RUN_DEPENDS= kdehelp:${PORTSDIR}/x11/kdebase11

View File

@ -0,0 +1,10 @@
--- knapster/socks5.cpp.orig Sat Feb 26 01:36:14 2000
+++ knapster/socks5.cpp Fri Mar 10 21:00:19 2000
@@ -15,6 +15,7 @@
* *
***************************************************************************/
#include <netdb.h>
+#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <unistd.h>