diff options
author | cy <cy@FreeBSD.org> | 2002-10-15 04:11:37 +0000 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2002-10-15 04:11:37 +0000 |
commit | c0236dfe6802828005ec3cdab8357c2a4cabb9ba (patch) | |
tree | 02477aa5fc179a01d79dbc9dbfa1633182c41be6 /security | |
parent | 84de6e1c02b13f4023f0dfe72fc15562d26715c5 (diff) | |
download | FreeBSD-ports-c0236dfe6802828005ec3cdab8357c2a4cabb9ba.zip FreeBSD-ports-c0236dfe6802828005ec3cdab8357c2a4cabb9ba.tar.gz |
Fix a build bug in recent -STABLE.
Submitted by: Jan Demter <jan@demter.de>
Diffstat (limited to 'security')
-rw-r--r-- | security/tripwire/Makefile | 1 | ||||
-rw-r--r-- | security/tripwire/files/patch-src::STLport-4.0::src::num_put_float.cpp | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/security/tripwire/Makefile b/security/tripwire/Makefile index 308e631..333e427 100644 --- a/security/tripwire/Makefile +++ b/security/tripwire/Makefile @@ -7,6 +7,7 @@ PORTNAME= tripwire PORTVERSION= 2.3.1.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://download.sourceforge.net/tripwire/ DISTNAME= tripwire-2.3.1-2 diff --git a/security/tripwire/files/patch-src::STLport-4.0::src::num_put_float.cpp b/security/tripwire/files/patch-src::STLport-4.0::src::num_put_float.cpp new file mode 100644 index 0000000..551cd1f --- /dev/null +++ b/security/tripwire/files/patch-src::STLport-4.0::src::num_put_float.cpp @@ -0,0 +1,11 @@ +--- src/STLport-4.0/src/num_put_float.cpp.orig Sat Feb 24 19:44:14 2001 ++++ src/STLport-4.0/src/num_put_float.cpp Sat Oct 12 02:55:14 2002 +@@ -43,7 +43,7 @@ + + # ifdef __STL_UNIX + +-# ifdef __OpenBSD__ ++# if defined(__OpenBSD__) || defined(__FreeBSD__) + # include <math.h> + # include <float.h> + # else |