diff options
author | steve <steve@FreeBSD.org> | 1999-09-20 09:49:28 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-09-20 09:49:28 +0800 |
commit | a7b0ce5a68e0327b27cd5a7a725cf41fd60a0a05 (patch) | |
tree | eeac569022461c7e6c9552dd795fc0e10096ce4e /net | |
parent | 662c24f3e8818770e5a860cb6090b288be9a4ccf (diff) | |
download | freebsd-ports-graphics-a7b0ce5a68e0327b27cd5a7a725cf41fd60a0a05.tar.gz freebsd-ports-graphics-a7b0ce5a68e0327b27cd5a7a725cf41fd60a0a05.tar.zst freebsd-ports-graphics-a7b0ce5a68e0327b27cd5a7a725cf41fd60a0a05.zip |
Judiciously s/int/ssize_t/ so this build on FreeBSD/Alpha.
Diffstat (limited to 'net')
-rw-r--r-- | net/irrtoolset/files/patch-aa | 18 | ||||
-rw-r--r-- | net/ratoolset/files/patch-aa | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/net/irrtoolset/files/patch-aa b/net/irrtoolset/files/patch-aa new file mode 100644 index 00000000000..0b92b789782 --- /dev/null +++ b/net/irrtoolset/files/patch-aa @@ -0,0 +1,18 @@ +--- src/misc/net.hh.orig Sun Sep 19 16:59:27 1999 ++++ src/misc/net.hh Sun Sep 19 17:00:00 1999 +@@ -86,12 +86,12 @@ + int bind (...); + int listen (...); + int accept (...); +-int recvfrom(...); ++ssize_t recvfrom(...); + int gethostname (...); + int setsockopt (...); + int select (...); +-int sendto (...); +-int send (...); ++ssize_t sendto (...); ++ssize_t send (...); + int gettimeofday (...); + } + diff --git a/net/ratoolset/files/patch-aa b/net/ratoolset/files/patch-aa new file mode 100644 index 00000000000..0b92b789782 --- /dev/null +++ b/net/ratoolset/files/patch-aa @@ -0,0 +1,18 @@ +--- src/misc/net.hh.orig Sun Sep 19 16:59:27 1999 ++++ src/misc/net.hh Sun Sep 19 17:00:00 1999 +@@ -86,12 +86,12 @@ + int bind (...); + int listen (...); + int accept (...); +-int recvfrom(...); ++ssize_t recvfrom(...); + int gethostname (...); + int setsockopt (...); + int select (...); +-int sendto (...); +-int send (...); ++ssize_t sendto (...); ++ssize_t send (...); + int gettimeofday (...); + } + |