Changeset 36698 for lang/objective-cplusplus/i3
- Timestamp:
- 02/11/10 17:05:57 (3 years ago)
- Location:
- lang/objective-cplusplus/i3/trunk/unix/m4-local
- Files:
-
- 1 removed
- 15 modified
-
acx_pthread.m4 (deleted)
-
ax_boost_asio.m4 (modified) (3 diffs)
-
ax_boost_base.m4 (modified) (4 diffs)
-
ax_boost_date_time.m4 (modified) (3 diffs)
-
ax_boost_filesystem.m4 (modified) (5 diffs)
-
ax_boost_iostreams.m4 (modified) (3 diffs)
-
ax_boost_program_options.m4 (modified) (4 diffs)
-
ax_boost_python.m4 (modified) (3 diffs)
-
ax_boost_regex.m4 (modified) (3 diffs)
-
ax_boost_serialization.m4 (modified) (3 diffs)
-
ax_boost_signals.m4 (modified) (3 diffs)
-
ax_boost_system.m4 (modified) (3 diffs)
-
ax_boost_test_exec_monitor.m4 (modified) (3 diffs)
-
ax_boost_thread.m4 (modified) (4 diffs)
-
ax_boost_unit_test_framework.m4 (modified) (3 diffs)
-
ax_boost_wserialization.m4 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_asio.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_asio.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_asio.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_ASIO 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 32 28 # Copying and distribution of this file, with or without modification, are 33 29 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 30 # and this notice are preserved. This file is offered as-is, without any 31 # warranty. 32 33 #serial 6 35 34 36 35 AC_DEFUN([AX_BOOST_ASIO], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_base.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_base.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_base.html 3 3 # =========================================================================== 4 4 # 5 5 # SYNOPSIS 6 6 # 7 # AX_BOOST_BASE([MINIMUM-VERSION] )7 # AX_BOOST_BASE([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) 8 8 # 9 9 # DESCRIPTION … … 24 24 # HAVE_BOOST 25 25 # 26 # LAST MODIFICATION 27 # 28 # 2008-04-12 29 # 30 # COPYLEFT 26 # LICENSE 31 27 # 32 28 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> 29 # Copyright (c) 2009 Peter Adolphs 33 30 # 34 31 # Copying and distribution of this file, with or without modification, are 35 32 # permitted in any medium without royalty provided the copyright notice 36 # and this notice are preserved. 33 # and this notice are preserved. This file is offered as-is, without any 34 # warranty. 35 36 #serial 11 37 37 38 38 AC_DEFUN([AX_BOOST_BASE], 39 39 [ 40 40 AC_ARG_WITH([boost], 41 AS_HELP_STRING([--with-boost@<:@=DIR@:>@], [use boost (default is yes) - it is possible to specify the root directory for boost (optional)]), 42 [ 41 [AC_HELP_STRING([--with-boost@<:@=ARG@:>@], 42 [use Boost library from a standard location (ARG=yes), 43 from the specified location (ARG=<path>), 44 or disable it (ARG=no) 45 @<:@ARG=yes@:>@ ])], 46 [ 43 47 if test "$withval" = "no"; then 44 want_boost="no"48 want_boost="no" 45 49 elif test "$withval" = "yes"; then 46 50 want_boost="yes" 47 51 ac_boost_path="" 48 52 else 49 want_boost="yes"53 want_boost="yes" 50 54 ac_boost_path="$withval" 51 fi55 fi 52 56 ], 53 57 [want_boost="yes"]) … … 69 73 70 74 if test "x$want_boost" = "xyes"; then 71 boost_lib_version_req=ifelse([$1], ,1.20.0,$1) 72 boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([[0-9]]*\.[[0-9]]*\)'` 73 boost_lib_version_req_major=`expr $boost_lib_version_req : '\([[0-9]]*\)'` 74 boost_lib_version_req_minor=`expr $boost_lib_version_req : '[[0-9]]*\.\([[0-9]]*\)'` 75 boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'` 76 if test "x$boost_lib_version_req_sub_minor" = "x" ; then 77 boost_lib_version_req_sub_minor="0" 78 fi 79 WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor` 80 AC_MSG_CHECKING(for boostlib >= $boost_lib_version_req) 81 succeeded=no 82 83 dnl first we check the system location for boost libraries 84 dnl this location ist chosen if boost libraries are installed with the --layout=system option 85 dnl or if you install boost with RPM 86 if test "$ac_boost_path" != ""; then 87 BOOST_LDFLAGS="-L$ac_boost_path/lib" 88 BOOST_CPPFLAGS="-I$ac_boost_path/include" 89 else 90 for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do 91 if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then 92 BOOST_LDFLAGS="-L$ac_boost_path_tmp/lib" 93 BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include" 94 break; 95 fi 96 done 97 fi 75 boost_lib_version_req=ifelse([$1], ,1.20.0,$1) 76 boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([[0-9]]*\.[[0-9]]*\)'` 77 boost_lib_version_req_major=`expr $boost_lib_version_req : '\([[0-9]]*\)'` 78 boost_lib_version_req_minor=`expr $boost_lib_version_req : '[[0-9]]*\.\([[0-9]]*\)'` 79 boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'` 80 if test "x$boost_lib_version_req_sub_minor" = "x" ; then 81 boost_lib_version_req_sub_minor="0" 82 fi 83 WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor` 84 AC_MSG_CHECKING(for boostlib >= $boost_lib_version_req) 85 succeeded=no 86 87 libsubdir="lib" 88 if test "$(uname -m)" = "x86_64"; then 89 libsubdir="lib64" 90 fi 91 92 dnl first we check the system location for boost libraries 93 dnl this location ist chosen if boost libraries are installed with the --layout=system option 94 dnl or if you install boost with RPM 95 if test "$ac_boost_path" != ""; then 96 BOOST_LDFLAGS="-L$ac_boost_path/$libsubdir" 97 BOOST_CPPFLAGS="-I$ac_boost_path/include" 98 elif test "$cross_compiling" != yes; then 99 for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do 100 if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then 101 BOOST_LDFLAGS="-L$ac_boost_path_tmp/$libsubdir" 102 BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include" 103 break; 104 fi 105 done 106 fi 98 107 99 108 dnl overwrite ld flags if we have required special directory with … … 103 112 fi 104 113 105 CPPFLAGS_SAVED="$CPPFLAGS" 106 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" 107 export CPPFLAGS 108 109 LDFLAGS_SAVED="$LDFLAGS" 110 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" 111 export LDFLAGS 112 113 AC_LANG_PUSH(C++) 114 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ 115 @%:@include <boost/version.hpp> 116 ]], [[ 117 #if BOOST_VERSION >= $WANT_BOOST_VERSION 118 // Everything is okay 119 #else 120 # error Boost version is too old 121 #endif 122 ]])],[ 114 CPPFLAGS_SAVED="$CPPFLAGS" 115 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" 116 export CPPFLAGS 117 118 LDFLAGS_SAVED="$LDFLAGS" 119 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" 120 export LDFLAGS 121 122 AC_REQUIRE([AC_PROG_CXX]) 123 AC_LANG_PUSH(C++) 124 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ 125 @%:@include <boost/version.hpp> 126 ]], [[ 127 #if BOOST_VERSION >= $WANT_BOOST_VERSION 128 // Everything is okay 129 #else 130 # error Boost version is too old 131 #endif 132 ]])],[ 123 133 AC_MSG_RESULT(yes) 124 succeeded=yes 125 found_system=yes 126 ],[ 127 ]) 128 AC_LANG_POP([C++]) 129 130 131 132 dnl if we found no boost with system layout we search for boost libraries 133 dnl built and installed without the --layout=system option or for a staged(not installed) version 134 if test "x$succeeded" != "xyes"; then 135 _version=0 136 if test "$ac_boost_path" != ""; then 137 if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then 138 for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do 139 _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` 140 V_CHECK=`expr $_version_tmp \> $_version` 141 if test "$V_CHECK" = "1" ; then 142 _version=$_version_tmp 143 fi 144 VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` 145 BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" 146 done 147 fi 148 else 149 for ac_boost_path in /usr /usr/local /opt /opt/local ; do 150 if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then 151 for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do 152 _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` 153 V_CHECK=`expr $_version_tmp \> $_version` 154 if test "$V_CHECK" = "1" ; then 155 _version=$_version_tmp 156 best_path=$ac_boost_path 157 fi 158 done 159 fi 160 done 161 162 VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` 163 BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" 164 if test "$ac_boost_lib_path" = "" 165 then 166 BOOST_LDFLAGS="-L$best_path/lib" 167 fi 168 169 if test "x$BOOST_ROOT" != "x"; then 170 if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/lib" && test -r "$BOOST_ROOT/stage/lib"; then 171 version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` 172 stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` 173 stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'` 174 V_CHECK=`expr $stage_version_shorten \>\= $_version` 134 succeeded=yes 135 found_system=yes 136 ],[ 137 ]) 138 AC_LANG_POP([C++]) 139 140 141 142 dnl if we found no boost with system layout we search for boost libraries 143 dnl built and installed without the --layout=system option or for a staged(not installed) version 144 if test "x$succeeded" != "xyes"; then 145 _version=0 146 if test "$ac_boost_path" != ""; then 147 if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then 148 for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do 149 _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` 150 V_CHECK=`expr $_version_tmp \> $_version` 151 if test "$V_CHECK" = "1" ; then 152 _version=$_version_tmp 153 fi 154 VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` 155 BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" 156 done 157 fi 158 else 159 if test "$cross_compiling" != yes; then 160 for ac_boost_path in /usr /usr/local /opt /opt/local ; do 161 if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then 162 for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do 163 _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` 164 V_CHECK=`expr $_version_tmp \> $_version` 165 if test "$V_CHECK" = "1" ; then 166 _version=$_version_tmp 167 best_path=$ac_boost_path 168 fi 169 done 170 fi 171 done 172 173 VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` 174 BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" 175 if test "$ac_boost_lib_path" = "" 176 then 177 BOOST_LDFLAGS="-L$best_path/$libsubdir" 178 fi 179 fi 180 181 if test "x$BOOST_ROOT" != "x"; then 182 if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then 183 version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` 184 stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` 185 stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'` 186 V_CHECK=`expr $stage_version_shorten \>\= $_version` 175 187 if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then 176 AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT) 177 BOOST_CPPFLAGS="-I$BOOST_ROOT" 178 BOOST_LDFLAGS="-L$BOOST_ROOT/stage/lib" 179 fi 180 fi 181 fi 182 fi 183 184 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" 185 export CPPFLAGS 186 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" 187 export LDFLAGS 188 189 AC_LANG_PUSH(C++) 190 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ 191 @%:@include <boost/version.hpp> 192 ]], [[ 193 #if BOOST_VERSION >= $WANT_BOOST_VERSION 194 // Everything is okay 195 #else 196 # error Boost version is too old 197 #endif 198 ]])],[ 199 AC_MSG_RESULT(yes) 200 succeeded=yes 201 found_system=yes 202 ],[ 203 ]) 204 AC_LANG_POP([C++]) 205 fi 206 207 if test "$succeeded" != "yes" ; then 208 if test "$_version" = "0" ; then 209 AC_MSG_ERROR([[We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See http://randspringer.de/boost for more documentation.]]) 210 else 211 AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).]) 212 fi 213 else 214 AC_SUBST(BOOST_CPPFLAGS) 215 AC_SUBST(BOOST_LDFLAGS) 216 AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available]) 217 fi 218 219 CPPFLAGS="$CPPFLAGS_SAVED" 220 LDFLAGS="$LDFLAGS_SAVED" 188 AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT) 189 BOOST_CPPFLAGS="-I$BOOST_ROOT" 190 BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" 191 fi 192 fi 193 fi 194 fi 195 196 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" 197 export CPPFLAGS 198 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" 199 export LDFLAGS 200 201 AC_LANG_PUSH(C++) 202 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ 203 @%:@include <boost/version.hpp> 204 ]], [[ 205 #if BOOST_VERSION >= $WANT_BOOST_VERSION 206 // Everything is okay 207 #else 208 # error Boost version is too old 209 #endif 210 ]])],[ 211 AC_MSG_RESULT(yes) 212 succeeded=yes 213 found_system=yes 214 ],[ 215 ]) 216 AC_LANG_POP([C++]) 217 fi 218 219 if test "$succeeded" != "yes" ; then 220 if test "$_version" = "0" ; then 221 AC_MSG_NOTICE([[We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See http://randspringer.de/boost for more documentation.]]) 222 else 223 AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).]) 224 fi 225 # execute ACTION-IF-NOT-FOUND (if present): 226 ifelse([$3], , :, [$3]) 227 else 228 AC_SUBST(BOOST_CPPFLAGS) 229 AC_SUBST(BOOST_LDFLAGS) 230 AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available]) 231 # execute ACTION-IF-FOUND (if present): 232 ifelse([$2], , :, [$2]) 233 fi 234 235 CPPFLAGS="$CPPFLAGS_SAVED" 236 LDFLAGS="$LDFLAGS_SAVED" 221 237 fi 222 238 -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_date_time.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_date_time.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_date_time.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_DATE_TIME 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 32 28 # Copying and distribution of this file, with or without modification, are 33 29 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 30 # and this notice are preserved. This file is offered as-is, without any 31 # warranty. 32 33 #serial 11 35 34 36 35 AC_DEFUN([AX_BOOST_DATE_TIME], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_filesystem.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_filesystem.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_filesystem.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_FILESYSTEM 22 22 # 23 # L AST MODIFICATION23 # LICENSE 24 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 28 # 29 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> 30 # Copyright (c) 2008 Michael Tindal 25 # Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de> 26 # Copyright (c) 2009 Michael Tindal 27 # Copyright (c) 2009 Roman Rybalko <libtorrent@romanr.info> 31 28 # 32 29 # Copying and distribution of this file, with or without modification, are 33 30 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 31 # and this notice are preserved. This file is offered as-is, without any 32 # warranty. 33 34 #serial 12 35 35 36 36 AC_DEFUN([AX_BOOST_FILESYSTEM], … … 64 64 export LDFLAGS 65 65 66 LIBS_SAVED=$LIBS 67 LIBS="$LIBS $BOOST_SYSTEM_LIB" 68 export LIBS 69 66 70 AC_CACHE_CHECK(whether the Boost::Filesystem library is available, 67 71 ax_cv_boost_filesystem, … … 78 82 BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` 79 83 if test "x$ax_boost_user_filesystem_lib" = "x"; then 80 for libextension in `ls $BOOSTLIBDIR/libboost_filesystem*.{so, a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_filesystem.*\)\.so.*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.a*$;\1;'` ; do84 for libextension in `ls $BOOSTLIBDIR/libboost_filesystem*.{so,dylib,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_filesystem.*\)\.so.*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.a*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.dylib$;\1;'` ; do 81 85 ax_lib=${libextension} 82 86 AC_CHECK_LIB($ax_lib, exit, … … 106 110 107 111 CPPFLAGS="$CPPFLAGS_SAVED" 108 LDFLAGS="$LDFLAGS_SAVED" 112 LDFLAGS="$LDFLAGS_SAVED" 113 LIBS="$LIBS_SAVED" 109 114 fi 110 115 ]) -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_iostreams.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_iostreams.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_iostreams.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_IOSTREAMS 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 31 27 # Copying and distribution of this file, with or without modification, are 32 28 # permitted in any medium without royalty provided the copyright notice 33 # and this notice are preserved. 29 # and this notice are preserved. This file is offered as-is, without any 30 # warranty. 31 32 #serial 10 34 33 35 34 AC_DEFUN([AX_BOOST_IOSTREAMS], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_program_options.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_program_options.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_program_options.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_PROGRAM_OPTIONS 22 22 # 23 # L AST MODIFICATION23 # LICENSE 24 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 28 # 29 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> 25 # Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de> 30 26 # 31 27 # Copying and distribution of this file, with or without modification, are 32 28 # permitted in any medium without royalty provided the copyright notice 33 # and this notice are preserved. 29 # and this notice are preserved. This file is offered as-is, without any 30 # warranty. 31 32 #serial 12 34 33 35 34 AC_DEFUN([AX_BOOST_PROGRAM_OPTIONS], … … 76 75 BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` 77 76 if test "x$ax_boost_user_program_options_lib" = "x"; then 78 for libextension in `ls $BOOSTLIBDIR/libboost_program_options*. {so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.so.*$;\1;'-e 's;^lib\(boost_program_options.*\)\.a*$;\1;'` ; do77 for libextension in `ls $BOOSTLIBDIR/libboost_program_options*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.a*$;\1;'` ; do 79 78 ax_lib=${libextension} 80 79 AC_CHECK_LIB($ax_lib, exit, … … 83 82 done 84 83 if test "x$link_program_options" != "xyes"; then 85 for libextension in `ls $BOOSTLIBDIR/boost_program_options*. {dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'-e 's;^\(boost_program_options.*\)\.a*$;\1;'` ; do84 for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a*$;\1;'` ; do 86 85 ax_lib=${libextension} 87 86 AC_CHECK_LIB($ax_lib, exit, -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_python.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_python.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_python.html 3 3 # =========================================================================== 4 4 # … … 22 22 # path, this macro requires AX_PYTHON to be called. 23 23 # 24 # LAST MODIFICATION 25 # 26 # 2008-04-12 27 # 28 # COPYLEFT 24 # LICENSE 29 25 # 30 26 # Copyright (c) 2008 Michael Tindal … … 52 48 # 53 49 # This special exception to the GPL applies to versions of the Autoconf 54 # Macro released by the Autoconf Macro Archive. When you make and 55 # distribute a modified version of the Autoconf Macro, you may extend this 56 # special exception to the GPL to apply to your modified version as well. 50 # Macro released by the Autoconf Archive. When you make and distribute a 51 # modified version of the Autoconf Macro, you may extend this special 52 # exception to the GPL to apply to your modified version as well. 53 54 #serial 7 57 55 58 56 AC_DEFUN([AX_BOOST_PYTHON], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_regex.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_regex.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_regex.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_REGEX 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 32 28 # Copying and distribution of this file, with or without modification, are 33 29 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 30 # and this notice are preserved. This file is offered as-is, without any 31 # warranty. 32 33 #serial 11 35 34 36 35 AC_DEFUN([AX_BOOST_REGEX], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_serialization.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_serialization.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_serialization.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_SERIALIZATION 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 31 27 # Copying and distribution of this file, with or without modification, are 32 28 # permitted in any medium without royalty provided the copyright notice 33 # and this notice are preserved. 29 # and this notice are preserved. This file is offered as-is, without any 30 # warranty. 31 32 #serial 10 34 33 35 34 AC_DEFUN([AX_BOOST_SERIALIZATION], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_signals.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_signals.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_signals.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_SIGNALS 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 32 28 # Copying and distribution of this file, with or without modification, are 33 29 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 30 # and this notice are preserved. This file is offered as-is, without any 31 # warranty. 32 33 #serial 11 35 34 36 35 AC_DEFUN([AX_BOOST_SIGNALS], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_system.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_system.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_system.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_SYSTEM 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 33 29 # Copying and distribution of this file, with or without modification, are 34 30 # permitted in any medium without royalty provided the copyright notice 35 # and this notice are preserved. 31 # and this notice are preserved. This file is offered as-is, without any 32 # warranty. 33 34 #serial 6 36 35 37 36 AC_DEFUN([AX_BOOST_SYSTEM], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_test_exec_monitor.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_test_exec_monitor.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_test_exec_monitor.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_TEST_EXEC_MONITOR 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Dodji Seketeli <dodji@seketeli.org> … … 32 28 # Copying and distribution of this file, with or without modification, are 33 29 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 30 # and this notice are preserved. This file is offered as-is, without any 31 # warranty. 32 33 #serial 9 35 34 36 35 AC_DEFUN([AX_BOOST_TEST_EXEC_MONITOR], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_thread.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_thread.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_thread.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_THREAD 22 22 # 23 # L AST MODIFICATION23 # LICENSE 24 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 28 # 29 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> 30 # Copyright (c) 2008 Michael Tindal 25 # Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de> 26 # Copyright (c) 2009 Michael Tindal 31 27 # 32 28 # Copying and distribution of this file, with or without modification, are 33 29 # permitted in any medium without royalty provided the copyright notice 34 # and this notice are preserved. 30 # and this notice are preserved. This file is offered as-is, without any 31 # warranty. 32 33 #serial 14 35 34 36 35 AC_DEFUN([AX_BOOST_THREAD], … … 106 105 esac 107 106 if test "x$ax_boost_user_thread_lib" = "x"; then 108 for libextension in `ls $BOOSTLIBDIR/libboost_thread*. {so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_thread.*\)\.so.*$;\1;' -e 's;^lib\(boost_thread.*\)\.a*$;\1;'`; do107 for libextension in `ls $BOOSTLIBDIR/libboost_thread*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_thread.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_thread*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_thread.*\)\.a*$;\1;'`; do 109 108 ax_lib=${libextension} 110 109 AC_CHECK_LIB($ax_lib, exit, … … 113 112 done 114 113 if test "x$link_thread" != "xyes"; then 115 for libextension in `ls $BOOSTLIBDIR/boost_thread*. {dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_thread.*\)\.dll.*$;\1;'-e 's;^\(boost_thread.*\)\.a*$;\1;'` ; do114 for libextension in `ls $BOOSTLIBDIR/boost_thread*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_thread.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_thread*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_thread.*\)\.a*$;\1;'` ; do 116 115 ax_lib=${libextension} 117 116 AC_CHECK_LIB($ax_lib, exit, -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_unit_test_framework.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_unit_test_framework.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_unit_test_framework.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_UNIT_TEST_FRAMEWORK 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 31 27 # Copying and distribution of this file, with or without modification, are 32 28 # permitted in any medium without royalty provided the copyright notice 33 # and this notice are preserved. 29 # and this notice are preserved. This file is offered as-is, without any 30 # warranty. 31 32 #serial 8 34 33 35 34 AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK], -
lang/objective-cplusplus/i3/trunk/unix/m4-local/ax_boost_wserialization.m4
r14174 r36698 1 1 # =========================================================================== 2 # http://autoconf-archive.cryp.to/ax_boost_wserialization.html2 # http://www.nongnu.org/autoconf-archive/ax_boost_wserialization.html 3 3 # =========================================================================== 4 4 # … … 21 21 # HAVE_BOOST_WSERIALIZATION 22 22 # 23 # LAST MODIFICATION 24 # 25 # 2008-04-12 26 # 27 # COPYLEFT 23 # LICENSE 28 24 # 29 25 # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> … … 31 27 # Copying and distribution of this file, with or without modification, are 32 28 # permitted in any medium without royalty provided the copyright notice 33 # and this notice are preserved. 29 # and this notice are preserved. This file is offered as-is, without any 30 # warranty. 31 32 #serial 10 34 33 35 34 AC_DEFUN([AX_BOOST_WSERIALIZATION],
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)