diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-05-06 17:20:55 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-05-06 17:20:55 +0000 |
commit | 7ac8a8dfc8ac537b4bcfa5a2df8fd2dc6f66389f (patch) | |
tree | ee39f9496e911c121aa2f1d26fc67982a5135b63 | |
parent | 18cfa35a67584affb2e08360899288a039da7372 (diff) |
put the checks for "-mms-bitfields" _after_ the check for universal binaries
svn path=/trunk/externals/iem/iemmatrix/; revision=11247
-rw-r--r-- | src/configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/configure.ac b/src/configure.ac index 2003445..f49fd58 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -52,10 +52,6 @@ dnl LATER: find a more generic way to generate the .._LIBRARY define fi -dnl check for "-mms-bitfields" cflag -dnl it would make things so easy: AC_CHECK_FLAG([-mms-bitfields],,) -AC_CHECK_CFLAGS([-mms-bitfields]) - dnl Checks for libraries. dnl Replace `main' with a function in -lc: @@ -127,6 +123,10 @@ fi ### can we build fat-binaries AC_CHECK_FAT(ARCH_FLAGS) +dnl check for "-mms-bitfields" cflag +AC_CHECK_CFLAGS([-mms-bitfields]) + + dnl isn't there a better way to check for good linker/stripper ? dnl if we don't have $LD set, we set it to $(CC) |