Changeset 2165
- Timestamp:
- Mar 31, 2011 3:27:28 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/coin.m4
r2155 r2165 708 708 fi 709 709 710 # add automake conditional so we can recognize cl compiler in makefile711 coin_cc_is_cl=false712 if test x"$CXX" != x; then713 case "$CXX" in714 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*)715 coin_cc_is_cl=true716 ;;717 esac718 fi719 AM_CONDITIONAL(COIN_CC_IS_CL, [test $coin_cc_is_cl = true])720 721 710 AC_ARG_VAR(CDEFS,[Additional -D flags to be used when compiling C code.]) 722 711 AC_ARG_VAR(ADD_CFLAGS,[Additional C compiler options]) … … 770 759 esac 771 760 CFLAGS="$save_cflags" 761 762 # add automake conditional so we can recognize cl compiler in makefile 763 coin_cc_is_cl=false 764 case "$CC" in 765 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 766 coin_cc_is_cl=true 767 ;; 768 esac 769 AM_CONDITIONAL(COIN_CC_IS_CL, [test $coin_cc_is_cl = true]) 772 770 773 771 # Check if a project specific CFLAGS variable has been set
Note: See TracChangeset
for help on using the changeset viewer.