diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2004-06-10 16:23:58 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2004-06-10 16:23:58 +0000 |
commit | b1daff3dadbdc35dec38b063c79b1f01ae8c91ef (patch) | |
tree | c4c697c6cd4540489bbdb103d1a4aca2af21cfae /net/stund | |
parent | 1bb52581728330772046ebff2ffb82bf8681cfce (diff) | |
download | ports-b1daff3dadbdc35dec38b063c79b1f01ae8c91ef.tar.gz ports-b1daff3dadbdc35dec38b063c79b1f01ae8c91ef.zip |
Notes
Diffstat (limited to 'net/stund')
-rw-r--r-- | net/stund/Makefile | 4 | ||||
-rw-r--r-- | net/stund/distinfo | 4 | ||||
-rw-r--r-- | net/stund/files/patch-server.cxx | 23 |
3 files changed, 27 insertions, 4 deletions
diff --git a/net/stund/Makefile b/net/stund/Makefile index dc9e774abe4f..0291cb4d501f 100644 --- a/net/stund/Makefile +++ b/net/stund/Makefile @@ -6,11 +6,11 @@ # PORTNAME= stund -PORTVERSION= 0.91 +PORTVERSION= 0.92 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= stun -DISTNAME= ${PORTNAME}_${PORTVERSION}_Feb21 +DISTNAME= ${PORTNAME}_${PORTVERSION}_Jun06 EXTRACT_SUFX= .tgz MAINTAINER= sobomax@FreeBSD.org diff --git a/net/stund/distinfo b/net/stund/distinfo index 08b3db80081f..cc1faa15df58 100644 --- a/net/stund/distinfo +++ b/net/stund/distinfo @@ -1,2 +1,2 @@ -MD5 (stund_0.91_Feb21.tgz) = 0349e688b4dfdef97feb1e150f16d8e0 -SIZE (stund_0.91_Feb21.tgz) = 82402 +MD5 (stund_0.92_Jun06.tgz) = bdf6c54a217d5696c84c783655636833 +SIZE (stund_0.92_Jun06.tgz) = 82725 diff --git a/net/stund/files/patch-server.cxx b/net/stund/files/patch-server.cxx new file mode 100644 index 000000000000..461a769b0831 --- /dev/null +++ b/net/stund/files/patch-server.cxx @@ -0,0 +1,23 @@ + +$FreeBSD$ + +--- server.cxx 2004/06/10 15:25:17 1.1 ++++ server.cxx 2004/06/10 15:26:05 +@@ -172,7 +172,7 @@ + #if defined(WIN32) + int pid=0; + +- if ( background ) ++ if ( !background ) + { + cerr << "The -b background option does not work in windows" << endl; + exit(-1); +@@ -180,7 +180,7 @@ + #else + pid_t pid=0; + +- if ( background ) ++ if ( !background ) + { + pid_t pid = fork(); + |