diff options
author | alane <alane@FreeBSD.org> | 2002-10-12 13:47:57 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-10-12 13:47:57 +0800 |
commit | b51b253c1eb5352819047cf54e01fbd7500f988c (patch) | |
tree | 057aa4a4e9e9e43ca262c9f782aef282cf0c8f71 /x11/kdebase3 | |
parent | 53c421bcf69eada32524e2f4dfd289efac23e45a (diff) | |
download | freebsd-ports-gnome-b51b253c1eb5352819047cf54e01fbd7500f988c.tar.gz freebsd-ports-gnome-b51b253c1eb5352819047cf54e01fbd7500f988c.tar.zst freebsd-ports-gnome-b51b253c1eb5352819047cf54e01fbd7500f988c.zip |
Move <sys/types.h> higher up in the include list to fix build on current.
Submitted by: Alfred Perlstein (via kde list)
Diffstat (limited to 'x11/kdebase3')
-rw-r--r-- | x11/kdebase3/files/patch-ksysguard-ksysguardd-FBSD-netdev.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/x11/kdebase3/files/patch-ksysguard-ksysguardd-FBSD-netdev.c b/x11/kdebase3/files/patch-ksysguard-ksysguardd-FBSD-netdev.c new file mode 100644 index 000000000000..33eaede03c2d --- /dev/null +++ b/x11/kdebase3/files/patch-ksysguard-ksysguardd-FBSD-netdev.c @@ -0,0 +1,18 @@ +--- ksysguard/ksysguardd/FreeBSD/netdev.c.orig Fri Oct 11 18:06:41 2002 ++++ ksysguard/ksysguardd/FreeBSD/netdev.c Fri Oct 11 18:06:58 2002 +@@ -20,6 +20,7 @@ + */ + + #include <fcntl.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <net/if.h> + #include <net/if_mib.h> +@@ -27,7 +28,6 @@ + #include <string.h> + #include <sys/sysctl.h> + #include <sys/time.h> +-#include <sys/types.h> + #include <unistd.h> + + |