Changeset 2039
- Timestamp:
- Dec 31, 2010 8:18:14 AM (10 years ago)
- Location:
- stable/0.6
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.6
-
stable/0.6/coin.m4
r2037 r2039 3805 3805 AC_DEFUN([AC_COIN_MAIN_PACKAGEDIR], 3806 3806 [AC_REQUIRE([AC_COIN_HAS_PKGCONFIG]) 3807 AC_MSG_CHECKING([whether project m4_ifval([$2],[$2/])$1 is available])3807 AC_MSG_CHECKING([whether project $1 is available]) 3808 3808 3809 3809 m4_tolower(coin_has_$1)=notGiven … … 3825 3825 if test $m4_tolower(coin_has_$1) != skipping; then 3826 3826 if test $PACKAGE_TARNAME = m4_tolower($1); then 3827 m4_tolower(coin_has_$1)= .3827 m4_tolower(coin_has_$1)=yes 3828 3828 coin_have_project_dir=yes 3829 3829 fi … … 3832 3832 AC_HELP_STRING([--with-m4_tolower($1)-lib], 3833 3833 [linker flags for using project $1]), 3834 [m4_tolower(coin_has_$1)= installed],3834 [m4_tolower(coin_has_$1)="yes, via --with-m4_tolower($1)-lib"], 3835 3835 []) 3836 3836 … … 3838 3838 AC_HELP_STRING([--with-m4_tolower($1)-incdir], 3839 3839 [directory with header files for using project $1]), 3840 [m4_tolower(coin_has_$1)= installed],3840 [m4_tolower(coin_has_$1)="yes, via --with-m4_tolower($1)-incdir"], 3841 3841 []) 3842 3842 … … 3844 3844 AC_HELP_STRING([--with-m4_tolower($1)-datadir], 3845 3845 [directory with data files for using project $1]), 3846 [m4_tolower(coin_has_$1)= installed],3846 [m4_tolower(coin_has_$1)="yes, via --with-m4_tolower($1)-datadir"], 3847 3847 []) 3848 3848 … … 3854 3854 coin_has_blas=notGiven 3855 3855 else 3856 coin_has_blas= installed3856 coin_has_blas="yes, via --with-blas" 3857 3857 fi], 3858 3858 [])]) … … 3865 3865 coin_has_lapack=notGiven 3866 3866 else 3867 coin_has_lapack= installed3867 coin_has_lapack="yes, via --with-lapack" 3868 3868 fi], 3869 3869 [])]) … … 3885 3885 [ coin_have_project_dir=yes ]) 3886 3886 if test $coin_have_project_dir = yes; then 3887 m4_tolower(coin_has_$1)= m4_ifval($2,[$2/],)$13887 m4_tolower(coin_has_$1)="yes, source in m4_ifval($2,[$2/],)$1" 3888 3888 fi 3889 3889 fi … … 3891 3891 3892 3892 # check for project by using pkg-config, if pkg-config is available 3893 if test $m4_tolower(coin_has_$1)= notGiven; then3893 if test "$m4_tolower(coin_has_$1)" = notGiven; then 3894 3894 #we are only interested in installed packages here, so we do not search in $COIN_PKG_CONFIG_PATH_UNINSTALLED 3895 3895 if test -n "$PKG_CONFIG" ; then … … 3898 3898 m4_ifval([$4], 3899 3899 [AC_COIN_PKG_CHECK_PROJECT_EXISTS([$4], 3900 [m4_tolower(coin_has_$1)=" $m4_toupper([$4])_VERSION"])],3900 [m4_tolower(coin_has_$1)="yes, found installed version $m4_toupper([$4])_VERSION"])], 3901 3901 [AC_COIN_PKG_CHECK_PROJECT_EXISTS([$1], 3902 [m4_tolower(coin_has_$1)=" $m4_toupper([$1])_VERSION"])])3902 [m4_tolower(coin_has_$1)="yes, found installed version $m4_toupper([$1])_VERSION"])]) 3903 3903 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 3904 3904 export PKG_CONFIG_PATH … … 3906 3906 fi 3907 3907 3908 AC_MSG_RESULT([$m4_tolower(coin_has_$1)]) 3908 if test "$m4_tolower(coin_has_$1)" = notGiven; then 3909 m4_case(m4_tolower($1), 3910 [blas], 3911 [AC_MSG_RESULT([no (but will check for system blas later)])], 3912 [lapack], 3913 [AC_MSG_RESULT([no (but will check for system lapack later)])], 3914 [AC_MSG_RESULT([not given])] 3915 ) 3916 else 3917 AC_MSG_RESULT([$m4_tolower(coin_has_$1)]) 3918 fi 3909 3919 3910 3920 AC_MSG_CHECKING(whether project m4_ifval([$2],[$2/])$1 needs to be configured) -
stable/0.6/compile_f2c
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.