- Timestamp:
- Jun 28, 2012 5:16:50 AM (9 years ago)
- Location:
- branches/advector
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/advector/ADOL-C/src/config.h.in
r153 r330 31 31 #undef HAVE_FLOOR 32 32 33 /* Define to 1 if you have the `fmax' function. */ 34 #undef HAVE_FMAX 35 36 /* Define to 1 if you have the `fmin' function. */ 37 #undef HAVE_FMIN 38 33 39 /* Define to 1 if you have the `ftime' function. */ 34 40 #undef HAVE_FTIME … … 39 45 /* Define 1 if ColPack is available */ 40 46 #undef HAVE_LIBCOLPACK 41 42 /* Define to 1 if you have the `m' library (-lm). */43 #undef HAVE_LIBM44 47 45 48 /* Define to 1 if your system has a GNU libc compatible `malloc' function, and … … 95 98 /* Define to 1 if you have the <sys/types.h> header file. */ 96 99 #undef HAVE_SYS_TYPES_H 100 101 /* Define to 1 if you have the `trunc' function. */ 102 #undef HAVE_TRUNC 97 103 98 104 /* Define to 1 if you have the <unistd.h> header file. */ -
branches/advector/Makefile.in
r312 r330 260 260 ADOL-C/doc/tapebasic.pdf ADOL-C/doc/tapebasic.eps \ 261 261 ADOL-C/doc/tap_point.pdf ADOL-C/doc/tap_point.eps \ 262 autoconf/shave.in autoconf/shave-libtool.in \263 autoconf/dolt.m4 autoconf/shave.m4 \264 262 MSVisualStudio/v10/adolc.sln MSVisualStudio/v10/adolc.vcxproj \ 263 MSVisualStudio/v10/ColPack_Readme_VC++.txt \ 264 MSVisualStudio/v10/ColPack.vcxproj \ 265 265 MSVisualStudio/v10/sparse/config.h.in MSVisualStudio/v10/nosparse/config.h.in \ 266 266 MSVisualStudio/v10/x64/sparse/config.h.in MSVisualStudio/v10/x64/nosparse/config.h.in \ … … 270 270 MSVisualStudio/v10/installer.sh \ 271 271 adolc.spec.in adolc.spec \ 272 update_versions.sh \ 273 ThirdParty/ColPack/ColPack.vcxproj \ 274 ThirdParty/ColPack/Readme_VC++.txt 272 update_versions.sh 275 273 276 274 SUBDIRS = ADOL-C 277 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure ADOL-C/src/config.h.in \278 ADOL-C/src/stamp-h.in *~ *.orig279 280 DISTCLEANFILES = doltcompile doltlibtool281 275 all: all-recursive 282 276 … … 674 668 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 675 669 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) 676 -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)677 670 678 671 maintainer-clean-generic: 679 672 @echo "This command is intended for maintainers to use" 680 673 @echo "it deletes files that may require special tools to rebuild." 681 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)682 674 clean: clean-recursive 683 675 -
branches/advector/configure
r312 r330 15690 15690 _lib=lib 15691 15691 fi 15692 libdir='${ prefix}/${_lib}'15692 libdir='${exec_prefix}/${_lib}' 15693 15693 15694 15694 … … 16253 16253 16254 16254 16255 for ac_func in floor ftime pow sqrt strchr strtol 16256 do : 16257 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 16258 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 16259 if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 16260 cat >>confdefs.h <<_ACEOF 16261 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 16262 _ACEOF 16263 16264 fi 16265 done 16266 16267 16268 # substitutions 16269 16270 16271 # Checks for libraries 16272 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5 16273 $as_echo_n "checking for pow in -lm... " >&6; } 16274 if ${ac_cv_lib_m_pow+:} false; then : 16255 16256 # Checks for libraries and fuctions 16257 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pow" >&5 16258 $as_echo_n "checking for library containing pow... " >&6; } 16259 if ${ac_cv_search_pow+:} false; then : 16275 16260 $as_echo_n "(cached) " >&6 16276 16261 else 16277 ac_check_lib_save_LIBS=$LIBS 16278 LIBS="-lm $LIBS" 16262 ac_func_search_save_LIBS=$LIBS 16279 16263 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 16280 16264 /* end confdefs.h. */ … … 16295 16279 } 16296 16280 _ACEOF 16297 if ac_fn_c_try_link "$LINENO"; then : 16298 ac_cv_lib_m_pow=yes 16299 else 16300 ac_cv_lib_m_pow=no 16281 for ac_lib in '' m; do 16282 if test -z "$ac_lib"; then 16283 ac_res="none required" 16284 else 16285 ac_res=-l$ac_lib 16286 LIBS="-l$ac_lib $ac_func_search_save_LIBS" 16287 fi 16288 if ac_fn_c_try_link "$LINENO"; then : 16289 ac_cv_search_pow=$ac_res 16301 16290 fi 16302 16291 rm -f core conftest.err conftest.$ac_objext \ 16303 conftest$ac_exeext conftest.$ac_ext 16304 LIBS=$ac_check_lib_save_LIBS 16305 fi 16306 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5 16307 $as_echo "$ac_cv_lib_m_pow" >&6; } 16308 if test "x$ac_cv_lib_m_pow" = xyes; then : 16292 conftest$ac_exeext 16293 if ${ac_cv_search_pow+:} false; then : 16294 break 16295 fi 16296 done 16297 if ${ac_cv_search_pow+:} false; then : 16298 16299 else 16300 ac_cv_search_pow=no 16301 fi 16302 rm conftest.$ac_ext 16303 LIBS=$ac_func_search_save_LIBS 16304 fi 16305 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pow" >&5 16306 $as_echo "$ac_cv_search_pow" >&6; } 16307 ac_res=$ac_cv_search_pow 16308 if test "$ac_res" != no; then : 16309 test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" 16310 16311 fi 16312 16313 for ac_func in floor fmax fmin ftime pow sqrt strchr strtol trunc 16314 do : 16315 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 16316 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 16317 if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 16309 16318 cat >>confdefs.h <<_ACEOF 16310 #define HAVE_LIBM116319 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 16311 16320 _ACEOF 16312 16321 16313 LIBS="-lm $LIBS" 16314 16315 fi 16322 fi 16323 done 16324 16325 16326 # substitutions 16316 16327 16317 16328 … … 16454 16465 16455 16466 16456 test "x${ac_pwd}" = x && ac_pwd=`pwd`16457 abs_srcdir=`readlink -f ${ac_pwd}/${srcdir}`16458 16467 16459 16468 # Check whether --with-colpack was given.
Note: See TracChangeset
for help on using the changeset viewer.