mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 11:04:51 -04:00
17 lines
431 B
Plaintext
17 lines
431 B
Plaintext
$NetBSD: patch-configure,v 1.1 2011/05/02 13:39:40 wiz Exp $
|
|
|
|
Do not hardcode libdl, it doesn't exist on e.g. NetBSD. Use DL_LIBS
|
|
variable set by dlopen.builtlink.mk.
|
|
|
|
--- configure.orig 2011-05-02 13:26:47.000000000 +0000
|
|
+++ configure
|
|
@@ -6316,7 +6316,7 @@ else
|
|
CFLAGS="$CFLAGS -fomit-frame-pointer"
|
|
fi
|
|
|
|
-LIBS="$LIBS -lX11 -ldl -lXext"
|
|
+LIBS="$LIBS -lX11 ${DL_LIBS} -lXext"
|
|
|
|
ZSNESFX='#ZSNESFX=yes'
|
|
ZSNESC4='#ZSNESC4=yes'
|