openbsd-ports/editors/openoffice/patches/patch-idlc_source_idlccompile_cxx
kurt 94f8549435 Fix debug FLAVOR so it builds and installs binaries with symbols:
- add -dontstrip to packaging script to get useful debug binaries
installed
- remove --enable-debug since that makes the debug build too big (>18G)
for me to build. Add back later as a possible verbose_debug flavor.

Use PATCHORIG so that update-patches doesn't pickup internal .orig files.
Idea from espie@

Add a mutex to make the call to getpwuid thread safe.
2006-08-20 03:36:52 +00:00

13 lines
452 B
Plaintext

$OpenBSD: patch-idlc_source_idlccompile_cxx,v 1.2 2006/08/20 03:36:52 kurt Exp $
--- idlc/source/idlccompile.cxx.orig.port Mon Jun 19 23:48:52 2006
+++ idlc/source/idlccompile.cxx Fri Aug 18 15:47:43 2006
@@ -61,7 +61,7 @@
#ifdef SAL_UNX
#include <unistd.h>
-#if defined(MACOSX) || defined(FREEBSD) || defined(NETBSD)
+#if defined(MACOSX) || defined(FREEBSD) || defined(NETBSD) || defined (OPENBSD)
#include <sys/wait.h>
#else
#include <wait.h>