From: Anthony Minessale Date: Mon, 12 Mar 2007 17:46:24 +0000 (+0000) Subject: better Mac detection X-Git-Tag: v1.0-beta1~850 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ae16d1523bdeb51f23204d408c19720ae142e53;p=thirdparty%2Ffreeswitch.git better Mac detection git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4569 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/configure.in b/configure.in index 9d74bf0819..5bc0f9ab40 100644 --- a/configure.in +++ b/configure.in @@ -62,7 +62,7 @@ if test "x${ax_cv_c_compiler_vendor}" = "xsun" ; then SOLINK="-Bdynamic -dy -G" elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then case "$host" in - *-darwin*) + *darwin*) SOLINK="-dynamic -bundle -force-flat-namespace" ;; *) @@ -76,7 +76,7 @@ fi # set DYNAMIC_LIB_EXTEN # we should really be using libtool so we don't need to do this case "$host" in - *-darwin*) + *darwin*) DYNAMIC_LIB_EXTEN="dylib" ;; *cygwin* | *mingw*) @@ -101,7 +101,7 @@ fi # tweak platform specific flags case "$host" in - *-darwin*) + *darwin*) APR_ADDTO(SWITCH_AM_CFLAGS, -DMACOSX) APR_REMOVEFROM(SWITCH_AM_CFLAGS, -fPIC) ;;