diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-04-07 15:56:58 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-04-07 15:56:58 +0000 |
commit | e4982423e8f19640229df3009faea04a64ed676e (patch) | |
tree | f875a13280e86351ccf13cb7c4fbcb58bc77e090 /src | |
parent | cf391dce36a6a563b45c5ca518f01dd26ad2f70c (diff) |
removed all the occurences of "icc" - this has not been used in ages
svn path=/trunk/externals/zexy/; revision=10969
Diffstat (limited to 'src')
-rw-r--r-- | src/configure.ac | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/configure.ac b/src/configure.ac index 58135f0..c78e0b0 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -40,7 +40,6 @@ AC_ARG_WITH(version, [ --with-version=<ver> enforce a certain zexy-version AC_ARG_WITH(extension,[ --with-extension=<ext> enforce a certain extension for the dynamic library (e.g. dll)]) AC_ARG_WITH(pdpath, [ --with-pd=</path/to/pd> where to look for pd-headers and and -libs]) AC_ARG_ENABLE(PIC, [ --disable-PIC disable compilation with PIC-flag]) -AC_ARG_ENABLE(icc, [ --enable-icc enable ICC-support]) AC_ARG_ENABLE(lpt, [ --enable-lpt enable parallelport-support]) AC_ARG_ENABLE(library,[ --disable-library split the library into single externals]) @@ -52,10 +51,6 @@ if test "x" = "x${enable_lpt}" ; then enable_lpt="${with_lpt}" fi -if test "x" = "x${enable_icc}" ; then - enable_icc="${with_icc}" -fi - if test "xno" != "x${enable_library}" ; then dnl LATER: find a more generic way to generate the .._LIBRARY define BUILDLIBRARY="-DZEXY_LIBRARY" @@ -118,19 +113,6 @@ dnl AC_CHECK_LIB(pthread, main) dnl Replace `main' with a function in -lstk: dnl AC_CHECK_LIB(stk, main, STK=yes) - -dnl for now i can test ICC only on linux -dnl LATER we might want to use it for other platforms (namely:windoze) too - -if test x${KERN} = xLinux; -then - AC_ARG_ENABLE(icc, [ --enable-icc enable ICC-support]) - if test "$enable_icc" = "yes"; then - CC=icc - LD=icc - fi -fi - AC_CHECK_LIB(pd, nullfn) AC_CHECK_LIB(regex, regcomp) @@ -292,16 +274,6 @@ if test x${KERN} = xLinux; then EXT=pd_linux STRIPFLAGS="--strip-unneeded" - if test "$enable_icc" = "yes"; then - CC=icc - fi - - if test $CC = "icc" - then - LD=$CC - AC_CHECK_LDFLAGS([-ip -ipo_obj]) - AC_CHECK_CFLAGS([-ip -ipo_obj]) - fi fi dnl This should use '-bundle_loader /path/to/pd/bin/pd' instead of'-undefined suppress' |