Possibly fix for bug #5 in MarPiRK/xournalpp
Added new autoconf boost script (and removed old ones), removed unused m4 files.presentation
parent
df1bcaee59
commit
3e914a91e6
14 changed files with 1467 additions and 1228 deletions
@ -1,275 +0,0 @@ |
||||
# =========================================================================== |
||||
# http://www.gnu.org/software/autoconf-archive/ax_boost_base.html |
||||
# =========================================================================== |
||||
# |
||||
# SYNOPSIS |
||||
# |
||||
# AX_BOOST_BASE([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) |
||||
# |
||||
# DESCRIPTION |
||||
# |
||||
# Test for the Boost C++ libraries of a particular version (or newer) |
||||
# |
||||
# If no path to the installed boost library is given the macro searchs |
||||
# under /usr, /usr/local, /opt and /opt/local and evaluates the |
||||
# $BOOST_ROOT environment variable. Further documentation is available at |
||||
# <http://randspringer.de/boost/index.html>. |
||||
# |
||||
# This macro calls: |
||||
# |
||||
# AC_SUBST(BOOST_CPPFLAGS) / AC_SUBST(BOOST_LDFLAGS) |
||||
# |
||||
# And sets: |
||||
# |
||||
# HAVE_BOOST |
||||
# |
||||
# LICENSE |
||||
# |
||||
# Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> |
||||
# Copyright (c) 2009 Peter Adolphs |
||||
# |
||||
# Copying and distribution of this file, with or without modification, are |
||||
# permitted in any medium without royalty provided the copyright notice |
||||
# and this notice are preserved. This file is offered as-is, without any |
||||
# warranty. |
||||
|
||||
#serial 25 |
||||
|
||||
AC_DEFUN([AX_BOOST_BASE], |
||||
[ |
||||
AC_ARG_WITH([boost], |
||||
[AS_HELP_STRING([--with-boost@<:@=ARG@:>@], |
||||
[use Boost library from a standard location (ARG=yes), |
||||
from the specified location (ARG=<path>), |
||||
or disable it (ARG=no) |
||||
@<:@ARG=yes@:>@ ])], |
||||
[ |
||||
if test "$withval" = "no"; then |
||||
want_boost="no" |
||||
elif test "$withval" = "yes"; then |
||||
want_boost="yes" |
||||
ac_boost_path="" |
||||
else |
||||
want_boost="yes" |
||||
ac_boost_path="$withval" |
||||
fi |
||||
], |
||||
[want_boost="yes"]) |
||||
|
||||
|
||||
AC_ARG_WITH([boost-libdir], |
||||
AS_HELP_STRING([--with-boost-libdir=LIB_DIR], |
||||
[Force given directory for boost libraries. Note that this will override library path detection, so use this parameter only if default library detection fails and you know exactly where your boost libraries are located.]), |
||||
[ |
||||
if test -d "$withval" |
||||
then |
||||
ac_boost_lib_path="$withval" |
||||
else |
||||
AC_MSG_ERROR(--with-boost-libdir expected directory name) |
||||
fi |
||||
], |
||||
[ac_boost_lib_path=""] |
||||
) |
||||
|
||||
if test "x$want_boost" = "xyes"; then |
||||
boost_lib_version_req=ifelse([$1], ,1.20.0,$1) |
||||
boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([[0-9]]*\.[[0-9]]*\)'` |
||||
boost_lib_version_req_major=`expr $boost_lib_version_req : '\([[0-9]]*\)'` |
||||
boost_lib_version_req_minor=`expr $boost_lib_version_req : '[[0-9]]*\.\([[0-9]]*\)'` |
||||
boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'` |
||||
if test "x$boost_lib_version_req_sub_minor" = "x" ; then |
||||
boost_lib_version_req_sub_minor="0" |
||||
fi |
||||
WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor` |
||||
AC_MSG_CHECKING(for boostlib >= $boost_lib_version_req) |
||||
succeeded=no |
||||
|
||||
dnl On 64-bit systems check for system libraries in both lib64 and lib. |
||||
dnl The former is specified by FHS, but e.g. Debian does not adhere to |
||||
dnl this (as it rises problems for generic multi-arch support). |
||||
dnl The last entry in the list is chosen by default when no libraries |
||||
dnl are found, e.g. when only header-only libraries are installed! |
||||
libsubdirs="lib" |
||||
ax_arch=`uname -m` |
||||
case $ax_arch in |
||||
x86_64) |
||||
libsubdirs="lib64 libx32 lib lib64" |
||||
;; |
||||
ppc64|s390x|sparc64|aarch64|ppc64le) |
||||
libsubdirs="lib64 lib lib64 ppc64le" |
||||
;; |
||||
esac |
||||
|
||||
dnl allow for real multi-arch paths e.g. /usr/lib/x86_64-linux-gnu. Give |
||||
dnl them priority over the other paths since, if libs are found there, they |
||||
dnl are almost assuredly the ones desired. |
||||
AC_REQUIRE([AC_CANONICAL_HOST]) |
||||
libsubdirs="lib/${host_cpu}-${host_os} $libsubdirs" |
||||
|
||||
case ${host_cpu} in |
||||
i?86) |
||||
libsubdirs="lib/i386-${host_os} $libsubdirs" |
||||
;; |
||||
esac |
||||
|
||||
dnl first we check the system location for boost libraries |
||||
dnl this location ist chosen if boost libraries are installed with the --layout=system option |
||||
dnl or if you install boost with RPM |
||||
if test "$ac_boost_path" != ""; then |
||||
BOOST_CPPFLAGS="-I$ac_boost_path/include" |
||||
for ac_boost_path_tmp in $libsubdirs; do |
||||
if test -d "$ac_boost_path"/"$ac_boost_path_tmp" ; then |
||||
BOOST_LDFLAGS="-L$ac_boost_path/$ac_boost_path_tmp" |
||||
break |
||||
fi |
||||
done |
||||
elif test "$cross_compiling" != yes; then |
||||
for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do |
||||
if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then |
||||
for libsubdir in $libsubdirs ; do |
||||
if ls "$ac_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi |
||||
done |
||||
BOOST_LDFLAGS="-L$ac_boost_path_tmp/$libsubdir" |
||||
BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include" |
||||
break; |
||||
fi |
||||
done |
||||
fi |
||||
|
||||
dnl overwrite ld flags if we have required special directory with |
||||
dnl --with-boost-libdir parameter |
||||
if test "$ac_boost_lib_path" != ""; then |
||||
BOOST_LDFLAGS="-L$ac_boost_lib_path" |
||||
fi |
||||
|
||||
CPPFLAGS_SAVED="$CPPFLAGS" |
||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" |
||||
export CPPFLAGS |
||||
|
||||
LDFLAGS_SAVED="$LDFLAGS" |
||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" |
||||
export LDFLAGS |
||||
|
||||
AC_REQUIRE([AC_PROG_CXX]) |
||||
AC_LANG_PUSH(C++) |
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
||||
@%:@include <boost/version.hpp> |
||||
]], [[ |
||||
#if BOOST_VERSION >= $WANT_BOOST_VERSION |
||||
// Everything is okay |
||||
#else |
||||
# error Boost version is too old |
||||
#endif |
||||
]])],[ |
||||
AC_MSG_RESULT(yes) |
||||
succeeded=yes |
||||
found_system=yes |
||||
],[ |
||||
]) |
||||
AC_LANG_POP([C++]) |
||||
|
||||
|
||||
|
||||
dnl if we found no boost with system layout we search for boost libraries |
||||
dnl built and installed without the --layout=system option or for a staged(not installed) version |
||||
if test "x$succeeded" != "xyes"; then |
||||
_version=0 |
||||
if test "$ac_boost_path" != ""; then |
||||
if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then |
||||
for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do |
||||
_version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` |
||||
V_CHECK=`expr $_version_tmp \> $_version` |
||||
if test "$V_CHECK" = "1" ; then |
||||
_version=$_version_tmp |
||||
fi |
||||
VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` |
||||
BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" |
||||
done |
||||
fi |
||||
else |
||||
if test "$cross_compiling" != yes; then |
||||
for ac_boost_path in /usr /usr/local /opt /opt/local ; do |
||||
if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then |
||||
for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do |
||||
_version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` |
||||
V_CHECK=`expr $_version_tmp \> $_version` |
||||
if test "$V_CHECK" = "1" ; then |
||||
_version=$_version_tmp |
||||
best_path=$ac_boost_path |
||||
fi |
||||
done |
||||
fi |
||||
done |
||||
|
||||
VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` |
||||
BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" |
||||
if test "$ac_boost_lib_path" = ""; then |
||||
for libsubdir in $libsubdirs ; do |
||||
if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi |
||||
done |
||||
BOOST_LDFLAGS="-L$best_path/$libsubdir" |
||||
fi |
||||
fi |
||||
|
||||
if test "x$BOOST_ROOT" != "x"; then |
||||
for libsubdir in $libsubdirs ; do |
||||
if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi |
||||
done |
||||
if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then |
||||
version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` |
||||
stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` |
||||
stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'` |
||||
V_CHECK=`expr $stage_version_shorten \>\= $_version` |
||||
if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then |
||||
AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT) |
||||
BOOST_CPPFLAGS="-I$BOOST_ROOT" |
||||
BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" |
||||
fi |
||||
fi |
||||
fi |
||||
fi |
||||
|
||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" |
||||
export CPPFLAGS |
||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" |
||||
export LDFLAGS |
||||
|
||||
AC_LANG_PUSH(C++) |
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
||||
@%:@include <boost/version.hpp> |
||||
]], [[ |
||||
#if BOOST_VERSION >= $WANT_BOOST_VERSION |
||||
// Everything is okay |
||||
#else |
||||
# error Boost version is too old |
||||
#endif |
||||
]])],[ |
||||
AC_MSG_RESULT(yes) |
||||
succeeded=yes |
||||
found_system=yes |
||||
],[ |
||||
]) |
||||
AC_LANG_POP([C++]) |
||||
fi |
||||
|
||||
if test "$succeeded" != "yes" ; then |
||||
if test "$_version" = "0" ; then |
||||
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.]]) |
||||
else |
||||
AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).]) |
||||
fi |
||||
# execute ACTION-IF-NOT-FOUND (if present): |
||||
ifelse([$3], , :, [$3]) |
||||
else |
||||
AC_SUBST(BOOST_CPPFLAGS) |
||||
AC_SUBST(BOOST_LDFLAGS) |
||||
AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available]) |
||||
# execute ACTION-IF-FOUND (if present): |
||||
ifelse([$2], , :, [$2]) |
||||
fi |
||||
|
||||
CPPFLAGS="$CPPFLAGS_SAVED" |
||||
LDFLAGS="$LDFLAGS_SAVED" |
||||
fi |
||||
|
||||
]) |
||||
@ -1,118 +0,0 @@ |
||||
# =========================================================================== |
||||
# http://www.gnu.org/software/autoconf-archive/ax_boost_filesystem.html |
||||
# =========================================================================== |
||||
# |
||||
# SYNOPSIS |
||||
# |
||||
# AX_BOOST_FILESYSTEM |
||||
# |
||||
# DESCRIPTION |
||||
# |
||||
# Test for Filesystem library from the Boost C++ libraries. The macro |
||||
# requires a preceding call to AX_BOOST_BASE. Further documentation is |
||||
# available at <http://randspringer.de/boost/index.html>. |
||||
# |
||||
# This macro calls: |
||||
# |
||||
# AC_SUBST(BOOST_FILESYSTEM_LIB) |
||||
# |
||||
# And sets: |
||||
# |
||||
# HAVE_BOOST_FILESYSTEM |
||||
# |
||||
# LICENSE |
||||
# |
||||
# Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de> |
||||
# Copyright (c) 2009 Michael Tindal |
||||
# Copyright (c) 2009 Roman Rybalko <libtorrent@romanr.info> |
||||
# |
||||
# Copying and distribution of this file, with or without modification, are |
||||
# permitted in any medium without royalty provided the copyright notice |
||||
# and this notice are preserved. This file is offered as-is, without any |
||||
# warranty. |
||||
|
||||
#serial 26 |
||||
|
||||
AC_DEFUN([AX_BOOST_FILESYSTEM], |
||||
[ |
||||
AC_ARG_WITH([boost-filesystem], |
||||
AS_HELP_STRING([--with-boost-filesystem@<:@=special-lib@:>@], |
||||
[use the Filesystem library from boost - it is possible to specify a certain library for the linker |
||||
e.g. --with-boost-filesystem=boost_filesystem-gcc-mt ]), |
||||
[ |
||||
if test "$withval" = "no"; then |
||||
want_boost="no" |
||||
elif test "$withval" = "yes"; then |
||||
want_boost="yes" |
||||
ax_boost_user_filesystem_lib="" |
||||
else |
||||
want_boost="yes" |
||||
ax_boost_user_filesystem_lib="$withval" |
||||
fi |
||||
], |
||||
[want_boost="yes"] |
||||
) |
||||
|
||||
if test "x$want_boost" = "xyes"; then |
||||
AC_REQUIRE([AC_PROG_CC]) |
||||
CPPFLAGS_SAVED="$CPPFLAGS" |
||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" |
||||
export CPPFLAGS |
||||
|
||||
LDFLAGS_SAVED="$LDFLAGS" |
||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" |
||||
export LDFLAGS |
||||
|
||||
LIBS_SAVED=$LIBS |
||||
LIBS="$LIBS $BOOST_SYSTEM_LIB" |
||||
export LIBS |
||||
|
||||
AC_CACHE_CHECK(whether the Boost::Filesystem library is available, |
||||
ax_cv_boost_filesystem, |
||||
[AC_LANG_PUSH([C++]) |
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <boost/filesystem/path.hpp>]], |
||||
[[using namespace boost::filesystem; |
||||
path my_path( "foo/bar/data.txt" ); |
||||
return 0;]])], |
||||
ax_cv_boost_filesystem=yes, ax_cv_boost_filesystem=no) |
||||
AC_LANG_POP([C++]) |
||||
]) |
||||
if test "x$ax_cv_boost_filesystem" = "xyes"; then |
||||
AC_DEFINE(HAVE_BOOST_FILESYSTEM,,[define if the Boost::Filesystem library is available]) |
||||
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` |
||||
if test "x$ax_boost_user_filesystem_lib" = "x"; then |
||||
for libextension in `ls -r $BOOSTLIBDIR/libboost_filesystem* 2>/dev/null | sed 's,.*/lib,,' | sed 's,\..*,,'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break], |
||||
[link_filesystem="no"]) |
||||
done |
||||
if test "x$link_filesystem" != "xyes"; then |
||||
for libextension in `ls -r $BOOSTLIBDIR/boost_filesystem* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break], |
||||
[link_filesystem="no"]) |
||||
done |
||||
fi |
||||
else |
||||
for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break], |
||||
[link_filesystem="no"]) |
||||
done |
||||
|
||||
fi |
||||
if test "x$ax_lib" = "x"; then |
||||
AC_MSG_ERROR(Could not find a version of the library!) |
||||
fi |
||||
if test "x$link_filesystem" != "xyes"; then |
||||
AC_MSG_ERROR(Could not link against $ax_lib !) |
||||
fi |
||||
fi |
||||
|
||||
CPPFLAGS="$CPPFLAGS_SAVED" |
||||
LDFLAGS="$LDFLAGS_SAVED" |
||||
LIBS="$LIBS_SAVED" |
||||
fi |
||||
]) |
||||
@ -1,116 +0,0 @@ |
||||
# =========================================================================== |
||||
# http://www.gnu.org/software/autoconf-archive/ax_boost_iostreams.html |
||||
# =========================================================================== |
||||
# |
||||
# SYNOPSIS |
||||
# |
||||
# AX_BOOST_IOSTREAMS |
||||
# |
||||
# DESCRIPTION |
||||
# |
||||
# Test for IOStreams library from the Boost C++ libraries. The macro |
||||
# requires a preceding call to AX_BOOST_BASE. Further documentation is |
||||
# available at <http://randspringer.de/boost/index.html>. |
||||
# |
||||
# This macro calls: |
||||
# |
||||
# AC_SUBST(BOOST_IOSTREAMS_LIB) |
||||
# |
||||
# And sets: |
||||
# |
||||
# HAVE_BOOST_IOSTREAMS |
||||
# |
||||
# LICENSE |
||||
# |
||||
# Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> |
||||
# |
||||
# Copying and distribution of this file, with or without modification, are |
||||
# permitted in any medium without royalty provided the copyright notice |
||||
# and this notice are preserved. This file is offered as-is, without any |
||||
# warranty. |
||||
|
||||
#serial 20 |
||||
|
||||
AC_DEFUN([AX_BOOST_IOSTREAMS], |
||||
[ |
||||
AC_ARG_WITH([boost-iostreams], |
||||
AS_HELP_STRING([--with-boost-iostreams@<:@=special-lib@:>@], |
||||
[use the IOStreams library from boost - it is possible to specify a certain library for the linker |
||||
e.g. --with-boost-iostreams=boost_iostreams-gcc-mt-d-1_33_1 ]), |
||||
[ |
||||
if test "$withval" = "no"; then |
||||
want_boost="no" |
||||
elif test "$withval" = "yes"; then |
||||
want_boost="yes" |
||||
ax_boost_user_iostreams_lib="" |
||||
else |
||||
want_boost="yes" |
||||
ax_boost_user_iostreams_lib="$withval" |
||||
fi |
||||
], |
||||
[want_boost="yes"] |
||||
) |
||||
|
||||
if test "x$want_boost" = "xyes"; then |
||||
AC_REQUIRE([AC_PROG_CC]) |
||||
CPPFLAGS_SAVED="$CPPFLAGS" |
||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" |
||||
export CPPFLAGS |
||||
|
||||
LDFLAGS_SAVED="$LDFLAGS" |
||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" |
||||
export LDFLAGS |
||||
|
||||
AC_CACHE_CHECK(whether the Boost::IOStreams library is available, |
||||
ax_cv_boost_iostreams, |
||||
[AC_LANG_PUSH([C++]) |
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <boost/iostreams/filtering_stream.hpp> |
||||
@%:@include <boost/range/iterator_range.hpp> |
||||
]], |
||||
[[std::string input = "Hello World!"; |
||||
namespace io = boost::iostreams; |
||||
io::filtering_istream in(boost::make_iterator_range(input)); |
||||
return 0; |
||||
]])], |
||||
ax_cv_boost_iostreams=yes, ax_cv_boost_iostreams=no) |
||||
AC_LANG_POP([C++]) |
||||
]) |
||||
if test "x$ax_cv_boost_iostreams" = "xyes"; then |
||||
AC_DEFINE(HAVE_BOOST_IOSTREAMS,,[define if the Boost::IOStreams library is available]) |
||||
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` |
||||
if test "x$ax_boost_user_iostreams_lib" = "x"; then |
||||
for libextension in `ls $BOOSTLIBDIR/libboost_iostreams*.so* $BOOSTLIBDIR/libboost_iostream*.dylib* $BOOSTLIBDIR/libboost_iostreams*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_iostreams.*\)\.so.*$;\1;' -e 's;^lib\(boost_iostream.*\)\.dylib.*$;\1;' -e 's;^lib\(boost_iostreams.*\)\.a.*$;\1;'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_IOSTREAMS_LIB="-l$ax_lib"; AC_SUBST(BOOST_IOSTREAMS_LIB) link_iostreams="yes"; break], |
||||
[link_iostreams="no"]) |
||||
done |
||||
if test "x$link_iostreams" != "xyes"; then |
||||
for libextension in `ls $BOOSTLIBDIR/boost_iostreams*.dll* $BOOSTLIBDIR/boost_iostreams*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_iostreams.*\)\.dll.*$;\1;' -e 's;^\(boost_iostreams.*\)\.a.*$;\1;'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_IOSTREAMS_LIB="-l$ax_lib"; AC_SUBST(BOOST_IOSTREAMS_LIB) link_iostreams="yes"; break], |
||||
[link_iostreams="no"]) |
||||
done |
||||
fi |
||||
|
||||
else |
||||
for ax_lib in $ax_boost_user_iostreams_lib boost_iostreams-$ax_boost_user_iostreams_lib; do |
||||
AC_CHECK_LIB($ax_lib, main, |
||||
[BOOST_IOSTREAMS_LIB="-l$ax_lib"; AC_SUBST(BOOST_IOSTREAMS_LIB) link_iostreams="yes"; break], |
||||
[link_iostreams="no"]) |
||||
done |
||||
|
||||
fi |
||||
if test "x$ax_lib" = "x"; then |
||||
AC_MSG_ERROR(Could not find a version of the library!) |
||||
fi |
||||
if test "x$link_iostreams" != "xyes"; then |
||||
AC_MSG_ERROR(Could not link against $ax_lib !) |
||||
fi |
||||
fi |
||||
|
||||
CPPFLAGS="$CPPFLAGS_SAVED" |
||||
LDFLAGS="$LDFLAGS_SAVED" |
||||
fi |
||||
]) |
||||
@ -1,119 +0,0 @@ |
||||
# =========================================================================== |
||||
# http://www.gnu.org/software/autoconf-archive/ax_boost_locale.html |
||||
# =========================================================================== |
||||
# |
||||
# SYNOPSIS |
||||
# |
||||
# AX_BOOST_LOCALE |
||||
# |
||||
# DESCRIPTION |
||||
# |
||||
# Test for System library from the Boost C++ libraries. The macro requires |
||||
# a preceding call to AX_BOOST_BASE. Further documentation is available at |
||||
# <http://randspringer.de/boost/index.html>. |
||||
# |
||||
# This macro calls: |
||||
# |
||||
# AC_SUBST(BOOST_LOCALE_LIB) |
||||
# |
||||
# And sets: |
||||
# |
||||
# HAVE_BOOST_LOCALE |
||||
# |
||||
# LICENSE |
||||
# |
||||
# Copyright (c) 2012 Xiyue Deng <manphiz@gmail.com> |
||||
# |
||||
# Copying and distribution of this file, with or without modification, are |
||||
# permitted in any medium without royalty provided the copyright notice |
||||
# and this notice are preserved. This file is offered as-is, without any |
||||
# warranty. |
||||
|
||||
#serial 1 |
||||
|
||||
AC_DEFUN([AX_BOOST_LOCALE], |
||||
[ |
||||
AC_ARG_WITH([boost-locale], |
||||
AS_HELP_STRING([--with-boost-locale@<:@=special-lib@:>@], |
||||
[use the Locale library from boost - it is possible to specify a certain library for the linker |
||||
e.g. --with-boost-locale=boost_locale-gcc-mt ]), |
||||
[ |
||||
if test "$withval" = "no"; then |
||||
want_boost="no" |
||||
elif test "$withval" = "yes"; then |
||||
want_boost="yes" |
||||
ax_boost_user_locale_lib="" |
||||
else |
||||
want_boost="yes" |
||||
ax_boost_user_locale_lib="$withval" |
||||
fi |
||||
], |
||||
[want_boost="yes"] |
||||
) |
||||
|
||||
if test "x$want_boost" = "xyes"; then |
||||
AC_REQUIRE([AC_PROG_CC]) |
||||
AC_REQUIRE([AC_CANONICAL_BUILD]) |
||||
CPPFLAGS_SAVED="$CPPFLAGS" |
||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" |
||||
export CPPFLAGS |
||||
|
||||
LDFLAGS_SAVED="$LDFLAGS" |
||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" |
||||
export LDFLAGS |
||||
|
||||
AC_CACHE_CHECK(whether the Boost::Locale library is available, |
||||
ax_cv_boost_locale, |
||||
[AC_LANG_PUSH([C++]) |
||||
CXXFLAGS_SAVE=$CXXFLAGS |
||||
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <boost/locale.hpp>]], |
||||
[[boost::locale::generator gen; |
||||
std::locale::global(gen(""));]])], |
||||
ax_cv_boost_locale=yes, ax_cv_boost_locale=no) |
||||
CXXFLAGS=$CXXFLAGS_SAVE |
||||
AC_LANG_POP([C++]) |
||||
]) |
||||
if test "x$ax_cv_boost_locale" = "xyes"; then |
||||
AC_SUBST(BOOST_CPPFLAGS) |
||||
|
||||
AC_DEFINE(HAVE_BOOST_LOCALE,,[define if the Boost::Locale library is available]) |
||||
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` |
||||
|
||||
LDFLAGS_SAVE=$LDFLAGS |
||||
if test "x$ax_boost_user_locale_lib" = "x"; then |
||||
for libextension in `ls $BOOSTLIBDIR/libboost_locale*.so* $BOOSTLIBDIR/libboost_locale*.dylib* $BOOSTLIBDIR/libboost_locale*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_locale.*\)\.so.*$;\1;' -e 's;^lib\(boost_locale.*\)\.dylib.*$;\1;' -e 's;^lib\(boost_locale.*\)\.a.*$;\1;'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_LOCALE_LIB="-l$ax_lib"; AC_SUBST(BOOST_LOCALE_LIB) link_locale="yes"; break], |
||||
[link_locale="no"]) |
||||
done |
||||
if test "x$link_locale" != "xyes"; then |
||||
for libextension in `ls $BOOSTLIBDIR/boost_locale*.dll* $BOOSTLIBDIR/boost_locale*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_locale.*\)\.dll.*$;\1;' -e 's;^\(boost_locale.*\)\.a.*$;\1;'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_LOCALE_LIB="-l$ax_lib"; AC_SUBST(BOOST_LOCALE_LIB) link_locale="yes"; break], |
||||
[link_locale="no"]) |
||||
done |
||||
fi |
||||
|
||||
else |
||||
for ax_lib in $ax_boost_user_locale_lib boost_locale-$ax_boost_user_locale_lib; do |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_LOCALE_LIB="-l$ax_lib"; AC_SUBST(BOOST_LOCALE_LIB) link_locale="yes"; break], |
||||
[link_locale="no"]) |
||||
done |
||||
|
||||
fi |
||||
if test "x$ax_lib" = "x"; then |
||||
AC_MSG_ERROR(Could not find a version of the library!) |
||||
fi |
||||
if test "x$link_locale" = "xno"; then |
||||
AC_MSG_ERROR(Could not link against $ax_lib !) |
||||
fi |
||||
fi |
||||
|
||||
CPPFLAGS="$CPPFLAGS_SAVED" |
||||
LDFLAGS="$LDFLAGS_SAVED" |
||||
fi |
||||
]) |
||||
@ -1,120 +0,0 @@ |
||||
# =========================================================================== |
||||
# http://www.gnu.org/software/autoconf-archive/ax_boost_system.html |
||||
# =========================================================================== |
||||
# |
||||
# SYNOPSIS |
||||
# |
||||
# AX_BOOST_SYSTEM |
||||
# |
||||
# DESCRIPTION |
||||
# |
||||
# Test for System library from the Boost C++ libraries. The macro requires |
||||
# a preceding call to AX_BOOST_BASE. Further documentation is available at |
||||
# <http://randspringer.de/boost/index.html>. |
||||
# |
||||
# This macro calls: |
||||
# |
||||
# AC_SUBST(BOOST_SYSTEM_LIB) |
||||
# |
||||
# And sets: |
||||
# |
||||
# HAVE_BOOST_SYSTEM |
||||
# |
||||
# LICENSE |
||||
# |
||||
# Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de> |
||||
# Copyright (c) 2008 Michael Tindal |
||||
# Copyright (c) 2008 Daniel Casimiro <dan.casimiro@gmail.com> |
||||
# |
||||
# Copying and distribution of this file, with or without modification, are |
||||
# permitted in any medium without royalty provided the copyright notice |
||||
# and this notice are preserved. This file is offered as-is, without any |
||||
# warranty. |
||||
|
||||
#serial 17 |
||||
|
||||
AC_DEFUN([AX_BOOST_SYSTEM], |
||||
[ |
||||
AC_ARG_WITH([boost-system], |
||||
AS_HELP_STRING([--with-boost-system@<:@=special-lib@:>@], |
||||
[use the System library from boost - it is possible to specify a certain library for the linker |
||||
e.g. --with-boost-system=boost_system-gcc-mt ]), |
||||
[ |
||||
if test "$withval" = "no"; then |
||||
want_boost="no" |
||||
elif test "$withval" = "yes"; then |
||||
want_boost="yes" |
||||
ax_boost_user_system_lib="" |
||||
else |
||||
want_boost="yes" |
||||
ax_boost_user_system_lib="$withval" |
||||
fi |
||||
], |
||||
[want_boost="yes"] |
||||
) |
||||
|
||||
if test "x$want_boost" = "xyes"; then |
||||
AC_REQUIRE([AC_PROG_CC]) |
||||
AC_REQUIRE([AC_CANONICAL_BUILD]) |
||||
CPPFLAGS_SAVED="$CPPFLAGS" |
||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" |
||||
export CPPFLAGS |
||||
|
||||
LDFLAGS_SAVED="$LDFLAGS" |
||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" |
||||
export LDFLAGS |
||||
|
||||
AC_CACHE_CHECK(whether the Boost::System library is available, |
||||
ax_cv_boost_system, |
||||
[AC_LANG_PUSH([C++]) |
||||
CXXFLAGS_SAVE=$CXXFLAGS |
||||
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <boost/system/error_code.hpp>]], |
||||
[[boost::system::system_category]])], |
||||
ax_cv_boost_system=yes, ax_cv_boost_system=no) |
||||
CXXFLAGS=$CXXFLAGS_SAVE |
||||
AC_LANG_POP([C++]) |
||||
]) |
||||
if test "x$ax_cv_boost_system" = "xyes"; then |
||||
AC_SUBST(BOOST_CPPFLAGS) |
||||
|
||||
AC_DEFINE(HAVE_BOOST_SYSTEM,,[define if the Boost::System library is available]) |
||||
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` |
||||
|
||||
LDFLAGS_SAVE=$LDFLAGS |
||||
if test "x$ax_boost_user_system_lib" = "x"; then |
||||
for libextension in `ls -r $BOOSTLIBDIR/libboost_system* 2>/dev/null | sed 's,.*/lib,,' | sed 's,\..*,,'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_SYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_SYSTEM_LIB) link_system="yes"; break], |
||||
[link_system="no"]) |
||||
done |
||||
if test "x$link_system" != "xyes"; then |
||||
for libextension in `ls -r $BOOSTLIBDIR/boost_system* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do |
||||
ax_lib=${libextension} |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_SYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_SYSTEM_LIB) link_system="yes"; break], |
||||
[link_system="no"]) |
||||
done |
||||
fi |
||||
|
||||
else |
||||
for ax_lib in $ax_boost_user_system_lib boost_system-$ax_boost_user_system_lib; do |
||||
AC_CHECK_LIB($ax_lib, exit, |
||||
[BOOST_SYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_SYSTEM_LIB) link_system="yes"; break], |
||||
[link_system="no"]) |
||||
done |
||||
|
||||
fi |
||||
if test "x$ax_lib" = "x"; then |
||||
AC_MSG_ERROR(Could not find a version of the library!) |
||||
fi |
||||
if test "x$link_system" = "xno"; then |
||||
AC_MSG_ERROR(Could not link against $ax_lib !) |
||||
fi |
||||
fi |
||||
|
||||
CPPFLAGS="$CPPFLAGS_SAVED" |
||||
LDFLAGS="$LDFLAGS_SAVED" |
||||
fi |
||||
]) |
||||
File diff suppressed because it is too large
Load Diff
@ -1,237 +0,0 @@ |
||||
## intltool.m4 - Configure intltool for the target system. -*-Shell-script-*- |
||||
## Copyright (C) 2001 Eazel, Inc. |
||||
## Author: Maciej Stachowiak <mjs@noisehavoc.org> |
||||
## Kenneth Christiansen <kenneth@gnu.org> |
||||
## |
||||
## This program is free software; you can redistribute it and/or modify |
||||
## it under the terms of the GNU General Public License as published by |
||||
## the Free Software Foundation; either version 2 of the License, or |
||||
## (at your option) any later version. |
||||
## |
||||
## This program is distributed in the hope that it will be useful, but |
||||
## WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
## General Public License for more details. |
||||
## |
||||
## You should have received a copy of the GNU General Public License |
||||
## along with this program; if not, write to the Free Software |
||||
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||||
## |
||||
## As a special exception to the GNU General Public License, if you |
||||
## distribute this file as part of a program that contains a |
||||
## configuration script generated by Autoconf, you may include it under |
||||
## the same distribution terms that you use for the rest of that program. |
||||
|
||||
dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) |
||||
# serial 42 IT_PROG_INTLTOOL |
||||
AC_DEFUN([IT_PROG_INTLTOOL], [ |
||||
AC_PREREQ([2.50])dnl |
||||
AC_REQUIRE([AM_NLS])dnl |
||||
|
||||
case "$am__api_version" in |
||||
1.[01234]) |
||||
AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) |
||||
;; |
||||
*) |
||||
;; |
||||
esac |
||||
|
||||
INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` |
||||
INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` |
||||
INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` |
||||
if test -n "$1"; then |
||||
AC_MSG_CHECKING([for intltool >= $1]) |
||||
AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) |
||||
test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || |
||||
AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) |
||||
fi |
||||
|
||||
AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) |
||||
AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) |
||||
AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) |
||||
if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then |
||||
AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) |
||||
fi |
||||
|
||||
if test -z "$AM_DEFAULT_VERBOSITY"; then |
||||
AM_DEFAULT_VERBOSITY=1 |
||||
fi |
||||
AC_SUBST([AM_DEFAULT_VERBOSITY]) |
||||
|
||||
INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' |
||||
INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' |
||||
INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;' |
||||
AC_SUBST(INTLTOOL_V_MERGE) |
||||
AC_SUBST(INTLTOOL__v_MERGE_) |
||||
AC_SUBST(INTLTOOL__v_MERGE_0) |
||||
|
||||
INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' |
||||
intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' |
||||
intltool__v_merge_options_0='-q' |
||||
AC_SUBST(INTLTOOL_V_MERGE_OPTIONS) |
||||
AC_SUBST(intltool__v_merge_options_) |
||||
AC_SUBST(intltool__v_merge_options_0) |
||||
|
||||
INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then |
||||
INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@' |
||||
else |
||||
INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir' |
||||
fi |
||||
INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |
||||
|
||||
_IT_SUBST(INTLTOOL_DESKTOP_RULE) |
||||
_IT_SUBST(INTLTOOL_DIRECTORY_RULE) |
||||
_IT_SUBST(INTLTOOL_KEYS_RULE) |
||||
_IT_SUBST(INTLTOOL_PROP_RULE) |
||||
_IT_SUBST(INTLTOOL_OAF_RULE) |
||||
_IT_SUBST(INTLTOOL_PONG_RULE) |
||||
_IT_SUBST(INTLTOOL_SERVER_RULE) |
||||
_IT_SUBST(INTLTOOL_SHEET_RULE) |
||||
_IT_SUBST(INTLTOOL_SOUNDLIST_RULE) |
||||
_IT_SUBST(INTLTOOL_UI_RULE) |
||||
_IT_SUBST(INTLTOOL_XAM_RULE) |
||||
_IT_SUBST(INTLTOOL_KBD_RULE) |
||||
_IT_SUBST(INTLTOOL_XML_RULE) |
||||
_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) |
||||
_IT_SUBST(INTLTOOL_CAVES_RULE) |
||||
_IT_SUBST(INTLTOOL_SCHEMAS_RULE) |
||||
_IT_SUBST(INTLTOOL_THEME_RULE) |
||||
_IT_SUBST(INTLTOOL_SERVICE_RULE) |
||||
_IT_SUBST(INTLTOOL_POLICY_RULE) |
||||
|
||||
# Check the gettext tools to make sure they are GNU |
||||
AC_PATH_PROG(XGETTEXT, xgettext) |
||||
AC_PATH_PROG(MSGMERGE, msgmerge) |
||||
AC_PATH_PROG(MSGFMT, msgfmt) |
||||
AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) |
||||
if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then |
||||
AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) |
||||
fi |
||||
xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" |
||||
mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" |
||||
mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" |
||||
if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then |
||||
AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) |
||||
fi |
||||
|
||||
AC_PATH_PROG(INTLTOOL_PERL, perl) |
||||
if test -z "$INTLTOOL_PERL"; then |
||||
AC_MSG_ERROR([perl not found]) |
||||
fi |
||||
AC_MSG_CHECKING([for perl >= 5.8.1]) |
||||
$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 |
||||
if test $? -ne 0; then |
||||
AC_MSG_ERROR([perl 5.8.1 is required for intltool]) |
||||
else |
||||
IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` |
||||
AC_MSG_RESULT([$IT_PERL_VERSION]) |
||||
fi |
||||
if test "x$2" != "xno-xml"; then |
||||
AC_MSG_CHECKING([for XML::Parser]) |
||||
if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then |
||||
AC_MSG_RESULT([ok]) |
||||
else |
||||
AC_MSG_ERROR([XML::Parser perl module is required for intltool]) |
||||
fi |
||||
fi |
||||
|
||||
# Substitute ALL_LINGUAS so we can use it in po/Makefile |
||||
AC_SUBST(ALL_LINGUAS) |
||||
|
||||
# Set DATADIRNAME correctly if it is not set yet |
||||
# (copied from glib-gettext.m4) |
||||
if test -z "$DATADIRNAME"; then |
||||
AC_LINK_IFELSE( |
||||
[AC_LANG_PROGRAM([[]], |
||||
[[extern int _nl_msg_cat_cntr; |
||||
return _nl_msg_cat_cntr]])], |
||||
[DATADIRNAME=share], |
||||
[case $host in |
||||
*-*-solaris*) |
||||
dnl On Solaris, if bind_textdomain_codeset is in libc, |
||||
dnl GNU format message catalog is always supported, |
||||
dnl since both are added to the libc all together. |
||||
dnl Hence, we'd like to go with DATADIRNAME=share |
||||
dnl in this case. |
||||
AC_CHECK_FUNC(bind_textdomain_codeset, |
||||
[DATADIRNAME=share], [DATADIRNAME=lib]) |
||||
;; |
||||
*) |
||||
[DATADIRNAME=lib] |
||||
;; |
||||
esac]) |
||||
fi |
||||
AC_SUBST(DATADIRNAME) |
||||
|
||||
IT_PO_SUBDIR([po]) |
||||
|
||||
]) |
||||
|
||||
|
||||
# IT_PO_SUBDIR(DIRNAME) |
||||
# --------------------- |
||||
# All po subdirs have to be declared with this macro; the subdir "po" is |
||||
# declared by IT_PROG_INTLTOOL. |
||||
# |
||||
AC_DEFUN([IT_PO_SUBDIR], |
||||
[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. |
||||
dnl |
||||
dnl The following CONFIG_COMMANDS should be executed at the very end |
||||
dnl of config.status. |
||||
AC_CONFIG_COMMANDS_PRE([ |
||||
AC_CONFIG_COMMANDS([$1/stamp-it], [ |
||||
if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then |
||||
AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) |
||||
fi |
||||
rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" |
||||
>"$1/stamp-it.tmp" |
||||
[sed '/^#/d |
||||
s/^[[].*] *// |
||||
/^[ ]*$/d |
||||
'"s|^| $ac_top_srcdir/|" \ |
||||
"$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" |
||||
] |
||||
[sed '/^POTFILES =/,/[^\\]$/ { |
||||
/^POTFILES =/!d |
||||
r $1/POTFILES |
||||
} |
||||
' "$1/Makefile.in" >"$1/Makefile"] |
||||
rm -f "$1/Makefile.tmp" |
||||
mv "$1/stamp-it.tmp" "$1/stamp-it" |
||||
]) |
||||
])dnl |
||||
]) |
||||
|
||||
# _IT_SUBST(VARIABLE) |
||||
# ------------------- |
||||
# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST |
||||
# |
||||
AC_DEFUN([_IT_SUBST], |
||||
[ |
||||
AC_SUBST([$1]) |
||||
m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) |
||||
] |
||||
) |
||||
|
||||
# deprecated macros |
||||
AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) |
||||
# A hint is needed for aclocal from Automake <= 1.9.4: |
||||
# AC_DEFUN([AC_PROG_INTLTOOL], ...) |
||||
|
||||
@ -1,123 +0,0 @@ |
||||
# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- |
||||
# |
||||
# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. |
||||
# Written by Gary V. Vaughan, 2004 |
||||
# |
||||
# This file is free software; the Free Software Foundation gives |
||||
# unlimited permission to copy and/or distribute it, with or without |
||||
# modifications, as long as this notice is preserved. |
||||
|
||||
# serial 6 ltsugar.m4 |
||||
|
||||
# This is to help aclocal find these macros, as it can't see m4_define. |
||||
AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) |
||||
|
||||
|
||||
# lt_join(SEP, ARG1, [ARG2...]) |
||||
# ----------------------------- |
||||
# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their |
||||
# associated separator. |
||||
# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier |
||||
# versions in m4sugar had bugs. |
||||
m4_define([lt_join], |
||||
[m4_if([$#], [1], [], |
||||
[$#], [2], [[$2]], |
||||
[m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) |
||||
m4_define([_lt_join], |
||||
[m4_if([$#$2], [2], [], |
||||
[m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) |
||||
|
||||
|
||||
# lt_car(LIST) |
||||
# lt_cdr(LIST) |
||||
# ------------ |
||||
# Manipulate m4 lists. |
||||
# These macros are necessary as long as will still need to support |
||||
# Autoconf-2.59 which quotes differently. |
||||
m4_define([lt_car], [[$1]]) |
||||
m4_define([lt_cdr], |
||||
[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], |
||||
[$#], 1, [], |
||||
[m4_dquote(m4_shift($@))])]) |
||||
m4_define([lt_unquote], $1) |
||||
|
||||
|
||||
# lt_append(MACRO-NAME, STRING, [SEPARATOR]) |
||||
# ------------------------------------------ |
||||
# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. |
||||
# Note that neither SEPARATOR nor STRING are expanded; they are appended |
||||
# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). |
||||
# No SEPARATOR is output if MACRO-NAME was previously undefined (different |
||||
# than defined and empty). |
||||
# |
||||
# This macro is needed until we can rely on Autoconf 2.62, since earlier |
||||
# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. |
||||
m4_define([lt_append], |
||||
[m4_define([$1], |
||||
m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) |
||||
|
||||
|
||||
|
||||
# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) |
||||
# ---------------------------------------------------------- |
||||
# Produce a SEP delimited list of all paired combinations of elements of |
||||
# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list |
||||
# has the form PREFIXmINFIXSUFFIXn. |
||||
# Needed until we can rely on m4_combine added in Autoconf 2.62. |
||||
m4_define([lt_combine], |
||||
[m4_if(m4_eval([$# > 3]), [1], |
||||
[m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl |
||||
[[m4_foreach([_Lt_prefix], [$2], |
||||
[m4_foreach([_Lt_suffix], |
||||
]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, |
||||
[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) |
||||
|
||||
|
||||
# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) |
||||
# ----------------------------------------------------------------------- |
||||
# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited |
||||
# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. |
||||
m4_define([lt_if_append_uniq], |
||||
[m4_ifdef([$1], |
||||
[m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], |
||||
[lt_append([$1], [$2], [$3])$4], |
||||
[$5])], |
||||
[lt_append([$1], [$2], [$3])$4])]) |
||||
|
||||
|
||||
# lt_dict_add(DICT, KEY, VALUE) |
||||
# ----------------------------- |
||||
m4_define([lt_dict_add], |
||||
[m4_define([$1($2)], [$3])]) |
||||
|
||||
|
||||
# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) |
||||
# -------------------------------------------- |
||||
m4_define([lt_dict_add_subkey], |
||||
[m4_define([$1($2:$3)], [$4])]) |
||||
|
||||
|
||||
# lt_dict_fetch(DICT, KEY, [SUBKEY]) |
||||
# ---------------------------------- |
||||
m4_define([lt_dict_fetch], |
||||
[m4_ifval([$3], |
||||
m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), |
||||
m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) |
||||
|
||||
|
||||
# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) |
||||
# ----------------------------------------------------------------- |
||||
m4_define([lt_if_dict_fetch], |
||||
[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], |
||||
[$5], |
||||
[$6])]) |
||||
|
||||
|
||||
# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) |
||||
# -------------------------------------------------------------- |
||||
m4_define([lt_dict_filter], |
||||
[m4_if([$5], [], [], |
||||
[lt_join(m4_quote(m4_default([$4], [[, ]])), |
||||
lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), |
||||
[lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl |
||||
]) |
||||
@ -1,98 +0,0 @@ |
||||
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- |
||||
# |
||||
# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. |
||||
# Written by Scott James Remnant, 2004. |
||||
# |
||||
# This file is free software; the Free Software Foundation gives |
||||
# unlimited permission to copy and/or distribute it, with or without |
||||
# modifications, as long as this notice is preserved. |
||||
|
||||
# serial 5 lt~obsolete.m4 |
||||
|
||||
# These exist entirely to fool aclocal when bootstrapping libtool. |
||||
# |
||||
# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) |
||||
# which have later been changed to m4_define as they aren't part of the |
||||
# exported API, or moved to Autoconf or Automake where they belong. |
||||
# |
||||
# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN |
||||
# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us |
||||
# using a macro with the same name in our local m4/libtool.m4 it'll |
||||
# pull the old libtool.m4 in (it doesn't see our shiny new m4_define |
||||
# and doesn't know about Autoconf macros at all.) |
||||
# |
||||
# So we provide this file, which has a silly filename so it's always |
||||
# included after everything else. This provides aclocal with the |
||||
# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything |
||||
# because those macros already exist, or will be overwritten later. |
||||
# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. |
||||
# |
||||
# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. |
||||
# Yes, that means every name once taken will need to remain here until |
||||
# we give up compatibility with versions before 1.7, at which point |
||||
# we need to keep only those names which we still refer to. |
||||
|
||||
# This is to help aclocal find these macros, as it can't see m4_define. |
||||
AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) |
||||
|
||||
m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) |
||||
m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) |
||||
m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) |
||||
m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) |
||||
m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) |
||||
m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) |
||||
m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) |
||||
m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) |
||||
m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) |
||||
m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) |
||||
m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) |
||||
m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) |
||||
m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) |
||||
m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) |
||||
m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) |
||||
m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) |
||||
m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) |
||||
m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) |
||||
m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) |
||||
m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) |
||||
m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) |
||||
m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) |
||||
m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) |
||||
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) |
||||
m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) |
||||
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) |
||||
m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) |
||||
m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) |
||||
m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) |
||||
m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) |
||||
m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) |
||||
m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) |
||||
m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) |
||||
m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) |
||||
m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) |
||||
m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) |
||||
m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) |
||||
m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) |
||||
m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) |
||||
m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) |
||||
m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) |
||||
m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) |
||||
m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) |
||||
m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) |
||||
m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) |
||||
m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) |
||||
m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) |
||||
m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) |
||||
m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) |
||||
m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) |
||||
m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) |
||||
m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) |
||||
m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) |
||||
m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) |
||||
m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) |
||||
m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) |
||||
m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) |
||||
m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) |
||||
m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) |
||||
m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) |
||||
m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) |
||||
Loading…
Reference in new issue