diff options
author | fjoe <fjoe@FreeBSD.org> | 2005-02-20 19:54:25 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2005-02-20 19:54:25 +0800 |
commit | e24943f24dbf285b5e219240848730ff33c532dd (patch) | |
tree | a1269797a69103ce19648c10c7bd3d973813b7f0 /devel/cvsnt | |
parent | f2c08b6d95523d25516a7dbc33d2290e8935a09a (diff) | |
download | freebsd-ports-gnome-e24943f24dbf285b5e219240848730ff33c532dd.tar.gz freebsd-ports-gnome-e24943f24dbf285b5e219240848730ff33c532dd.tar.zst freebsd-ports-gnome-e24943f24dbf285b5e219240848730ff33c532dd.zip |
- Do not call times(NULL).
- Bump PORTREVISION.
Diffstat (limited to 'devel/cvsnt')
-rw-r--r-- | devel/cvsnt/Makefile | 2 | ||||
-rw-r--r-- | devel/cvsnt/files/patch-lockservice-LockParse.cpp | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/devel/cvsnt/Makefile b/devel/cvsnt/Makefile index 262532946508..f2b4429be9fc 100644 --- a/devel/cvsnt/Makefile +++ b/devel/cvsnt/Makefile @@ -7,7 +7,7 @@ PORTNAME= cvsnt PORTVERSION= 2.0.58d -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= http://www.cvsnt.org/archive/ diff --git a/devel/cvsnt/files/patch-lockservice-LockParse.cpp b/devel/cvsnt/files/patch-lockservice-LockParse.cpp new file mode 100644 index 000000000000..f24f80f0a862 --- /dev/null +++ b/devel/cvsnt/files/patch-lockservice-LockParse.cpp @@ -0,0 +1,12 @@ +--- lockservice/LockParse.cpp.orig Sun Feb 20 17:42:22 2005 ++++ lockservice/LockParse.cpp Sun Feb 20 17:42:40 2005 +@@ -155,7 +155,8 @@ + #ifdef _WIN32 + this_clock = GetTickCount(); + #else +- this_clock = times(NULL); ++ struct tms tms_buf; ++ this_clock = times(&tms_buf); + #endif + + if(this_clock<last_clock.clock) |