diff options
author | Cy Schubert <cy@FreeBSD.org> | 2005-08-11 03:05:00 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2005-08-11 03:05:00 +0000 |
commit | c7361bfd1f7678334997f44155f874d1ba2f64eb (patch) | |
tree | aedda905751ef09d80753441717d2ff3d75f085a /security/tripwire/files | |
parent | 62f4aa1e6bfbec829ab4404ecf018e15fa386eab (diff) | |
download | ports-c7361bfd1f7678334997f44155f874d1ba2f64eb.tar.gz ports-c7361bfd1f7678334997f44155f874d1ba2f64eb.zip |
Fix ports/84648 (Interactive tripwire's database update does not work on 5.x).
PR: ports/84648
Approved by: portsmgr (marcus)
Notes
Notes:
svn path=/head/; revision=140835
Diffstat (limited to 'security/tripwire/files')
-rw-r--r-- | security/tripwire/files/patch-src::core::msystem.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/security/tripwire/files/patch-src::core::msystem.cpp b/security/tripwire/files/patch-src::core::msystem.cpp new file mode 100644 index 000000000000..5df1a0d36393 --- /dev/null +++ b/security/tripwire/files/patch-src::core::msystem.cpp @@ -0,0 +1,14 @@ +--- src/core/msystem.cpp.orig Wed Aug 10 15:59:22 2005 ++++ src/core/msystem.cpp Wed Aug 10 17:00:19 2005 +@@ -951,8 +951,11 @@ + * ignore any signals until child dies + */ + for(i = 0; i < MAX_SIGNAL; i++) ++#ifdef __FreeBSD__ ++#define SIGCLD SIGCHLD ++#endif + #ifdef SIGCLD + if (i != SIGCLD) + #endif + savesig[i] = tw_sigign(i); + /* |