From: Brian West Date: Wed, 19 Mar 2014 19:33:31 +0000 (-0500) Subject: Support Intel ICC X-Git-Tag: v1.5.12~379 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8f1a1779fcbcc997140f41aceb09aff53cb8490;p=thirdparty%2Ffreeswitch.git Support Intel ICC --- diff --git a/configure.ac b/configure.ac index a9d81d0be2..f37d7897a6 100644 --- a/configure.ac +++ b/configure.ac @@ -257,6 +257,12 @@ elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then SOLINK="-shared -Xlinker -x" ;; esac +elif test "x${ax_cv_c_compiler_vendor}" = "xintel" ; then + case "$host" in + *) + SOLINK="-shared -Xlinker -x" + ;; + esac else AC_ERROR([Please update configure.in with SOLINK values for your compiler]) fi diff --git a/libs/openzap/configure.ac b/libs/openzap/configure.ac index 984a788927..734d1c9f70 100644 --- a/libs/openzap/configure.ac +++ b/libs/openzap/configure.ac @@ -101,6 +101,12 @@ elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then SOLINK="-shared -Xlinker -x" ;; esac +elif test "x${ax_cv_c_compiler_vendor}" = "xintel" ; then + case "$host" in + *) + SOLINK="-shared -Xlinker -x" + ;; + esac else AC_ERROR([Please update configure.in with SOLINK values for your compiler]) fi