4451a7afed
It skips the check for the math library on Darwin because the math functions are included in the system library. It however later aborts because it didn't find a math library. Work arround this by not skipping the math library check on Darwin. The "configure" scripts now finds "/usr/lib/libm.dylib" which is a symlink to the system library.
13 lines
374 B
Text
13 lines
374 B
Text
$NetBSD: patch-ac,v 1.1 2007/04/11 16:22:14 tron Exp $
|
|
|
|
--- configure.orig 2007-03-12 15:39:26.000000000 +0000
|
|
+++ configure 2007-04-11 17:05:51.000000000 +0100
|
|
@@ -23712,7 +23712,7 @@
|
|
|
|
LIBM=
|
|
case $host in
|
|
-*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
|
|
+*-*-beos* | *-*-cygwin* | *-*-pw32*)
|
|
# These system don't have libm, or don't need it
|
|
;;
|
|
*-ncr-sysv4.3*)
|