Changeset 3811
- Timestamp:
- Jul 8, 2019, 9:06:31 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build_support/Makefile.am
r3792 r3811 63 63 -e 's|@YAT_PATCH_VERSION[@]|$(YAT_PATCH_VERSION)|g' \ 64 64 -e 's|@YAT_DEV_BUILD[@]|$(YAT_DEV_BUILD)|g' \ 65 -e 's|@gsl_version[@]|$(gsl_version)|g' \66 65 -e 's|@abs_top_srcdir[@]|$(abs_top_srcdir)|g' \ 67 -e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \ 68 -e 's|@min_boost_version[@]|$(min_boost_version)|g' 66 -e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' 69 67 70 68 build_support/yat-config: Makefile $(srcdir)/build_support/yat-config.in -
trunk/build_support/gen_yat_pc.sh.in
r3417 r3811 77 77 -e "s|@includedir[@]|${my_includedir}|g" \ 78 78 -e 's|@VERSION[@]|@VERSION@|g' \ 79 -e 's|@gsl_version[@]|@gsl_version@|g' \80 79 -e 's|@CPPFLAGS[@]|@CPPFLAGS@|g' \ 81 80 -e 's|@YAT_CPPFLAGS[@]|@YAT_CPPFLAGS@|g' \ -
trunk/configure.ac
r3792 r3811 271 271 # GNU Scientific Library, GSL http://www.gnu.org/software/gsl/, checks 272 272 # Including AX_PATH_GSL macro from gsl.m4 distributed by GSL 273 gsl_version="1.8" 274 AC_SUBST(gsl_version) 275 YAT_CHECK_GSL([$gsl_version],[LIBS="-lgsl $LIBS"],[AC_MSG_FAILURE([dnl276 GSL $gsl_version(or newer) not found. The GNU Scientific Library273 m4_define([YAT_REQUIRED_GSL_VERSION], [1.8]) 274 YAT_CHECK_GSL([YAT_REQUIRED_GSL_VERSION],[LIBS="-lgsl $LIBS"], 275 [AC_MSG_FAILURE([dnl 276 GSL YAT_REQUIRED_GSL_VERSION (or newer) not found. The GNU Scientific Library 277 277 (GSL) library cannot be found. Please make sure GSL is installed.]) 278 278 ]) … … 285 285 286 286 # Boost http://www.boost.org 287 min_boost_version=1.35 288 AC_SUBST(min_boost_version) 289 AX_BOOST_BASE(["$min_boost_version"], [], [AC_MSG_FAILURE([dnl 290 Boost ${min_boost_version} (or newer) not found. Please install boost, or provide 287 m4_define([YAT_REQUIRED_BOOST_VERSION], [1.35]) 288 AX_BOOST_BASE([YAT_REQUIRED_BOOST_VERSION], [], [AC_MSG_FAILURE([dnl 289 Boost YAT_REQUIRED_BOOST_VERSION (or newer) not found. Please install boost, or provide 291 290 CPPFLAGS=-I/path/to/boost]) 292 291 ]) … … 591 590 YAT_VAR_REMOVE([YAT_PC_LIBS_PRIVATE], [-lgsl $YAT_CBLAS_LIB $LIBM]) 592 591 YAT_SET_CONTAINS([$yat_libyat_la_LIBADD], [-lgsl], [ 593 YAT_PC_REQUIRES_PRIVATE="gsl > $gsl_version"592 YAT_PC_REQUIRES_PRIVATE="gsl > YAT_REQUIRED_GSL_VERSION" 594 593 ], [ 595 YAT_PC_REQUIRES="gsl > $gsl_version"594 YAT_PC_REQUIRES="gsl > YAT_REQUIRED_GSL_VERSION" 596 595 ]) 597 596
Note: See TracChangeset
for help on using the changeset viewer.