a5f5b18417
on Linux, force use of specific fstropen code. Also fix check for AIX in the source code.
13 lines
391 B
Text
13 lines
391 B
Text
$NetBSD: patch-ag,v 1.1 2001/07/04 03:08:58 jlam Exp $
|
|
|
|
--- src/lib/oogl/util/mallocp.c.orig Fri Sep 1 18:38:16 2000
|
|
+++ src/lib/oogl/util/mallocp.c
|
|
@@ -38,7 +38,7 @@
|
|
*/
|
|
void *OOG_CurSM = NULL;
|
|
|
|
-#if defined(sgi) || AIX
|
|
+#if defined(sgi) || (defined(AIX) && AIX)
|
|
void *(*OOG_NewP)(size_t) = malloc;
|
|
void (*OOGLFree)(void *) = free;
|
|
void *(*OOG_RenewP)(void *, size_t) = realloc;
|