configure.ac: Do not enable -Wl,--no-undefined on Mac OS X.
authorVinson Lee <vlee@freedesktop.org>
Thu, 22 May 2014 05:13:13 +0000 (22:13 -0700)
committerVinson Lee <vlee@freedesktop.org>
Thu, 22 May 2014 05:13:13 +0000 (22:13 -0700)
This patch fixes this build error on Mac OS X.

  CCLD     libglapi.la
clang: warning: argument unused during compilation: '-pthread'
clang: warning: argument unused during compilation: '-pthread'
ld: unknown option: --no-undefined
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
configure.ac

index b6e8049a405ed197f86a83f0a9b7ef0c47736332..76d13337f9eefa3ee38aaf280fa64e2fe75d57eb 100644 (file)
@@ -336,7 +336,7 @@ dnl OpenBSD does not have DT_NEEDED entries for libc by design
 dnl so when these flags are passed to ld via libtool the checks will fail
 dnl
 case "$host_os" in
-openbsd*)
+openbsd* | darwin* )
     LD_NO_UNDEFINED="" ;;
 *)
     LD_NO_UNDEFINED="-Wl,--no-undefined" ;;