Changeset 3424
- Timestamp:
- Sep 28, 2015, 1:08:12 AM (8 years ago)
- Location:
- trunk/m4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/m4/ax_append_flag.m4
r3378 r3424 50 50 # exception to the GPL to apply to your modified version as well. 51 51 52 #serial 552 #serial 6 53 53 54 54 AC_DEFUN([AX_APPEND_FLAG], … … 60 60 [*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])], 61 61 [ 62 AS_VAR_APPEND(FLAGS, " $1")62 AS_VAR_APPEND(FLAGS,[" $1"]) 63 63 AC_RUN_LOG([: FLAGS="$FLAGS"]) 64 64 ]) -
trunk/m4/ax_boost_base.m4
r3331 r3424 34 34 # warranty. 35 35 36 #serial 2 536 #serial 26 37 37 38 38 AC_DEFUN([AX_BOOST_BASE], … … 174 174 dnl built and installed without the --layout=system option or for a staged(not installed) version 175 175 if test "x$succeeded" != "xyes"; then 176 CPPFLAGS="$CPPFLAGS_SAVED" 177 LDFLAGS="$LDFLAGS_SAVED" 178 BOOST_CPPFLAGS= 179 BOOST_LDFLAGS= 176 180 _version=0 177 181 if test "$ac_boost_path" != ""; then … … 186 190 BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" 187 191 done 192 dnl if nothing found search for layout used in Windows distributions 193 if test -z "$BOOST_CPPFLAGS"; then 194 if test -d "$ac_boost_path/boost" && test -r "$ac_boost_path/boost"; then 195 BOOST_CPPFLAGS="-I$ac_boost_path" 196 fi 197 fi 188 198 fi 189 199 else
Note: See TracChangeset
for help on using the changeset viewer.