94f8549435
- 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.
15 lines
479 B
Plaintext
15 lines
479 B
Plaintext
$OpenBSD: patch-odk_configure_pl,v 1.2 2006/08/20 03:36:52 kurt Exp $
|
|
--- odk/configure.pl.orig.port Wed Nov 9 04:28:37 2005
|
|
+++ odk/configure.pl Fri Aug 18 15:47:43 2006
|
|
@@ -28,6 +28,10 @@ if ( $main::operatingSystem =~ /freebsd/
|
|
{
|
|
$main::makeName = "gmake";
|
|
}
|
|
+if ( $main::operatingSystem =~ /openbsd/ )
|
|
+{
|
|
+ $main::makeName = "gmake";
|
|
+}
|
|
$main::OO_SDK_MAKE_HOME_SUGGESTION = searchprog($main::makeName);
|
|
$main::makeVersion = "3.79.1";
|
|
$main::correctVersion = 0;
|