diff options
author | Stefan Eßer <se@FreeBSD.org> | 2003-12-09 00:10:26 +0000 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2003-12-09 00:10:26 +0000 |
commit | 93e0c7ef60b32d5fb0f57a8f72624f418e2916c7 (patch) | |
tree | da54f066fc889d3faed84e0ec478ca5e080e545f /net-mgmt | |
parent | fe5c5b99397d71640f7fb4c6d74622405b64d08c (diff) | |
download | ports-93e0c7ef60b32d5fb0f57a8f72624f418e2916c7.tar.gz ports-93e0c7ef60b32d5fb0f57a8f72624f418e2916c7.zip |
Notes
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/scotty3/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/scotty3/files/patch-af | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/net-mgmt/scotty3/Makefile b/net-mgmt/scotty3/Makefile index f4490397fa7c..c778429d107b 100644 --- a/net-mgmt/scotty3/Makefile +++ b/net-mgmt/scotty3/Makefile @@ -7,7 +7,7 @@ PORTNAME= scotty PORTVERSION= 20000221 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net tcl84 tk84 MASTER_SITES= ftp://ftp.ibr.cs.tu-bs.de/pub/local/tkined/devel/ DISTNAME= ${PORTNAME}-00-02-21 diff --git a/net-mgmt/scotty3/files/patch-af b/net-mgmt/scotty3/files/patch-af new file mode 100644 index 000000000000..19ba69fd4144 --- /dev/null +++ b/net-mgmt/scotty3/files/patch-af @@ -0,0 +1,20 @@ +--- ../tnm/generic/tnmInt.h.orig Tue Sep 21 14:17:18 1999 ++++ ../tnm/generic/tnmInt.h Tue Dec 9 00:06:26 2003 +@@ -54,11 +54,16 @@ + */ + + #define TnmGetTime TclpGetTime ++#if TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION == 4 ++#define TnmCreateDirectory(p) mkdir (p, 0777) ++#define TnmStat stat ++#else + #define TnmCreateDirectory TclpCreateDirectory +-#if TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION == 8 && TCL_RELEASE_SERIAL > 2 ++#if TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION == 3 && TCL_RELEASE_SERIAL > 2 + #define TnmStat TclStat + #else + #define TnmStat stat ++#endif + #endif + + EXTERN void |