Changeset 1924
- Timestamp:
- Dec 19, 2010 11:35:14 AM (10 years ago)
- Location:
- ThirdParty/Metis/stable/1.1
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Metis/stable/1.1
-
Property
svn:mergeinfo
set to
/ThirdParty/Metis/trunk merged eligible
-
Property
svn:mergeinfo
set to
-
ThirdParty/Metis/stable/1.1/Makefile.in
r1746 r1924 144 144 CDEFS = @CDEFS@ 145 145 CFLAGS = @CFLAGS@ 146 COIN_CC_IS_CL_FALSE = @COIN_CC_IS_CL_FALSE@ 147 COIN_CC_IS_CL_TRUE = @COIN_CC_IS_CL_TRUE@ 146 148 COIN_HAS_PKGCONFIG_FALSE = @COIN_HAS_PKGCONFIG_FALSE@ 147 149 COIN_HAS_PKGCONFIG_TRUE = @COIN_HAS_PKGCONFIG_TRUE@ -
ThirdParty/Metis/stable/1.1/coinmetis-uninstalled.pc.in
r1685 r1924 5 5 Description: Serial Graph Partitioning and Fill-reducing Matrix Ordering 6 6 Version: 4.0 7 Libs: -L${libdir} -lcoinmetis7 Libs: ${libdir}/libcoinmetis.la 8 8 Cflags: -I@abs_source_dir@/@METISDIR@/Lib -
ThirdParty/Metis/stable/1.1/configure
r1861 r1924 473 473 #endif" 474 474 475 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS ADDLIBS PCADDLIBS FADDLIBS ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion METIS_SVN_REV build build_cpu build_vendor build_os C DEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT MPICC PKG_CONFIG ac_pt_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH COIN_PKG_CONFIG_PATH_UNINSTALLED EGREP INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT LIBTOOLM4 have_autoconf have_automake have_svn BUILDTOOLSDIR AUX_DIR abs_source_dir abs_lib_dir abs_include_dir abs_bin_dir HAVE_EXTERNALS_TRUE HAVE_EXTERNALS_FALSE host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS LT_LDFLAGS METISDIR LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS'475 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS ADDLIBS PCADDLIBS FADDLIBS ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion METIS_SVN_REV build build_cpu build_vendor build_os COIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT MPICC PKG_CONFIG ac_pt_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH COIN_PKG_CONFIG_PATH_UNINSTALLED EGREP INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT LIBTOOLM4 have_autoconf have_automake have_svn BUILDTOOLSDIR AUX_DIR abs_source_dir abs_lib_dir abs_include_dir abs_bin_dir HAVE_EXTERNALS_TRUE HAVE_EXTERNALS_FALSE host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS LT_LDFLAGS METISDIR LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS' 476 476 ac_subst_files='' 477 477 … … 1919 1919 fi 1920 1920 1921 # add automake conditional so we can recognize cl compiler in makefile 1922 coin_cc_is_cl=false 1923 if test x"$CXX" != x; then 1924 case "$CXX" in 1925 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 1926 coin_cc_is_cl=true 1927 ;; 1928 esac 1929 fi 1930 1931 1932 if test $coin_cc_is_cl = true; then 1933 COIN_CC_IS_CL_TRUE= 1934 COIN_CC_IS_CL_FALSE='#' 1935 else 1936 COIN_CC_IS_CL_TRUE='#' 1937 COIN_CC_IS_CL_FALSE= 1938 fi 1939 1940 1921 1941 1922 1942 … … 4992 5012 *-*-irix6*) 4993 5013 # Find out which ABI we are using. 4994 echo '#line 4994 "configure"' > conftest.$ac_ext5014 echo '#line 5014 "configure"' > conftest.$ac_ext 4995 5015 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4996 5016 (eval $ac_compile) 2>&5 … … 6591 6611 6592 6612 # Provide some information about the compiler. 6593 echo "$as_me:6 593:" \6613 echo "$as_me:6613:" \ 6594 6614 "checking for Fortran 77 compiler version" >&5 6595 6615 ac_compiler=`set X $ac_compile; echo $2` … … 7658 7678 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7659 7679 -e 's:$: $lt_compiler_flag:'` 7660 (eval echo "\"\$as_me:76 60: $lt_compile\"" >&5)7680 (eval echo "\"\$as_me:7680: $lt_compile\"" >&5) 7661 7681 (eval "$lt_compile" 2>conftest.err) 7662 7682 ac_status=$? 7663 7683 cat conftest.err >&5 7664 echo "$as_me:76 64: \$? = $ac_status" >&57684 echo "$as_me:7684: \$? = $ac_status" >&5 7665 7685 if (exit $ac_status) && test -s "$ac_outfile"; then 7666 7686 # The compiler can only warn and ignore the option if not recognized … … 7926 7946 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7927 7947 -e 's:$: $lt_compiler_flag:'` 7928 (eval echo "\"\$as_me:79 28: $lt_compile\"" >&5)7948 (eval echo "\"\$as_me:7948: $lt_compile\"" >&5) 7929 7949 (eval "$lt_compile" 2>conftest.err) 7930 7950 ac_status=$? 7931 7951 cat conftest.err >&5 7932 echo "$as_me:79 32: \$? = $ac_status" >&57952 echo "$as_me:7952: \$? = $ac_status" >&5 7933 7953 if (exit $ac_status) && test -s "$ac_outfile"; then 7934 7954 # The compiler can only warn and ignore the option if not recognized … … 8030 8050 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8031 8051 -e 's:$: $lt_compiler_flag:'` 8032 (eval echo "\"\$as_me:80 32: $lt_compile\"" >&5)8052 (eval echo "\"\$as_me:8052: $lt_compile\"" >&5) 8033 8053 (eval "$lt_compile" 2>out/conftest.err) 8034 8054 ac_status=$? 8035 8055 cat out/conftest.err >&5 8036 echo "$as_me:80 36: \$? = $ac_status" >&58056 echo "$as_me:8056: \$? = $ac_status" >&5 8037 8057 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8038 8058 then … … 10375 10395 lt_status=$lt_dlunknown 10376 10396 cat > conftest.$ac_ext <<EOF 10377 #line 103 77 "configure"10397 #line 10397 "configure" 10378 10398 #include "confdefs.h" 10379 10399 … … 10475 10495 lt_status=$lt_dlunknown 10476 10496 cat > conftest.$ac_ext <<EOF 10477 #line 104 77 "configure"10497 #line 10497 "configure" 10478 10498 #include "confdefs.h" 10479 10499 … … 12819 12839 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12820 12840 -e 's:$: $lt_compiler_flag:'` 12821 (eval echo "\"\$as_me:128 21: $lt_compile\"" >&5)12841 (eval echo "\"\$as_me:12841: $lt_compile\"" >&5) 12822 12842 (eval "$lt_compile" 2>conftest.err) 12823 12843 ac_status=$? 12824 12844 cat conftest.err >&5 12825 echo "$as_me:128 25: \$? = $ac_status" >&512845 echo "$as_me:12845: \$? = $ac_status" >&5 12826 12846 if (exit $ac_status) && test -s "$ac_outfile"; then 12827 12847 # The compiler can only warn and ignore the option if not recognized … … 12923 12943 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12924 12944 -e 's:$: $lt_compiler_flag:'` 12925 (eval echo "\"\$as_me:129 25: $lt_compile\"" >&5)12945 (eval echo "\"\$as_me:12945: $lt_compile\"" >&5) 12926 12946 (eval "$lt_compile" 2>out/conftest.err) 12927 12947 ac_status=$? 12928 12948 cat out/conftest.err >&5 12929 echo "$as_me:129 29: \$? = $ac_status" >&512949 echo "$as_me:12949: \$? = $ac_status" >&5 12930 12950 if (exit $ac_status) && test -s out/conftest2.$ac_objext 12931 12951 then … … 14493 14513 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14494 14514 -e 's:$: $lt_compiler_flag:'` 14495 (eval echo "\"\$as_me:14 495: $lt_compile\"" >&5)14515 (eval echo "\"\$as_me:14515: $lt_compile\"" >&5) 14496 14516 (eval "$lt_compile" 2>conftest.err) 14497 14517 ac_status=$? 14498 14518 cat conftest.err >&5 14499 echo "$as_me:14 499: \$? = $ac_status" >&514519 echo "$as_me:14519: \$? = $ac_status" >&5 14500 14520 if (exit $ac_status) && test -s "$ac_outfile"; then 14501 14521 # The compiler can only warn and ignore the option if not recognized … … 14597 14617 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14598 14618 -e 's:$: $lt_compiler_flag:'` 14599 (eval echo "\"\$as_me:14 599: $lt_compile\"" >&5)14619 (eval echo "\"\$as_me:14619: $lt_compile\"" >&5) 14600 14620 (eval "$lt_compile" 2>out/conftest.err) 14601 14621 ac_status=$? 14602 14622 cat out/conftest.err >&5 14603 echo "$as_me:146 03: \$? = $ac_status" >&514623 echo "$as_me:14623: \$? = $ac_status" >&5 14604 14624 if (exit $ac_status) && test -s out/conftest2.$ac_objext 14605 14625 then … … 16804 16824 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16805 16825 -e 's:$: $lt_compiler_flag:'` 16806 (eval echo "\"\$as_me:168 06: $lt_compile\"" >&5)16826 (eval echo "\"\$as_me:16826: $lt_compile\"" >&5) 16807 16827 (eval "$lt_compile" 2>conftest.err) 16808 16828 ac_status=$? 16809 16829 cat conftest.err >&5 16810 echo "$as_me:168 10: \$? = $ac_status" >&516830 echo "$as_me:16830: \$? = $ac_status" >&5 16811 16831 if (exit $ac_status) && test -s "$ac_outfile"; then 16812 16832 # The compiler can only warn and ignore the option if not recognized … … 17072 17092 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17073 17093 -e 's:$: $lt_compiler_flag:'` 17074 (eval echo "\"\$as_me:170 74: $lt_compile\"" >&5)17094 (eval echo "\"\$as_me:17094: $lt_compile\"" >&5) 17075 17095 (eval "$lt_compile" 2>conftest.err) 17076 17096 ac_status=$? 17077 17097 cat conftest.err >&5 17078 echo "$as_me:170 78: \$? = $ac_status" >&517098 echo "$as_me:17098: \$? = $ac_status" >&5 17079 17099 if (exit $ac_status) && test -s "$ac_outfile"; then 17080 17100 # The compiler can only warn and ignore the option if not recognized … … 17176 17196 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17177 17197 -e 's:$: $lt_compiler_flag:'` 17178 (eval echo "\"\$as_me:171 78: $lt_compile\"" >&5)17198 (eval echo "\"\$as_me:17198: $lt_compile\"" >&5) 17179 17199 (eval "$lt_compile" 2>out/conftest.err) 17180 17200 ac_status=$? 17181 17201 cat out/conftest.err >&5 17182 echo "$as_me:17 182: \$? = $ac_status" >&517202 echo "$as_me:17202: \$? = $ac_status" >&5 17183 17203 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17184 17204 then … … 20392 20412 { (exit 1); exit 1; }; } 20393 20413 fi 20414 if test -z "${COIN_CC_IS_CL_TRUE}" && test -z "${COIN_CC_IS_CL_FALSE}"; then 20415 { { echo "$as_me:$LINENO: error: conditional \"COIN_CC_IS_CL\" was never defined. 20416 Usually this means the macro was only invoked conditionally." >&5 20417 echo "$as_me: error: conditional \"COIN_CC_IS_CL\" was never defined. 20418 Usually this means the macro was only invoked conditionally." >&2;} 20419 { (exit 1); exit 1; }; } 20420 fi 20394 20421 if test -z "${COIN_HAS_PKGCONFIG_TRUE}" && test -z "${COIN_HAS_PKGCONFIG_FALSE}"; then 20395 20422 { { echo "$as_me:$LINENO: error: conditional \"COIN_HAS_PKGCONFIG\" was never defined. … … 20972 20999 s,@build_vendor@,$build_vendor,;t t 20973 21000 s,@build_os@,$build_os,;t t 21001 s,@COIN_CC_IS_CL_TRUE@,$COIN_CC_IS_CL_TRUE,;t t 21002 s,@COIN_CC_IS_CL_FALSE@,$COIN_CC_IS_CL_FALSE,;t t 20974 21003 s,@CDEFS@,$CDEFS,;t t 20975 21004 s,@ADD_CFLAGS@,$ADD_CFLAGS,;t t
Note: See TracChangeset
for help on using the changeset viewer.