Changeset 4216 for trunk/m4/ax_boost_base.m4
- Timestamp:
- Sep 6, 2022, 1:21:57 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/m4/ax_boost_base.m4
r4099 r4216 12 12 # 13 13 # If no path to the installed boost library is given the macro searchs 14 # under /usr, /usr/local, /opt and /opt/local and evaluates the15 # $BOOST_ROOT environment variable. Further documentation is available at16 # <http://randspringer.de/boost/index.html>.14 # under /usr, /usr/local, /opt, /opt/local and /opt/homebrew and evaluates 15 # the $BOOST_ROOT environment variable. Further documentation is available 16 # at <http://randspringer.de/boost/index.html>. 17 17 # 18 18 # This macro calls: … … 34 34 # warranty. 35 35 36 #serial 4936 #serial 51 37 37 38 38 # example boost program (need to pass version) … … 129 129 130 130 dnl first we check the system location for boost libraries 131 dnl this location is tchosen if boost libraries are installed with the --layout=system option131 dnl this location is chosen if boost libraries are installed with the --layout=system option 132 132 dnl or if you install boost with RPM 133 133 AS_IF([test "x$_AX_BOOST_BASE_boost_path" != "x"],[ … … 152 152 search_libsubdirs="$multiarch_libsubdir $libsubdirs" 153 153 fi 154 for _AX_BOOST_BASE_boost_path_tmp in /usr /usr/local /opt /opt/local ; do154 for _AX_BOOST_BASE_boost_path_tmp in /usr /usr/local /opt /opt/local /opt/homebrew ; do 155 155 if test -d "$_AX_BOOST_BASE_boost_path_tmp/include/boost" && test -r "$_AX_BOOST_BASE_boost_path_tmp/include/boost" ; then 156 156 for libsubdir in $search_libsubdirs ; do … … 228 228 else 229 229 if test "x$cross_compiling" != "xyes" ; then 230 for _AX_BOOST_BASE_boost_path in /usr /usr/local /opt /opt/local ; do230 for _AX_BOOST_BASE_boost_path in /usr /usr/local /opt /opt/local /opt/homebrew ; do 231 231 if test -d "$_AX_BOOST_BASE_boost_path" && test -r "$_AX_BOOST_BASE_boost_path" ; then 232 232 for i in `ls -d $_AX_BOOST_BASE_boost_path/include/boost-* 2>/dev/null`; do
Note: See TracChangeset
for help on using the changeset viewer.