aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsilby <silby@FreeBSD.org>2002-10-26 09:01:48 +0800
committersilby <silby@FreeBSD.org>2002-10-26 09:01:48 +0800
commit1e51a789f268ee342f2068858642a16a8900760d (patch)
tree3891da8cf16726bb1c43754c46290330f0b4a5e5
parent76bd4ea669e2247ef4e6fe1ad416ade808edcc6a (diff)
downloadfreebsd-ports-gnome-1e51a789f268ee342f2068858642a16a8900760d.tar.gz
freebsd-ports-gnome-1e51a789f268ee342f2068858642a16a8900760d.tar.zst
freebsd-ports-gnome-1e51a789f268ee342f2068858642a16a8900760d.zip
Remove use of IPPORT_USERRESERVED, fix build on 5.0.
-rw-r--r--www/harvest/files/patch-ad11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/harvest/files/patch-ad b/www/harvest/files/patch-ad
new file mode 100644
index 000000000000..c3b35674caee
--- /dev/null
+++ b/www/harvest/files/patch-ad
@@ -0,0 +1,11 @@
+--- src/broker/Glimpse/index.c.old Fri Oct 25 19:52:18 2002
++++ src/broker/Glimpse/index.c Fri Oct 25 19:52:34 2002
+@@ -192,7 +192,7 @@
+ GL_GlimpseSrvPort = -1;
+ return;
+ }
+- if (GL_GlimpseSrvPort <= IPPORT_USERRESERVED) {
++ if (GL_GlimpseSrvPort <= 5000) {
+ /* choose a random port number between 16384-30000 */
+ #if defined(HAVE_SRAND48) && defined(HAVE_LRAND48)
+ srand48(time(NULL));