Changeset 2268
- Timestamp:
- Feb 21, 2016 10:25:08 AM (3 years ago)
- Location:
- stable/2.9
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/2.9/Cbc/Makefile.in
r2263 r2268 182 182 COIN_HAS_CPX_FALSE = @COIN_HAS_CPX_FALSE@ 183 183 COIN_HAS_CPX_TRUE = @COIN_HAS_CPX_TRUE@ 184 COIN_HAS_DOXYGEN_FALSE = @COIN_HAS_DOXYGEN_FALSE@ 185 COIN_HAS_DOXYGEN_TRUE = @COIN_HAS_DOXYGEN_TRUE@ 184 186 COIN_HAS_DYLP_FALSE = @COIN_HAS_DYLP_FALSE@ 185 187 COIN_HAS_DYLP_TRUE = @COIN_HAS_DYLP_TRUE@ … … 188 190 COIN_HAS_GRB_FALSE = @COIN_HAS_GRB_FALSE@ 189 191 COIN_HAS_GRB_TRUE = @COIN_HAS_GRB_TRUE@ 192 COIN_HAS_LATEX_FALSE = @COIN_HAS_LATEX_FALSE@ 193 COIN_HAS_LATEX_TRUE = @COIN_HAS_LATEX_TRUE@ 190 194 COIN_HAS_MIPLIB3_FALSE = @COIN_HAS_MIPLIB3_FALSE@ 191 195 COIN_HAS_MIPLIB3_TRUE = @COIN_HAS_MIPLIB3_TRUE@ … … 411 415 coin_doxy_usedot = @coin_doxy_usedot@ 412 416 coin_have_doxygen = @coin_have_doxygen@ 417 coin_have_latex = @coin_have_latex@ 413 418 datadir = @datadir@ 414 419 exec_prefix = @exec_prefix@ … … 492 497 # Files that are generated and should be cleaned with make distclean 493 498 DISTCLEANFILES = $(am__append_3) $(VPATH_DISTCLEANFILES) 494 DocFiles = README AUTHORS LICENSE 499 DocFiles = README AUTHORS LICENSE 495 500 DocInstallDir = $(datadir)/coin/doc/$(PACKAGE_NAME) 501 COIN_HAS_DOXYGEN = @COIN_HAS_DOXYGEN_TRUE@TRUE 502 COIN_HAS_LATEX = @COIN_HAS_LATEX_TRUE@TRUE 496 503 all: all-recursive 497 504 … … 993 1000 rm -f $(addlibsdir)/cbc_addlibs.txt 994 1001 995 install-doc: $(DocFiles) 1002 doxygen-docs: 1003 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1004 if test -d "doxydoc/"; then \ 1005 doxygen doxydoc/doxygen.conf;\ 1006 fi;\ 1007 fi 1008 1009 pdf-doxygen-docs: doxygen-docs 1010 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1011 if test -d "doxydoc/latex"; then \ 1012 if test "$(COIN_HAS_LATEX)" = TRUE; then \ 1013 cd doxydoc/latex;\ 1014 $(MAKE) pdf;\ 1015 cd -;\ 1016 fi;\ 1017 fi;\ 1018 fi 1019 1020 clean-doxygen-docs: 1021 if test -d "doxydoc/"; then \ 1022 cd doxydoc ;\ 1023 rm -rf html latex *.log *.tag;\ 1024 fi 1025 1026 install-doxygen-docs: doxygen-docs 1027 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1028 if test -d "doxydoc/"; then \ 1029 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc"; \ 1030 $(INSTALL_DATA) @coin_doxy_tagname@ "$(DESTDIR)$(DocInstallDir)/@coin_doxy_tagname@";\ 1031 if test -f "doxydoc/latex/refman.pdf"; then \ 1032 $(INSTALL_DATA) doxydoc/latex/refman.pdf "$(DESTDIR)$(DocInstallDir)";\ 1033 fi;\ 1034 if test -d "doxydoc/html"; then \ 1035 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/search/" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc/search/"; \ 1036 $(INSTALL_DATA) doxydoc/html/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc";\ 1037 $(INSTALL_DATA) doxydoc/html/search/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc/search";\ 1038 fi;\ 1039 fi;\ 1040 fi 1041 1042 uninstall-doxygen-docs: 1043 if test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/"; then \ 1044 rm -rf "$(DESTDIR)$(DocInstallDir)/doxydoc/"; \ 1045 fi 1046 if test -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; then \ 1047 rm -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; \ 1048 fi 1049 1050 all-doxygen-docs: 1051 for dir in $(subdirs) ; do \ 1052 do_project=true;\ 1053 for proj in $(COIN_SKIP_DOXYGEN); do\ 1054 if test $$dir = $$proj; then\ 1055 do_project=false;\ 1056 fi;\ 1057 done;\ 1058 if test -r $$dir/doxydoc & $$do_project = true; then \ 1059 (cd $$dir ; $(MAKE) doxygen-docs) \ 1060 fi ; \ 1061 done ; 1062 1063 clean-all-doxygen-docs: 1064 for dir in $(subdirs) ; do \ 1065 if test -r $$dir/doxydoc ; then \ 1066 (cd $$dir ; $(MAKE) clean-doxygen-docs) \ 1067 fi ; \ 1068 done ; 1069 1070 install-all-doxygen-docs: all-doxygen-docs 1071 for dir in $(subdirs) ; do \ 1072 do_project=true;\ 1073 for proj in $(COIN_SKIP_DOXYGEN); do\ 1074 if test $$dir = $$proj; then\ 1075 do_project=false;\ 1076 fi;\ 1077 done;\ 1078 if test -r $$dir/doxydoc & $$do_project = true; then \ 1079 (cd $$dir ; $(MAKE) install-doxygen-docs) \ 1080 fi ; \ 1081 done ; 1082 1083 uninstall-all-doxygen-docs: 1084 for dir in $(subdirs) ; do \ 1085 if test -r $$dir/doxydoc ; then \ 1086 (cd $$dir ; $(MAKE) uninstall-doxygen-docs) \ 1087 fi ; \ 1088 done ; 1089 1090 install-doc: $(DocFiles) 996 1091 test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)" 997 1092 for file in $(DocFiles); do \ 998 1093 if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \ 999 1094 if test -f "$$dir$$file"; then $(INSTALL_DATA) "$$dir$$file" "$(DESTDIR)$(DocInstallDir)/$$file"; fi; \ 1000 done 1095 done 1001 1096 1002 1097 uninstall-doc: -
stable/2.9/Cbc/configure
r2263 r2268 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 build build_cpu build_vendor build_os ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion CBC_SVN_REV CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT COIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE MPICC CXXDEFS ADD_CXXFLAGS DBG_CXXFLAGS OPT_CXXFLAGS CXX CXXFLAGS ac_ct_CXX COIN_CXX_IS_CL_TRUE COIN_CXX_IS_CL_FALSE MPICXX EGREP LN_S 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 CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_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 ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS DEPENDENCY_LINKING_TRUE DEPENDENCY_LINKING_FALSE LT_LDFLAGS PKG_CONFIG ac_ct_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH COIN_PKG_CONFIG_PATH_UNINSTALLED COINDEPEND_LIBS COINDEPEND_CFLAGS COINDEPEND_DATA COINDEPEND_DEPENDENCIES COINDEPEND_LIBS_INSTALLED COINDEPEND_CFLAGS_INSTALLED COINDEPEND_DATA_INSTALLED CBCLIB_CFLAGS CBCLIB_LIBS CBCLIB_PCLIBS CBCLIB_PCREQUIRES CBCLIB_DEPENDENCIES CBCLIB_CFLAGS_INSTALLED CBCLIB_LIBS_INSTALLED CBCGENERIC_CFLAGS CBCGENERIC_LIBS CBCGENERIC_PCLIBS CBCGENERIC_PCREQUIRES CBCGENERIC_DEPENDENCIES CBCGENERIC_CFLAGS_INSTALLED CBCGENERIC_LIBS_INSTALLED COIN_HAS_COINDEPEND_TRUE COIN_HAS_COINDEPEND_FALSE CLP_LIBS CLP_CFLAGS CLP_DATA CLP_DEPENDENCIES CLP_LIBS_INSTALLED CLP_CFLAGS_INSTALLED CLP_DATA_INSTALLED COIN_HAS_CLP_TRUE COIN_HAS_CLP_FALSE OSITESTS_LIBS OSITESTS_CFLAGS OSITESTS_DATA OSITESTS_DEPENDENCIES OSITESTS_LIBS_INSTALLED OSITESTS_CFLAGS_INSTALLED OSITESTS_DATA_INSTALLED COIN_HAS_OSITESTS_TRUE COIN_HAS_OSITESTS_FALSE SAMPLE_LIBS SAMPLE_CFLAGS SAMPLE_DATA SAMPLE_DEPENDENCIES SAMPLE_LIBS_INSTALLED SAMPLE_CFLAGS_INSTALLED SAMPLE_DATA_INSTALLED COIN_HAS_SAMPLE_TRUE COIN_HAS_SAMPLE_FALSE NETLIB_LIBS NETLIB_CFLAGS NETLIB_DATA NETLIB_DEPENDENCIES NETLIB_LIBS_INSTALLED NETLIB_CFLAGS_INSTALLED NETLIB_DATA_INSTALLED COIN_HAS_NETLIB_TRUE COIN_HAS_NETLIB_FALSE MIPLIB3_LIBS MIPLIB3_CFLAGS MIPLIB3_DATA MIPLIB3_DEPENDENCIES MIPLIB3_LIBS_INSTALLED MIPLIB3_CFLAGS_INSTALLED MIPLIB3_DATA_INSTALLED COIN_HAS_MIPLIB3_TRUE COIN_HAS_MIPLIB3_FALSE DYLP_LIBS DYLP_CFLAGS DYLP_DATA DYLP_DEPENDENCIES DYLP_LIBS_INSTALLED DYLP_CFLAGS_INSTALLED DYLP_DATA_INSTALLED COIN_HAS_DYLP_TRUE COIN_HAS_DYLP_FALSE VOL_LIBS VOL_CFLAGS VOL_DATA VOL_DEPENDENCIES VOL_LIBS_INSTALLED VOL_CFLAGS_INSTALLED VOL_DATA_INSTALLED COIN_HAS_VOL_TRUE COIN_HAS_VOL_FALSE CPX_LIBS CPX_CFLAGS CPX_DATA CPX_DEPENDENCIES CPX_LIBS_INSTALLED CPX_CFLAGS_INSTALLED CPX_DATA_INSTALLED COIN_HAS_CPX_TRUE COIN_HAS_CPX_FALSE GLPK_LIBS GLPK_CFLAGS GLPK_DATA GLPK_DEPENDENCIES GLPK_LIBS_INSTALLED GLPK_CFLAGS_INSTALLED GLPK_DATA_INSTALLED COIN_HAS_GLPK_TRUE COIN_HAS_GLPK_FALSE GRB_LIBS GRB_CFLAGS GRB_DATA GRB_DEPENDENCIES GRB_LIBS_INSTALLED GRB_CFLAGS_INSTALLED GRB_DATA_INSTALLED COIN_HAS_GRB_TRUE COIN_HAS_GRB_FALSE MSK_LIBS MSK_CFLAGS MSK_DATA MSK_DEPENDENCIES MSK_LIBS_INSTALLED MSK_CFLAGS_INSTALLED MSK_DATA_INSTALLED COIN_HAS_MSK_TRUE COIN_HAS_MSK_FALSE SPX_LIBS SPX_CFLAGS SPX_DATA SPX_DEPENDENCIES SPX_LIBS_INSTALLED SPX_CFLAGS_INSTALLED SPX_DATA_INSTALLED COIN_HAS_SPX_TRUE COIN_HAS_SPX_FALSE XPR_LIBS XPR_CFLAGS XPR_DATA XPR_DEPENDENCIES XPR_LIBS_INSTALLED XPR_CFLAGS_INSTALLED XPR_DATA_INSTALLED COIN_HAS_XPR_TRUE COIN_HAS_XPR_FALSE ASL_LIBS ASL_CFLAGS ASL_DATA ASL_DEPENDENCIES ASL_LIBS_INSTALLED ASL_CFLAGS_INSTALLED ASL_DATA_INSTALLED COIN_HAS_ASL_TRUE COIN_HAS_ASL_FALSE NTYINCDIR NTYLIB COIN_HAS_NTY_TRUE COIN_HAS_NTY_FALSE CBC_BUILD_CBC_GENERIC_TRUE CBC_BUILD_CBC_GENERIC_FALSE OSICBC_DFLT_SOLVER_CLP_TRUE OSICBC_DFLT_SOLVER_CLP_FALSE OSICBC_DFLT_SOLVER_CPX_TRUE OSICBC_DFLT_SOLVER_CPX_FALSE OSICBC_DFLT_SOLVER_DYLP_TRUE OSICBC_DFLT_SOLVER_DYLP_FALSE OSICBC_DFLT_SOLVER_GLPK_TRUE OSICBC_DFLT_SOLVER_GLPK_FALSE OSICBC_DFLT_SOLVER_GRB_TRUE OSICBC_DFLT_SOLVER_GRB_FALSE OSICBC_DFLT_SOLVER_MSK_TRUE OSICBC_DFLT_SOLVER_MSK_FALSE OSICBC_DFLT_SOLVER_SPX_TRUE OSICBC_DFLT_SOLVER_SPX_FALSE OSICBC_DFLT_SOLVER_SYM_TRUE OSICBC_DFLT_SOLVER_SYM_FALSE OSICBC_DFLT_SOLVER_VOL_TRUE OSICBC_DFLT_SOLVER_VOL_FALSE OSICBC_DFLT_SOLVER_XPR_TRUE OSICBC_DFLT_SOLVER_XPR_FALSE coin_have_doxygen coin_ doxy_usedot coin_doxy_tagname coin_doxy_lognamecoin_doxy_tagfiles coin_doxy_excludes 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 build build_cpu build_vendor build_os ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion CBC_SVN_REV CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT COIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE MPICC CXXDEFS ADD_CXXFLAGS DBG_CXXFLAGS OPT_CXXFLAGS CXX CXXFLAGS ac_ct_CXX COIN_CXX_IS_CL_TRUE COIN_CXX_IS_CL_FALSE MPICXX EGREP LN_S 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 CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_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 ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS DEPENDENCY_LINKING_TRUE DEPENDENCY_LINKING_FALSE LT_LDFLAGS PKG_CONFIG ac_ct_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH COIN_PKG_CONFIG_PATH_UNINSTALLED COINDEPEND_LIBS COINDEPEND_CFLAGS COINDEPEND_DATA COINDEPEND_DEPENDENCIES COINDEPEND_LIBS_INSTALLED COINDEPEND_CFLAGS_INSTALLED COINDEPEND_DATA_INSTALLED CBCLIB_CFLAGS CBCLIB_LIBS CBCLIB_PCLIBS CBCLIB_PCREQUIRES CBCLIB_DEPENDENCIES CBCLIB_CFLAGS_INSTALLED CBCLIB_LIBS_INSTALLED CBCGENERIC_CFLAGS CBCGENERIC_LIBS CBCGENERIC_PCLIBS CBCGENERIC_PCREQUIRES CBCGENERIC_DEPENDENCIES CBCGENERIC_CFLAGS_INSTALLED CBCGENERIC_LIBS_INSTALLED COIN_HAS_COINDEPEND_TRUE COIN_HAS_COINDEPEND_FALSE CLP_LIBS CLP_CFLAGS CLP_DATA CLP_DEPENDENCIES CLP_LIBS_INSTALLED CLP_CFLAGS_INSTALLED CLP_DATA_INSTALLED COIN_HAS_CLP_TRUE COIN_HAS_CLP_FALSE OSITESTS_LIBS OSITESTS_CFLAGS OSITESTS_DATA OSITESTS_DEPENDENCIES OSITESTS_LIBS_INSTALLED OSITESTS_CFLAGS_INSTALLED OSITESTS_DATA_INSTALLED COIN_HAS_OSITESTS_TRUE COIN_HAS_OSITESTS_FALSE SAMPLE_LIBS SAMPLE_CFLAGS SAMPLE_DATA SAMPLE_DEPENDENCIES SAMPLE_LIBS_INSTALLED SAMPLE_CFLAGS_INSTALLED SAMPLE_DATA_INSTALLED COIN_HAS_SAMPLE_TRUE COIN_HAS_SAMPLE_FALSE NETLIB_LIBS NETLIB_CFLAGS NETLIB_DATA NETLIB_DEPENDENCIES NETLIB_LIBS_INSTALLED NETLIB_CFLAGS_INSTALLED NETLIB_DATA_INSTALLED COIN_HAS_NETLIB_TRUE COIN_HAS_NETLIB_FALSE MIPLIB3_LIBS MIPLIB3_CFLAGS MIPLIB3_DATA MIPLIB3_DEPENDENCIES MIPLIB3_LIBS_INSTALLED MIPLIB3_CFLAGS_INSTALLED MIPLIB3_DATA_INSTALLED COIN_HAS_MIPLIB3_TRUE COIN_HAS_MIPLIB3_FALSE DYLP_LIBS DYLP_CFLAGS DYLP_DATA DYLP_DEPENDENCIES DYLP_LIBS_INSTALLED DYLP_CFLAGS_INSTALLED DYLP_DATA_INSTALLED COIN_HAS_DYLP_TRUE COIN_HAS_DYLP_FALSE VOL_LIBS VOL_CFLAGS VOL_DATA VOL_DEPENDENCIES VOL_LIBS_INSTALLED VOL_CFLAGS_INSTALLED VOL_DATA_INSTALLED COIN_HAS_VOL_TRUE COIN_HAS_VOL_FALSE CPX_LIBS CPX_CFLAGS CPX_DATA CPX_DEPENDENCIES CPX_LIBS_INSTALLED CPX_CFLAGS_INSTALLED CPX_DATA_INSTALLED COIN_HAS_CPX_TRUE COIN_HAS_CPX_FALSE GLPK_LIBS GLPK_CFLAGS GLPK_DATA GLPK_DEPENDENCIES GLPK_LIBS_INSTALLED GLPK_CFLAGS_INSTALLED GLPK_DATA_INSTALLED COIN_HAS_GLPK_TRUE COIN_HAS_GLPK_FALSE GRB_LIBS GRB_CFLAGS GRB_DATA GRB_DEPENDENCIES GRB_LIBS_INSTALLED GRB_CFLAGS_INSTALLED GRB_DATA_INSTALLED COIN_HAS_GRB_TRUE COIN_HAS_GRB_FALSE MSK_LIBS MSK_CFLAGS MSK_DATA MSK_DEPENDENCIES MSK_LIBS_INSTALLED MSK_CFLAGS_INSTALLED MSK_DATA_INSTALLED COIN_HAS_MSK_TRUE COIN_HAS_MSK_FALSE SPX_LIBS SPX_CFLAGS SPX_DATA SPX_DEPENDENCIES SPX_LIBS_INSTALLED SPX_CFLAGS_INSTALLED SPX_DATA_INSTALLED COIN_HAS_SPX_TRUE COIN_HAS_SPX_FALSE XPR_LIBS XPR_CFLAGS XPR_DATA XPR_DEPENDENCIES XPR_LIBS_INSTALLED XPR_CFLAGS_INSTALLED XPR_DATA_INSTALLED COIN_HAS_XPR_TRUE COIN_HAS_XPR_FALSE ASL_LIBS ASL_CFLAGS ASL_DATA ASL_DEPENDENCIES ASL_LIBS_INSTALLED ASL_CFLAGS_INSTALLED ASL_DATA_INSTALLED COIN_HAS_ASL_TRUE COIN_HAS_ASL_FALSE NTYINCDIR NTYLIB COIN_HAS_NTY_TRUE COIN_HAS_NTY_FALSE CBC_BUILD_CBC_GENERIC_TRUE CBC_BUILD_CBC_GENERIC_FALSE OSICBC_DFLT_SOLVER_CLP_TRUE OSICBC_DFLT_SOLVER_CLP_FALSE OSICBC_DFLT_SOLVER_CPX_TRUE OSICBC_DFLT_SOLVER_CPX_FALSE OSICBC_DFLT_SOLVER_DYLP_TRUE OSICBC_DFLT_SOLVER_DYLP_FALSE OSICBC_DFLT_SOLVER_GLPK_TRUE OSICBC_DFLT_SOLVER_GLPK_FALSE OSICBC_DFLT_SOLVER_GRB_TRUE OSICBC_DFLT_SOLVER_GRB_FALSE OSICBC_DFLT_SOLVER_MSK_TRUE OSICBC_DFLT_SOLVER_MSK_FALSE OSICBC_DFLT_SOLVER_SPX_TRUE OSICBC_DFLT_SOLVER_SPX_FALSE OSICBC_DFLT_SOLVER_SYM_TRUE OSICBC_DFLT_SOLVER_SYM_FALSE OSICBC_DFLT_SOLVER_VOL_TRUE OSICBC_DFLT_SOLVER_VOL_FALSE OSICBC_DFLT_SOLVER_XPR_TRUE OSICBC_DFLT_SOLVER_XPR_FALSE coin_have_doxygen coin_have_latex coin_doxy_usedot coin_doxy_tagname coin_doxy_logname COIN_HAS_DOXYGEN_TRUE COIN_HAS_DOXYGEN_FALSE COIN_HAS_LATEX_TRUE COIN_HAS_LATEX_FALSE coin_doxy_tagfiles coin_doxy_excludes LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS' 476 476 ac_subst_files='' 477 477 … … 1095 1095 optimize for fast installation [default=yes] 1096 1096 --disable-libtool-lock avoid locking (might break parallel builds) 1097 --disable-dependency-linking 1098 disable linking library dependencies into shared 1099 libraries 1097 1100 --disable-pkg-config disable use of pkg-config (if available) 1098 1101 --disable-interpackage-dependencies … … 4090 4093 fi 4091 4094 4092 # correct the LD variable in a build with MS or intelcompiler4095 # correct the LD variable in a build with MS or Intel-windows compiler 4093 4096 case "$CXX" in 4094 4097 clang* ) ;; … … 4137 4140 ;; 4138 4141 *gcc*) 4139 4142 if test x"$enable_dependency_linking" = xyes; then 4140 4143 coin_disable_shared=no 4141 4144 else … … 5873 5876 *-*-irix6*) 5874 5877 # Find out which ABI we are using. 5875 echo '#line 587 5"configure"' > conftest.$ac_ext5878 echo '#line 5878 "configure"' > conftest.$ac_ext 5876 5879 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5877 5880 (eval $ac_compile) 2>&5 … … 7007 7010 7008 7011 # Provide some information about the compiler. 7009 echo "$as_me:70 09:" \7012 echo "$as_me:7012:" \ 7010 7013 "checking for Fortran 77 compiler version" >&5 7011 7014 ac_compiler=`set X $ac_compile; echo $2` … … 8074 8077 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8075 8078 -e 's:$: $lt_compiler_flag:'` 8076 (eval echo "\"\$as_me:807 6: $lt_compile\"" >&5)8079 (eval echo "\"\$as_me:8079: $lt_compile\"" >&5) 8077 8080 (eval "$lt_compile" 2>conftest.err) 8078 8081 ac_status=$? 8079 8082 cat conftest.err >&5 8080 echo "$as_me:808 0: \$? = $ac_status" >&58083 echo "$as_me:8083: \$? = $ac_status" >&5 8081 8084 if (exit $ac_status) && test -s "$ac_outfile"; then 8082 8085 # The compiler can only warn and ignore the option if not recognized … … 8342 8345 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8343 8346 -e 's:$: $lt_compiler_flag:'` 8344 (eval echo "\"\$as_me:834 4: $lt_compile\"" >&5)8347 (eval echo "\"\$as_me:8347: $lt_compile\"" >&5) 8345 8348 (eval "$lt_compile" 2>conftest.err) 8346 8349 ac_status=$? 8347 8350 cat conftest.err >&5 8348 echo "$as_me:83 48: \$? = $ac_status" >&58351 echo "$as_me:8351: \$? = $ac_status" >&5 8349 8352 if (exit $ac_status) && test -s "$ac_outfile"; then 8350 8353 # The compiler can only warn and ignore the option if not recognized … … 8446 8449 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8447 8450 -e 's:$: $lt_compiler_flag:'` 8448 (eval echo "\"\$as_me:84 48: $lt_compile\"" >&5)8451 (eval echo "\"\$as_me:8451: $lt_compile\"" >&5) 8449 8452 (eval "$lt_compile" 2>out/conftest.err) 8450 8453 ac_status=$? 8451 8454 cat out/conftest.err >&5 8452 echo "$as_me:845 2: \$? = $ac_status" >&58455 echo "$as_me:8455: \$? = $ac_status" >&5 8453 8456 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8454 8457 then … … 10791 10794 lt_status=$lt_dlunknown 10792 10795 cat > conftest.$ac_ext <<EOF 10793 #line 1079 3"configure"10796 #line 10796 "configure" 10794 10797 #include "confdefs.h" 10795 10798 … … 10891 10894 lt_status=$lt_dlunknown 10892 10895 cat > conftest.$ac_ext <<EOF 10893 #line 1089 3"configure"10896 #line 10896 "configure" 10894 10897 #include "confdefs.h" 10895 10898 … … 13235 13238 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13236 13239 -e 's:$: $lt_compiler_flag:'` 13237 (eval echo "\"\$as_me:132 37: $lt_compile\"" >&5)13240 (eval echo "\"\$as_me:13240: $lt_compile\"" >&5) 13238 13241 (eval "$lt_compile" 2>conftest.err) 13239 13242 ac_status=$? 13240 13243 cat conftest.err >&5 13241 echo "$as_me:1324 1: \$? = $ac_status" >&513244 echo "$as_me:13244: \$? = $ac_status" >&5 13242 13245 if (exit $ac_status) && test -s "$ac_outfile"; then 13243 13246 # The compiler can only warn and ignore the option if not recognized … … 13339 13342 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13340 13343 -e 's:$: $lt_compiler_flag:'` 13341 (eval echo "\"\$as_me:1334 1: $lt_compile\"" >&5)13344 (eval echo "\"\$as_me:13344: $lt_compile\"" >&5) 13342 13345 (eval "$lt_compile" 2>out/conftest.err) 13343 13346 ac_status=$? 13344 13347 cat out/conftest.err >&5 13345 echo "$as_me:1334 5: \$? = $ac_status" >&513348 echo "$as_me:13348: \$? = $ac_status" >&5 13346 13349 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13347 13350 then … … 14909 14912 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14910 14913 -e 's:$: $lt_compiler_flag:'` 14911 (eval echo "\"\$as_me:1491 1: $lt_compile\"" >&5)14914 (eval echo "\"\$as_me:14914: $lt_compile\"" >&5) 14912 14915 (eval "$lt_compile" 2>conftest.err) 14913 14916 ac_status=$? 14914 14917 cat conftest.err >&5 14915 echo "$as_me:1491 5: \$? = $ac_status" >&514918 echo "$as_me:14918: \$? = $ac_status" >&5 14916 14919 if (exit $ac_status) && test -s "$ac_outfile"; then 14917 14920 # The compiler can only warn and ignore the option if not recognized … … 15013 15016 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15014 15017 -e 's:$: $lt_compiler_flag:'` 15015 (eval echo "\"\$as_me:1501 5: $lt_compile\"" >&5)15018 (eval echo "\"\$as_me:15018: $lt_compile\"" >&5) 15016 15019 (eval "$lt_compile" 2>out/conftest.err) 15017 15020 ac_status=$? 15018 15021 cat out/conftest.err >&5 15019 echo "$as_me:150 19: \$? = $ac_status" >&515022 echo "$as_me:15022: \$? = $ac_status" >&5 15020 15023 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15021 15024 then … … 17220 17223 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17221 17224 -e 's:$: $lt_compiler_flag:'` 17222 (eval echo "\"\$as_me:1722 2: $lt_compile\"" >&5)17225 (eval echo "\"\$as_me:17225: $lt_compile\"" >&5) 17223 17226 (eval "$lt_compile" 2>conftest.err) 17224 17227 ac_status=$? 17225 17228 cat conftest.err >&5 17226 echo "$as_me:1722 6: \$? = $ac_status" >&517229 echo "$as_me:17229: \$? = $ac_status" >&5 17227 17230 if (exit $ac_status) && test -s "$ac_outfile"; then 17228 17231 # The compiler can only warn and ignore the option if not recognized … … 17488 17491 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17489 17492 -e 's:$: $lt_compiler_flag:'` 17490 (eval echo "\"\$as_me:1749 0: $lt_compile\"" >&5)17493 (eval echo "\"\$as_me:17493: $lt_compile\"" >&5) 17491 17494 (eval "$lt_compile" 2>conftest.err) 17492 17495 ac_status=$? 17493 17496 cat conftest.err >&5 17494 echo "$as_me:1749 4: \$? = $ac_status" >&517497 echo "$as_me:17497: \$? = $ac_status" >&5 17495 17498 if (exit $ac_status) && test -s "$ac_outfile"; then 17496 17499 # The compiler can only warn and ignore the option if not recognized … … 17592 17595 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17593 17596 -e 's:$: $lt_compiler_flag:'` 17594 (eval echo "\"\$as_me:1759 4: $lt_compile\"" >&5)17597 (eval echo "\"\$as_me:17597: $lt_compile\"" >&5) 17595 17598 (eval "$lt_compile" 2>out/conftest.err) 17596 17599 ac_status=$? 17597 17600 cat out/conftest.err >&5 17598 echo "$as_me:17 598: \$? = $ac_status" >&517601 echo "$as_me:17601: \$? = $ac_status" >&5 17599 17602 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17600 17603 then … … 20284 20287 *-mingw*) 20285 20288 CYGPATH_W=echo 20286 mydos2unix=20287 20289 ;; 20288 20290 esac … … 20488 20490 # On Cygwin and AIX, building DLLs doesn't work 20489 20491 dependency_linking=no 20490 if test x"$ enable_shared" = xyes; then20492 if test x"$coin_disable_shared" = xno; then 20491 20493 case $build in 20492 20494 *-cygwin* | *-mingw*) 20493 20495 case "$CC" in 20494 20496 clang* ) 20495 20497 dependency_linking=yes 20496 20498 ;; 20497 20499 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 20498 20500 dependency_linking=no 20499 20501 ;; 20500 20502 *gcc*) 20501 20503 dependency_linking=yes 20502 20504 ;; 20503 20505 *) 20504 20506 dependency_linking=yes 20505 20507 ;; 20506 20508 esac … … 30455 30457 fi 30456 30458 30459 # Extract the first word of "latex", so it can be a program name with args. 30460 set dummy latex; ac_word=$2 30461 echo "$as_me:$LINENO: checking for $ac_word" >&5 30462 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 30463 if test "${ac_cv_prog_coin_have_latex+set}" = set; then 30464 echo $ECHO_N "(cached) $ECHO_C" >&6 30465 else 30466 if test -n "$coin_have_latex"; then 30467 ac_cv_prog_coin_have_latex="$coin_have_latex" # Let the user override the test. 30468 else 30469 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 30470 for as_dir in $PATH 30471 do 30472 IFS=$as_save_IFS 30473 test -z "$as_dir" && as_dir=. 30474 for ac_exec_ext in '' $ac_executable_extensions; do 30475 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 30476 ac_cv_prog_coin_have_latex="yes" 30477 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 30478 break 2 30479 fi 30480 done 30481 done 30482 30483 test -z "$ac_cv_prog_coin_have_latex" && ac_cv_prog_coin_have_latex="no" 30484 fi 30485 fi 30486 coin_have_latex=$ac_cv_prog_coin_have_latex 30487 if test -n "$coin_have_latex"; then 30488 echo "$as_me:$LINENO: result: $coin_have_latex" >&5 30489 echo "${ECHO_T}$coin_have_latex" >&6 30490 else 30491 echo "$as_me:$LINENO: result: no" >&5 30492 echo "${ECHO_T}no" >&6 30493 fi 30494 30457 30495 30458 30496 # Look for the dot tool from the graphviz package, unless the user has … … 30519 30557 30520 30558 30559 30560 if test $coin_have_doxygen = yes; then 30561 COIN_HAS_DOXYGEN_TRUE= 30562 COIN_HAS_DOXYGEN_FALSE='#' 30563 else 30564 COIN_HAS_DOXYGEN_TRUE='#' 30565 COIN_HAS_DOXYGEN_FALSE= 30566 fi 30567 30568 30569 30570 if test $coin_have_latex = yes; then 30571 COIN_HAS_LATEX_TRUE= 30572 COIN_HAS_LATEX_FALSE='#' 30573 else 30574 COIN_HAS_LATEX_TRUE='#' 30575 COIN_HAS_LATEX_FALSE= 30576 fi 30577 30578 30521 30579 # Process the list of project names and massage them into possible doxygen 30522 30580 # doc'n directories. Prefer 1) classic external, source processed using … … 30538 30596 doxytag=${lc_proj}_doxy.tag 30539 30597 doxyfound=no 30540 for chkProj in $coin_subdirs ; do 30541 if test "$chkProj" = "$proj" ; then 30542 # proj will be configured, hence doxydoc present in build tree 30543 doxysrcdir="${srcdir}/${proj}" 30544 # AC_MSG_NOTICE([Considering $doxysrcdir (base)]) 30545 if test -d "$doxysrcdir" ; then 30546 # with a doxydoc directory? 30547 doxydir="$doxysrcdir/doxydoc" 30548 # AC_MSG_NOTICE([Considering $doxydir (base)]) 30549 # AC_MSG_NOTICE([Subdirs: $coin_subdirs)]) 30550 if test -d "$doxydir" ; then 30551 # use tag file; don't process source 30552 eval doxydir="`pwd`/${proj}/doxydoc" 30553 coin_doxy_tagfiles="$coin_doxy_tagfiles $doxydir/$doxytag=$doxydir/html" 30554 echo "$as_me:$LINENO: result: $doxydir (tag)" >&5 30598 # proj will be configured, hence doxydoc present in build tree 30599 doxysrcdir="${srcdir}/../${proj}" 30600 # AC_MSG_NOTICE([Considering $doxysrcdir (base)]) 30601 if test -d "$doxysrcdir" ; then 30602 # with a doxydoc directory? 30603 doxydir="$doxysrcdir/doxydoc" 30604 # AC_MSG_NOTICE([Considering $doxydir (base)]) 30605 # AC_MSG_NOTICE([Subdirs: $coin_subdirs)]) 30606 if test -d "$doxydir" ; then 30607 # use tag file; don't process source 30608 doxydir="../${proj}/doxydoc" 30609 coin_doxy_tagfiles="$coin_doxy_tagfiles $doxydir/$doxytag=../../$doxydir/html" 30610 echo "$as_me:$LINENO: result: $doxydir (tag)" >&5 30555 30611 echo "${ECHO_T}$doxydir (tag)" >&6 30556 30557 30558 30559 30612 coin_doxy_excludes="$coin_doxy_excludes */${proj}" 30613 else 30614 # will process the source -- nothing further to be done here 30615 echo "$as_me:$LINENO: result: $doxysrcdir (src)" >&5 30560 30616 echo "${ECHO_T}$doxysrcdir (src)" >&6 30561 fi30562 doxyfound=yes30563 fi30564 30617 fi 30565 done 30618 doxyfound=yes 30619 fi 30566 30620 # Not built, fall back to installed tag file 30567 30621 if test $doxyfound = no ; then … … 31109 31163 Usually this means the macro was only invoked conditionally." >&5 31110 31164 echo "$as_me: error: conditional \"OSICBC_DFLT_SOLVER_XPR\" was never defined. 31165 Usually this means the macro was only invoked conditionally." >&2;} 31166 { (exit 1); exit 1; }; } 31167 fi 31168 if test -z "${COIN_HAS_DOXYGEN_TRUE}" && test -z "${COIN_HAS_DOXYGEN_FALSE}"; then 31169 { { echo "$as_me:$LINENO: error: conditional \"COIN_HAS_DOXYGEN\" was never defined. 31170 Usually this means the macro was only invoked conditionally." >&5 31171 echo "$as_me: error: conditional \"COIN_HAS_DOXYGEN\" was never defined. 31172 Usually this means the macro was only invoked conditionally." >&2;} 31173 { (exit 1); exit 1; }; } 31174 fi 31175 if test -z "${COIN_HAS_LATEX_TRUE}" && test -z "${COIN_HAS_LATEX_FALSE}"; then 31176 { { echo "$as_me:$LINENO: error: conditional \"COIN_HAS_LATEX\" was never defined. 31177 Usually this means the macro was only invoked conditionally." >&5 31178 echo "$as_me: error: conditional \"COIN_HAS_LATEX\" was never defined. 31111 31179 Usually this means the macro was only invoked conditionally." >&2;} 31112 31180 { (exit 1); exit 1; }; } … … 31941 32009 s,@OSICBC_DFLT_SOLVER_XPR_FALSE@,$OSICBC_DFLT_SOLVER_XPR_FALSE,;t t 31942 32010 s,@coin_have_doxygen@,$coin_have_doxygen,;t t 32011 s,@coin_have_latex@,$coin_have_latex,;t t 31943 32012 s,@coin_doxy_usedot@,$coin_doxy_usedot,;t t 31944 32013 s,@coin_doxy_tagname@,$coin_doxy_tagname,;t t 31945 32014 s,@coin_doxy_logname@,$coin_doxy_logname,;t t 32015 s,@COIN_HAS_DOXYGEN_TRUE@,$COIN_HAS_DOXYGEN_TRUE,;t t 32016 s,@COIN_HAS_DOXYGEN_FALSE@,$COIN_HAS_DOXYGEN_FALSE,;t t 32017 s,@COIN_HAS_LATEX_TRUE@,$COIN_HAS_LATEX_TRUE,;t t 32018 s,@COIN_HAS_LATEX_FALSE@,$COIN_HAS_LATEX_FALSE,;t t 31946 32019 s,@coin_doxy_tagfiles@,$coin_doxy_tagfiles,;t t 31947 32020 s,@coin_doxy_excludes@,$coin_doxy_excludes,;t t -
stable/2.9/Cbc/src/Makefile.in
r2263 r2268 250 250 COIN_HAS_CPX_FALSE = @COIN_HAS_CPX_FALSE@ 251 251 COIN_HAS_CPX_TRUE = @COIN_HAS_CPX_TRUE@ 252 COIN_HAS_DOXYGEN_FALSE = @COIN_HAS_DOXYGEN_FALSE@ 253 COIN_HAS_DOXYGEN_TRUE = @COIN_HAS_DOXYGEN_TRUE@ 252 254 COIN_HAS_DYLP_FALSE = @COIN_HAS_DYLP_FALSE@ 253 255 COIN_HAS_DYLP_TRUE = @COIN_HAS_DYLP_TRUE@ … … 256 258 COIN_HAS_GRB_FALSE = @COIN_HAS_GRB_FALSE@ 257 259 COIN_HAS_GRB_TRUE = @COIN_HAS_GRB_TRUE@ 260 COIN_HAS_LATEX_FALSE = @COIN_HAS_LATEX_FALSE@ 261 COIN_HAS_LATEX_TRUE = @COIN_HAS_LATEX_TRUE@ 258 262 COIN_HAS_MIPLIB3_FALSE = @COIN_HAS_MIPLIB3_FALSE@ 259 263 COIN_HAS_MIPLIB3_TRUE = @COIN_HAS_MIPLIB3_TRUE@ … … 479 483 coin_doxy_usedot = @coin_doxy_usedot@ 480 484 coin_have_doxygen = @coin_have_doxygen@ 485 coin_have_latex = @coin_have_latex@ 481 486 datadir = @datadir@ 482 487 exec_prefix = @exec_prefix@ -
stable/2.9/Cbc/src/OsiCbc/Makefile.in
r2263 r2268 175 175 COIN_HAS_CPX_FALSE = @COIN_HAS_CPX_FALSE@ 176 176 COIN_HAS_CPX_TRUE = @COIN_HAS_CPX_TRUE@ 177 COIN_HAS_DOXYGEN_FALSE = @COIN_HAS_DOXYGEN_FALSE@ 178 COIN_HAS_DOXYGEN_TRUE = @COIN_HAS_DOXYGEN_TRUE@ 177 179 COIN_HAS_DYLP_FALSE = @COIN_HAS_DYLP_FALSE@ 178 180 COIN_HAS_DYLP_TRUE = @COIN_HAS_DYLP_TRUE@ … … 181 183 COIN_HAS_GRB_FALSE = @COIN_HAS_GRB_FALSE@ 182 184 COIN_HAS_GRB_TRUE = @COIN_HAS_GRB_TRUE@ 185 COIN_HAS_LATEX_FALSE = @COIN_HAS_LATEX_FALSE@ 186 COIN_HAS_LATEX_TRUE = @COIN_HAS_LATEX_TRUE@ 183 187 COIN_HAS_MIPLIB3_FALSE = @COIN_HAS_MIPLIB3_FALSE@ 184 188 COIN_HAS_MIPLIB3_TRUE = @COIN_HAS_MIPLIB3_TRUE@ … … 404 408 coin_doxy_usedot = @coin_doxy_usedot@ 405 409 coin_have_doxygen = @coin_have_doxygen@ 410 coin_have_latex = @coin_have_latex@ 406 411 datadir = @datadir@ 407 412 exec_prefix = @exec_prefix@ -
stable/2.9/Cbc/test/Makefile.in
r2263 r2268 169 169 COIN_HAS_CPX_FALSE = @COIN_HAS_CPX_FALSE@ 170 170 COIN_HAS_CPX_TRUE = @COIN_HAS_CPX_TRUE@ 171 COIN_HAS_DOXYGEN_FALSE = @COIN_HAS_DOXYGEN_FALSE@ 172 COIN_HAS_DOXYGEN_TRUE = @COIN_HAS_DOXYGEN_TRUE@ 171 173 COIN_HAS_DYLP_FALSE = @COIN_HAS_DYLP_FALSE@ 172 174 COIN_HAS_DYLP_TRUE = @COIN_HAS_DYLP_TRUE@ … … 175 177 COIN_HAS_GRB_FALSE = @COIN_HAS_GRB_FALSE@ 176 178 COIN_HAS_GRB_TRUE = @COIN_HAS_GRB_TRUE@ 179 COIN_HAS_LATEX_FALSE = @COIN_HAS_LATEX_FALSE@ 180 COIN_HAS_LATEX_TRUE = @COIN_HAS_LATEX_TRUE@ 177 181 COIN_HAS_MIPLIB3_FALSE = @COIN_HAS_MIPLIB3_FALSE@ 178 182 COIN_HAS_MIPLIB3_TRUE = @COIN_HAS_MIPLIB3_TRUE@ … … 398 402 coin_doxy_usedot = @coin_doxy_usedot@ 399 403 coin_have_doxygen = @coin_have_doxygen@ 404 coin_have_latex = @coin_have_latex@ 400 405 datadir = @datadir@ 401 406 exec_prefix = @exec_prefix@ -
stable/2.9/Makefile.in
r2263 r2268 114 114 COIN_CXX_IS_CL_FALSE = @COIN_CXX_IS_CL_FALSE@ 115 115 COIN_CXX_IS_CL_TRUE = @COIN_CXX_IS_CL_TRUE@ 116 COIN_HAS_DOXYGEN_FALSE = @COIN_HAS_DOXYGEN_FALSE@ 117 COIN_HAS_DOXYGEN_TRUE = @COIN_HAS_DOXYGEN_TRUE@ 118 COIN_HAS_LATEX_FALSE = @COIN_HAS_LATEX_FALSE@ 119 COIN_HAS_LATEX_TRUE = @COIN_HAS_LATEX_TRUE@ 116 120 COIN_SKIP_PROJECTS = @COIN_SKIP_PROJECTS@ 117 121 CPP = @CPP@ … … 211 215 coin_doxy_usedot = @coin_doxy_usedot@ 212 216 coin_have_doxygen = @coin_have_doxygen@ 217 coin_have_latex = @coin_have_latex@ 213 218 datadir = @datadir@ 214 219 exec_prefix = @exec_prefix@ … … 256 261 DISTCLEANFILES = coin_subdirs.txt $(am__append_2) \ 257 262 $(VPATH_DISTCLEANFILES) 258 DocFiles = README AUTHORS LICENSE 263 DocFiles = README AUTHORS LICENSE 259 264 DocInstallDir = $(datadir)/coin/doc/$(PACKAGE_NAME) 265 COIN_HAS_DOXYGEN = @COIN_HAS_DOXYGEN_TRUE@TRUE 266 COIN_HAS_LATEX = @COIN_HAS_LATEX_TRUE@TRUE 260 267 all: all-recursive 261 268 … … 733 740 .PHONY: test unitTest tests unitTests doxydoc 734 741 735 install-doc: $(DocFiles) 742 doxygen-docs: 743 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 744 if test -d "doxydoc/"; then \ 745 doxygen doxydoc/doxygen.conf;\ 746 fi;\ 747 fi 748 749 pdf-doxygen-docs: doxygen-docs 750 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 751 if test -d "doxydoc/latex"; then \ 752 if test "$(COIN_HAS_LATEX)" = TRUE; then \ 753 cd doxydoc/latex;\ 754 $(MAKE) pdf;\ 755 cd -;\ 756 fi;\ 757 fi;\ 758 fi 759 760 clean-doxygen-docs: 761 if test -d "doxydoc/"; then \ 762 cd doxydoc ;\ 763 rm -rf html latex *.log *.tag;\ 764 fi 765 766 install-doxygen-docs: doxygen-docs 767 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 768 if test -d "doxydoc/"; then \ 769 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc"; \ 770 $(INSTALL_DATA) @coin_doxy_tagname@ "$(DESTDIR)$(DocInstallDir)/@coin_doxy_tagname@";\ 771 if test -f "doxydoc/latex/refman.pdf"; then \ 772 $(INSTALL_DATA) doxydoc/latex/refman.pdf "$(DESTDIR)$(DocInstallDir)";\ 773 fi;\ 774 if test -d "doxydoc/html"; then \ 775 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/search/" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc/search/"; \ 776 $(INSTALL_DATA) doxydoc/html/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc";\ 777 $(INSTALL_DATA) doxydoc/html/search/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc/search";\ 778 fi;\ 779 fi;\ 780 fi 781 782 uninstall-doxygen-docs: 783 if test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/"; then \ 784 rm -rf "$(DESTDIR)$(DocInstallDir)/doxydoc/"; \ 785 fi 786 if test -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; then \ 787 rm -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; \ 788 fi 789 790 all-doxygen-docs: 791 for dir in $(subdirs) ; do \ 792 do_project=true;\ 793 for proj in $(COIN_SKIP_DOXYGEN); do\ 794 if test $$dir = $$proj; then\ 795 do_project=false;\ 796 fi;\ 797 done;\ 798 if test -r $$dir/doxydoc & $$do_project = true; then \ 799 (cd $$dir ; $(MAKE) doxygen-docs) \ 800 fi ; \ 801 done ; 802 803 clean-all-doxygen-docs: 804 for dir in $(subdirs) ; do \ 805 if test -r $$dir/doxydoc ; then \ 806 (cd $$dir ; $(MAKE) clean-doxygen-docs) \ 807 fi ; \ 808 done ; 809 810 install-all-doxygen-docs: all-doxygen-docs 811 for dir in $(subdirs) ; do \ 812 do_project=true;\ 813 for proj in $(COIN_SKIP_DOXYGEN); do\ 814 if test $$dir = $$proj; then\ 815 do_project=false;\ 816 fi;\ 817 done;\ 818 if test -r $$dir/doxydoc & $$do_project = true; then \ 819 (cd $$dir ; $(MAKE) install-doxygen-docs) \ 820 fi ; \ 821 done ; 822 823 uninstall-all-doxygen-docs: 824 for dir in $(subdirs) ; do \ 825 if test -r $$dir/doxydoc ; then \ 826 (cd $$dir ; $(MAKE) uninstall-doxygen-docs) \ 827 fi ; \ 828 done ; 829 830 install-doc: $(DocFiles) 736 831 test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)" 737 832 for file in $(DocFiles); do \ 738 833 if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \ 739 834 if test -f "$$dir$$file"; then $(INSTALL_DATA) "$$dir$$file" "$(DESTDIR)$(DocInstallDir)/$$file"; fi; \ 740 done 835 done 741 836 742 837 uninstall-doc: -
stable/2.9/configure
r2263 r2268 490 490 ac_subdirs_all="$ac_subdirs_all Cgl" 491 491 ac_subdirs_all="$ac_subdirs_all Cbc" 492 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 build build_cpu build_vendor build_os CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT COIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE MPICC CXXDEFS ADD_CXXFLAGS DBG_CXXFLAGS OPT_CXXFLAGS CXX CXXFLAGS ac_ct_CXX COIN_CXX_IS_CL_TRUE COIN_CXX_IS_CL_FALSE MPICXX ADD_FFLAGS DBG_FFLAGS OPT_FFLAGS F77 ac_ct_F77 FFLAGS MPIF77 EGREP LN_S 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 CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_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 ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS DEPENDENCY_LINKING_TRUE DEPENDENCY_LINKING_FALSE LT_LDFLAGS COIN_SKIP_PROJECTS subdirs coin_have_doxygen coin_ doxy_usedot coin_doxy_tagname coin_doxy_lognamecoin_doxy_tagfiles coin_doxy_excludes LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS'492 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 build build_cpu build_vendor build_os CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT COIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE MPICC CXXDEFS ADD_CXXFLAGS DBG_CXXFLAGS OPT_CXXFLAGS CXX CXXFLAGS ac_ct_CXX COIN_CXX_IS_CL_TRUE COIN_CXX_IS_CL_FALSE MPICXX ADD_FFLAGS DBG_FFLAGS OPT_FFLAGS F77 ac_ct_F77 FFLAGS MPIF77 EGREP LN_S 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 CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_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 ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS DEPENDENCY_LINKING_TRUE DEPENDENCY_LINKING_FALSE LT_LDFLAGS COIN_SKIP_PROJECTS subdirs coin_have_doxygen coin_have_latex coin_doxy_usedot coin_doxy_tagname coin_doxy_logname COIN_HAS_DOXYGEN_TRUE COIN_HAS_DOXYGEN_FALSE COIN_HAS_LATEX_TRUE COIN_HAS_LATEX_FALSE coin_doxy_tagfiles coin_doxy_excludes LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS' 493 493 ac_subst_files='' 494 494 … … 1127 1127 optimize for fast installation [default=yes] 1128 1128 --disable-libtool-lock avoid locking (might break parallel builds) 1129 --disable-dependency-linking 1130 disable linking library dependencies into shared 1131 libraries 1129 1132 1130 1133 Optional Packages: … … 3942 3945 fi 3943 3946 3944 # correct the LD variable in a build with MS or intelcompiler3947 # correct the LD variable in a build with MS or Intel-windows compiler 3945 3948 case "$CXX" in 3946 3949 clang* ) ;; … … 3962 3965 *-cygwin* | *-mingw*) 3963 3966 if test "$enable_msvc" = yes ; then 3964 coin_f77_comps="ifort fl32 compile_f2c gfortran g95 g77"3967 coin_f77_comps="ifort fl32 compile_f2c" 3965 3968 else 3966 3969 coin_f77_comps="gfortran ifort g95 g77 fl32 compile_f2c" … … 4186 4189 4187 4190 # Provide some information about the compiler. 4188 echo "$as_me:41 88:" \4191 echo "$as_me:4191:" \ 4189 4192 "checking for Fortran 77 compiler version" >&5 4190 4193 ac_compiler=`set X $ac_compile; echo $2` … … 4628 4631 4629 4632 # correct the LD variable if we use the intel fortran compiler in windows 4630 case "$F77" in 4631 ifort* | */ifort* | IFORT* | */IFORT*) 4632 LD=link 4633 ;; 4633 case $build in 4634 *-cygwin* | *-mingw*) 4635 case "$F77" in 4636 ifort* | */ifort* | IFORT* | */IFORT*) 4637 LD=link 4638 ;; 4639 esac 4640 ;; 4634 4641 esac 4635 4642 … … 4674 4681 ;; 4675 4682 *gcc*) 4676 4683 if test x"$enable_dependency_linking" = xyes; then 4677 4684 coin_disable_shared=no 4678 4685 else … … 6410 6417 *-*-irix6*) 6411 6418 # Find out which ABI we are using. 6412 echo '#line 641 2"configure"' > conftest.$ac_ext6419 echo '#line 6419 "configure"' > conftest.$ac_ext 6413 6420 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6414 6421 (eval $ac_compile) 2>&5 … … 8374 8381 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8375 8382 -e 's:$: $lt_compiler_flag:'` 8376 (eval echo "\"\$as_me:83 76: $lt_compile\"" >&5)8383 (eval echo "\"\$as_me:8383: $lt_compile\"" >&5) 8377 8384 (eval "$lt_compile" 2>conftest.err) 8378 8385 ac_status=$? 8379 8386 cat conftest.err >&5 8380 echo "$as_me:838 0: \$? = $ac_status" >&58387 echo "$as_me:8387: \$? = $ac_status" >&5 8381 8388 if (exit $ac_status) && test -s "$ac_outfile"; then 8382 8389 # The compiler can only warn and ignore the option if not recognized … … 8642 8649 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8643 8650 -e 's:$: $lt_compiler_flag:'` 8644 (eval echo "\"\$as_me:86 44: $lt_compile\"" >&5)8651 (eval echo "\"\$as_me:8651: $lt_compile\"" >&5) 8645 8652 (eval "$lt_compile" 2>conftest.err) 8646 8653 ac_status=$? 8647 8654 cat conftest.err >&5 8648 echo "$as_me:86 48: \$? = $ac_status" >&58655 echo "$as_me:8655: \$? = $ac_status" >&5 8649 8656 if (exit $ac_status) && test -s "$ac_outfile"; then 8650 8657 # The compiler can only warn and ignore the option if not recognized … … 8746 8753 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8747 8754 -e 's:$: $lt_compiler_flag:'` 8748 (eval echo "\"\$as_me:87 48: $lt_compile\"" >&5)8755 (eval echo "\"\$as_me:8755: $lt_compile\"" >&5) 8749 8756 (eval "$lt_compile" 2>out/conftest.err) 8750 8757 ac_status=$? 8751 8758 cat out/conftest.err >&5 8752 echo "$as_me:875 2: \$? = $ac_status" >&58759 echo "$as_me:8759: \$? = $ac_status" >&5 8753 8760 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8754 8761 then … … 11091 11098 lt_status=$lt_dlunknown 11092 11099 cat > conftest.$ac_ext <<EOF 11093 #line 11 093"configure"11100 #line 11100 "configure" 11094 11101 #include "confdefs.h" 11095 11102 … … 11191 11198 lt_status=$lt_dlunknown 11192 11199 cat > conftest.$ac_ext <<EOF 11193 #line 11 193"configure"11200 #line 11200 "configure" 11194 11201 #include "confdefs.h" 11195 11202 … … 13535 13542 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13536 13543 -e 's:$: $lt_compiler_flag:'` 13537 (eval echo "\"\$as_me:135 37: $lt_compile\"" >&5)13544 (eval echo "\"\$as_me:13544: $lt_compile\"" >&5) 13538 13545 (eval "$lt_compile" 2>conftest.err) 13539 13546 ac_status=$? 13540 13547 cat conftest.err >&5 13541 echo "$as_me:1354 1: \$? = $ac_status" >&513548 echo "$as_me:13548: \$? = $ac_status" >&5 13542 13549 if (exit $ac_status) && test -s "$ac_outfile"; then 13543 13550 # The compiler can only warn and ignore the option if not recognized … … 13639 13646 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13640 13647 -e 's:$: $lt_compiler_flag:'` 13641 (eval echo "\"\$as_me:1364 1: $lt_compile\"" >&5)13648 (eval echo "\"\$as_me:13648: $lt_compile\"" >&5) 13642 13649 (eval "$lt_compile" 2>out/conftest.err) 13643 13650 ac_status=$? 13644 13651 cat out/conftest.err >&5 13645 echo "$as_me:136 45: \$? = $ac_status" >&513652 echo "$as_me:13652: \$? = $ac_status" >&5 13646 13653 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13647 13654 then … … 15209 15216 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15210 15217 -e 's:$: $lt_compiler_flag:'` 15211 (eval echo "\"\$as_me:1521 1: $lt_compile\"" >&5)15218 (eval echo "\"\$as_me:15218: $lt_compile\"" >&5) 15212 15219 (eval "$lt_compile" 2>conftest.err) 15213 15220 ac_status=$? 15214 15221 cat conftest.err >&5 15215 echo "$as_me:152 15: \$? = $ac_status" >&515222 echo "$as_me:15222: \$? = $ac_status" >&5 15216 15223 if (exit $ac_status) && test -s "$ac_outfile"; then 15217 15224 # The compiler can only warn and ignore the option if not recognized … … 15313 15320 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15314 15321 -e 's:$: $lt_compiler_flag:'` 15315 (eval echo "\"\$as_me:153 15: $lt_compile\"" >&5)15322 (eval echo "\"\$as_me:15322: $lt_compile\"" >&5) 15316 15323 (eval "$lt_compile" 2>out/conftest.err) 15317 15324 ac_status=$? 15318 15325 cat out/conftest.err >&5 15319 echo "$as_me:153 19: \$? = $ac_status" >&515326 echo "$as_me:15326: \$? = $ac_status" >&5 15320 15327 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15321 15328 then … … 17520 17527 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17521 17528 -e 's:$: $lt_compiler_flag:'` 17522 (eval echo "\"\$as_me:1752 2: $lt_compile\"" >&5)17529 (eval echo "\"\$as_me:17529: $lt_compile\"" >&5) 17523 17530 (eval "$lt_compile" 2>conftest.err) 17524 17531 ac_status=$? 17525 17532 cat conftest.err >&5 17526 echo "$as_me:175 26: \$? = $ac_status" >&517533 echo "$as_me:17533: \$? = $ac_status" >&5 17527 17534 if (exit $ac_status) && test -s "$ac_outfile"; then 17528 17535 # The compiler can only warn and ignore the option if not recognized … … 17788 17795 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17789 17796 -e 's:$: $lt_compiler_flag:'` 17790 (eval echo "\"\$as_me:1779 0: $lt_compile\"" >&5)17797 (eval echo "\"\$as_me:17797: $lt_compile\"" >&5) 17791 17798 (eval "$lt_compile" 2>conftest.err) 17792 17799 ac_status=$? 17793 17800 cat conftest.err >&5 17794 echo "$as_me:17 794: \$? = $ac_status" >&517801 echo "$as_me:17801: \$? = $ac_status" >&5 17795 17802 if (exit $ac_status) && test -s "$ac_outfile"; then 17796 17803 # The compiler can only warn and ignore the option if not recognized … … 17892 17899 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17893 17900 -e 's:$: $lt_compiler_flag:'` 17894 (eval echo "\"\$as_me:17 894: $lt_compile\"" >&5)17901 (eval echo "\"\$as_me:17901: $lt_compile\"" >&5) 17895 17902 (eval "$lt_compile" 2>out/conftest.err) 17896 17903 ac_status=$? 17897 17904 cat out/conftest.err >&5 17898 echo "$as_me:17 898: \$? = $ac_status" >&517905 echo "$as_me:17905: \$? = $ac_status" >&5 17899 17906 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17900 17907 then … … 20584 20591 *-mingw*) 20585 20592 CYGPATH_W=echo 20586 mydos2unix=20587 20593 ;; 20588 20594 esac … … 20788 20794 # On Cygwin and AIX, building DLLs doesn't work 20789 20795 dependency_linking=no 20790 if test x"$ enable_shared" = xyes; then20796 if test x"$coin_disable_shared" = xno; then 20791 20797 case $build in 20792 20798 *-cygwin* | *-mingw*) 20793 20799 case "$CC" in 20794 20800 clang* ) 20795 20801 dependency_linking=yes 20796 20802 ;; 20797 20803 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 20798 20804 dependency_linking=no 20799 20805 ;; 20800 20806 *gcc*) 20801 20807 dependency_linking=yes 20802 20808 ;; 20803 20809 *) 20804 20810 dependency_linking=yes 20805 20811 ;; 20806 20812 esac … … 22810 22816 fi 22811 22817 22818 # Extract the first word of "latex", so it can be a program name with args. 22819 set dummy latex; ac_word=$2 22820 echo "$as_me:$LINENO: checking for $ac_word" >&5 22821 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 22822 if test "${ac_cv_prog_coin_have_latex+set}" = set; then 22823 echo $ECHO_N "(cached) $ECHO_C" >&6 22824 else 22825 if test -n "$coin_have_latex"; then 22826 ac_cv_prog_coin_have_latex="$coin_have_latex" # Let the user override the test. 22827 else 22828 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 22829 for as_dir in $PATH 22830 do 22831 IFS=$as_save_IFS 22832 test -z "$as_dir" && as_dir=. 22833 for ac_exec_ext in '' $ac_executable_extensions; do 22834 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 22835 ac_cv_prog_coin_have_latex="yes" 22836 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 22837 break 2 22838 fi 22839 done 22840 done 22841 22842 test -z "$ac_cv_prog_coin_have_latex" && ac_cv_prog_coin_have_latex="no" 22843 fi 22844 fi 22845 coin_have_latex=$ac_cv_prog_coin_have_latex 22846 if test -n "$coin_have_latex"; then 22847 echo "$as_me:$LINENO: result: $coin_have_latex" >&5 22848 echo "${ECHO_T}$coin_have_latex" >&6 22849 else 22850 echo "$as_me:$LINENO: result: no" >&5 22851 echo "${ECHO_T}no" >&6 22852 fi 22853 22812 22854 22813 22855 # Look for the dot tool from the graphviz package, unless the user has … … 22874 22916 22875 22917 22918 22919 if test $coin_have_doxygen = yes; then 22920 COIN_HAS_DOXYGEN_TRUE= 22921 COIN_HAS_DOXYGEN_FALSE='#' 22922 else 22923 COIN_HAS_DOXYGEN_TRUE='#' 22924 COIN_HAS_DOXYGEN_FALSE= 22925 fi 22926 22927 22928 22929 if test $coin_have_latex = yes; then 22930 COIN_HAS_LATEX_TRUE= 22931 COIN_HAS_LATEX_FALSE='#' 22932 else 22933 COIN_HAS_LATEX_TRUE='#' 22934 COIN_HAS_LATEX_FALSE= 22935 fi 22936 22937 22876 22938 # Process the list of project names and massage them into possible doxygen 22877 22939 # doc'n directories. Prefer 1) classic external, source processed using … … 22893 22955 doxytag=${lc_proj}_doxy.tag 22894 22956 doxyfound=no 22895 for chkProj in $coin_subdirs ; do 22896 if test "$chkProj" = "$proj" ; then 22897 # proj will be configured, hence doxydoc present in build tree 22898 doxysrcdir="${srcdir}/${proj}" 22899 # AC_MSG_NOTICE([Considering $doxysrcdir (base)]) 22900 if test -d "$doxysrcdir" ; then 22901 # with a doxydoc directory? 22902 doxydir="$doxysrcdir/doxydoc" 22903 # AC_MSG_NOTICE([Considering $doxydir (base)]) 22904 # AC_MSG_NOTICE([Subdirs: $coin_subdirs)]) 22905 if test -d "$doxydir" ; then 22906 # use tag file; don't process source 22907 eval doxydir="`pwd`/${proj}/doxydoc" 22908 coin_doxy_tagfiles="$coin_doxy_tagfiles $doxydir/$doxytag=$doxydir/html" 22909 echo "$as_me:$LINENO: result: $doxydir (tag)" >&5 22957 # proj will be configured, hence doxydoc present in build tree 22958 doxysrcdir="${srcdir}/../${proj}" 22959 # AC_MSG_NOTICE([Considering $doxysrcdir (base)]) 22960 if test -d "$doxysrcdir" ; then 22961 # with a doxydoc directory? 22962 doxydir="$doxysrcdir/doxydoc" 22963 # AC_MSG_NOTICE([Considering $doxydir (base)]) 22964 # AC_MSG_NOTICE([Subdirs: $coin_subdirs)]) 22965 if test -d "$doxydir" ; then 22966 # use tag file; don't process source 22967 doxydir="../${proj}/doxydoc" 22968 coin_doxy_tagfiles="$coin_doxy_tagfiles $doxydir/$doxytag=../../$doxydir/html" 22969 echo "$as_me:$LINENO: result: $doxydir (tag)" >&5 22910 22970 echo "${ECHO_T}$doxydir (tag)" >&6 22911 22912 22913 22914 22971 coin_doxy_excludes="$coin_doxy_excludes */${proj}" 22972 else 22973 # will process the source -- nothing further to be done here 22974 echo "$as_me:$LINENO: result: $doxysrcdir (src)" >&5 22915 22975 echo "${ECHO_T}$doxysrcdir (src)" >&6 22916 fi22917 doxyfound=yes22918 fi22919 22976 fi 22920 done 22977 doxyfound=yes 22978 fi 22921 22979 # Not built, fall back to installed tag file 22922 22980 if test $doxyfound = no ; then … … 23183 23241 Usually this means the macro was only invoked conditionally." >&5 23184 23242 echo "$as_me: error: conditional \"DEPENDENCY_LINKING\" was never defined. 23243 Usually this means the macro was only invoked conditionally." >&2;} 23244 { (exit 1); exit 1; }; } 23245 fi 23246 if test -z "${COIN_HAS_DOXYGEN_TRUE}" && test -z "${COIN_HAS_DOXYGEN_FALSE}"; then 23247 { { echo "$as_me:$LINENO: error: conditional \"COIN_HAS_DOXYGEN\" was never defined. 23248 Usually this means the macro was only invoked conditionally." >&5 23249 echo "$as_me: error: conditional \"COIN_HAS_DOXYGEN\" was never defined. 23250 Usually this means the macro was only invoked conditionally." >&2;} 23251 { (exit 1); exit 1; }; } 23252 fi 23253 if test -z "${COIN_HAS_LATEX_TRUE}" && test -z "${COIN_HAS_LATEX_FALSE}"; then 23254 { { echo "$as_me:$LINENO: error: conditional \"COIN_HAS_LATEX\" was never defined. 23255 Usually this means the macro was only invoked conditionally." >&5 23256 echo "$as_me: error: conditional \"COIN_HAS_LATEX\" was never defined. 23185 23257 Usually this means the macro was only invoked conditionally." >&2;} 23186 23258 { (exit 1); exit 1; }; } … … 23820 23892 s,@subdirs@,$subdirs,;t t 23821 23893 s,@coin_have_doxygen@,$coin_have_doxygen,;t t 23894 s,@coin_have_latex@,$coin_have_latex,;t t 23822 23895 s,@coin_doxy_usedot@,$coin_doxy_usedot,;t t 23823 23896 s,@coin_doxy_tagname@,$coin_doxy_tagname,;t t 23824 23897 s,@coin_doxy_logname@,$coin_doxy_logname,;t t 23898 s,@COIN_HAS_DOXYGEN_TRUE@,$COIN_HAS_DOXYGEN_TRUE,;t t 23899 s,@COIN_HAS_DOXYGEN_FALSE@,$COIN_HAS_DOXYGEN_FALSE,;t t 23900 s,@COIN_HAS_LATEX_TRUE@,$COIN_HAS_LATEX_TRUE,;t t 23901 s,@COIN_HAS_LATEX_FALSE@,$COIN_HAS_LATEX_FALSE,;t t 23825 23902 s,@coin_doxy_tagfiles@,$coin_doxy_tagfiles,;t t 23826 23903 s,@coin_doxy_excludes@,$coin_doxy_excludes,;t t
Note: See TracChangeset
for help on using the changeset viewer.