1999-08-16 21:50:52 +00:00
|
|
|
dnl aclocal.m4 for ICU
|
2007-04-05 07:29:13 +00:00
|
|
|
dnl Copyright (c) 1999-2007, International Business Machines Corporation and
|
2000-01-17 19:48:20 +00:00
|
|
|
dnl others. All Rights Reserved.
|
1999-08-16 21:50:52 +00:00
|
|
|
dnl Stephen F. Booth
|
|
|
|
|
|
|
|
dnl @TOP@
|
|
|
|
|
|
|
|
dnl ICU_CHECK_MH_FRAG
|
|
|
|
AC_DEFUN(ICU_CHECK_MH_FRAG, [
|
|
|
|
AC_CACHE_CHECK(
|
|
|
|
[which Makefile fragment to use],
|
|
|
|
[icu_cv_host_frag],
|
|
|
|
[
|
|
|
|
case "${host}" in
|
2000-05-23 21:06:02 +00:00
|
|
|
*-*-solaris*)
|
2004-05-12 16:40:18 +00:00
|
|
|
if test "$GCC" = yes; then
|
2007-07-12 04:21:34 +00:00
|
|
|
icu_cv_host_frag=mh-solaris-gcc
|
1999-08-16 21:50:52 +00:00
|
|
|
else
|
2001-11-28 04:10:53 +00:00
|
|
|
icu_cv_host_frag=mh-solaris
|
1999-08-16 21:50:52 +00:00
|
|
|
fi ;;
|
2001-05-25 18:00:38 +00:00
|
|
|
alpha*-*-linux-gnu)
|
2004-05-12 16:40:18 +00:00
|
|
|
if test "$GCC" = yes; then
|
2001-05-25 18:00:38 +00:00
|
|
|
icu_cv_host_frag=mh-alpha-linux-gcc
|
2007-07-12 04:21:34 +00:00
|
|
|
else
|
2001-05-25 18:00:38 +00:00
|
|
|
icu_cv_host_frag=mh-alpha-linux-cc
|
|
|
|
fi ;;
|
2004-09-30 18:51:03 +00:00
|
|
|
powerpc*-*-linux*)
|
|
|
|
if test "$GCC" = yes; then
|
2007-07-26 06:42:56 +00:00
|
|
|
icu_cv_host_frag=mh-linux
|
2004-09-30 18:51:03 +00:00
|
|
|
else
|
2007-07-26 06:42:56 +00:00
|
|
|
icu_cv_host_frag=mh-linux-va
|
2004-09-30 18:51:03 +00:00
|
|
|
fi ;;
|
2007-08-18 00:48:16 +00:00
|
|
|
*-*-linux*|*-pc-gnu) icu_cv_host_frag=mh-linux ;;
|
2007-07-26 06:42:56 +00:00
|
|
|
*-*-cygwin|*-*-mingw32)
|
2004-09-30 18:51:03 +00:00
|
|
|
if test "$GCC" = yes; then
|
2007-07-26 06:42:56 +00:00
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#ifndef __MINGW32__
|
|
|
|
#error This is not MinGW
|
|
|
|
#endif], [], icu_cv_host_frag=mh-mingw, icu_cv_host_frag=mh-cygwin)
|
2003-02-11 00:13:48 +00:00
|
|
|
else
|
2007-07-26 06:42:56 +00:00
|
|
|
icu_cv_host_frag=mh-cygwin-msvc
|
2004-11-01 23:22:40 +00:00
|
|
|
fi ;;
|
2006-02-09 09:12:47 +00:00
|
|
|
*-*-*bsd*|*-*-dragonfly*) icu_cv_host_frag=mh-bsd-gcc ;;
|
2002-07-19 22:21:21 +00:00
|
|
|
*-*-aix*)
|
2004-05-12 16:40:18 +00:00
|
|
|
if test "$GCC" = yes; then
|
|
|
|
icu_cv_host_frag=mh-aix-gcc
|
2002-07-19 22:21:21 +00:00
|
|
|
else
|
2007-04-05 07:29:13 +00:00
|
|
|
icu_cv_host_frag=mh-aix-va
|
2002-07-19 22:21:21 +00:00
|
|
|
fi ;;
|
1999-08-16 21:50:52 +00:00
|
|
|
*-*-hpux*)
|
2004-05-12 16:40:18 +00:00
|
|
|
if test "$GCC" = yes; then
|
2002-11-01 19:12:24 +00:00
|
|
|
icu_cv_host_frag=mh-hpux-gcc
|
|
|
|
else
|
|
|
|
case "$CXX" in
|
|
|
|
*aCC) icu_cv_host_frag=mh-hpux-acc ;;
|
|
|
|
esac
|
|
|
|
fi ;;
|
2001-11-05 22:28:09 +00:00
|
|
|
*-*ibm-openedition*|*-*-os390*) icu_cv_host_frag=mh-os390 ;;
|
2000-10-24 19:50:20 +00:00
|
|
|
*-*-os400*) icu_cv_host_frag=mh-os400 ;;
|
|
|
|
*-apple-rhapsody*) icu_cv_host_frag=mh-darwin ;;
|
|
|
|
*-apple-darwin*) icu_cv_host_frag=mh-darwin ;;
|
2003-06-23 03:09:00 +00:00
|
|
|
*-*-beos) icu_cv_host_frag=mh-beos ;;
|
2003-03-15 02:22:07 +00:00
|
|
|
*-*-irix*) icu_cv_host_frag=mh-irix ;;
|
|
|
|
*-dec-osf*) icu_cv_host_frag=mh-alpha-osf ;;
|
|
|
|
*-*-nto*) icu_cv_host_frag=mh-qnx ;;
|
2003-06-23 23:16:10 +00:00
|
|
|
*-ncr-*) icu_cv_host_frag=mh-mpras ;;
|
2000-10-24 19:50:20 +00:00
|
|
|
*) icu_cv_host_frag=mh-unknown ;;
|
1999-08-16 21:50:52 +00:00
|
|
|
esac
|
|
|
|
]
|
|
|
|
)
|
|
|
|
])
|
|
|
|
|
2004-04-01 00:21:58 +00:00
|
|
|
dnl ICU_CONDITIONAL - similar example taken from Automake 1.4
|
1999-08-16 21:50:52 +00:00
|
|
|
AC_DEFUN(ICU_CONDITIONAL,
|
|
|
|
[AC_SUBST($1_TRUE)
|
|
|
|
if $2; then
|
|
|
|
$1_TRUE=
|
|
|
|
else
|
|
|
|
$1_TRUE='#'
|
|
|
|
fi])
|
1999-12-29 01:09:27 +00:00
|
|
|
|
2005-10-05 07:38:03 +00:00
|
|
|
dnl ICU_PROG_LINK - Make sure that the linker is usable
|
|
|
|
AC_DEFUN(ICU_PROG_LINK,
|
|
|
|
[
|
|
|
|
case "${host}" in
|
|
|
|
*-*-cygwin*|*-*-mingw*)
|
|
|
|
if test "$GCC" != yes && test -n "`link --version 2>&1 | grep 'GNU coreutils'`"; then
|
|
|
|
AC_MSG_ERROR([link.exe is not a valid linker. Your PATH is incorrect.
|
|
|
|
Please follow the directions in ICU's readme.])
|
|
|
|
fi;;
|
|
|
|
*);;
|
|
|
|
esac])
|
|
|
|
|
2000-10-18 20:35:21 +00:00
|
|
|
dnl AC_SEARCH_LIBS_FIRST(FUNCTION, SEARCH-LIBS [, ACTION-IF-FOUND
|
|
|
|
dnl [, ACTION-IF-NOT-FOUND [, OTHER-LIBRARIES]]])
|
|
|
|
dnl Search for a library defining FUNC, then see if it's not already available.
|
2007-07-12 04:21:34 +00:00
|
|
|
|
2000-10-18 20:35:21 +00:00
|
|
|
AC_DEFUN(AC_SEARCH_LIBS_FIRST,
|
|
|
|
[AC_PREREQ([2.13])
|
|
|
|
AC_CACHE_CHECK([for library containing $1], [ac_cv_search_$1],
|
|
|
|
[ac_func_search_save_LIBS="$LIBS"
|
|
|
|
ac_cv_search_$1="no"
|
|
|
|
for i in $2; do
|
|
|
|
LIBS="-l$i $5 $ac_func_search_save_LIBS"
|
|
|
|
AC_TRY_LINK_FUNC([$1],
|
|
|
|
[ac_cv_search_$1="-l$i"
|
|
|
|
break])
|
|
|
|
done
|
|
|
|
if test "$ac_cv_search_$1" = "no"; then
|
|
|
|
AC_TRY_LINK_FUNC([$1], [ac_cv_search_$1="none required"])
|
|
|
|
fi
|
|
|
|
LIBS="$ac_func_search_save_LIBS"])
|
|
|
|
if test "$ac_cv_search_$1" != "no"; then
|
|
|
|
test "$ac_cv_search_$1" = "none required" || LIBS="$ac_cv_search_$1 $LIBS"
|
|
|
|
$3
|
|
|
|
else :
|
|
|
|
$4
|
|
|
|
fi])
|
|
|
|
|
2002-03-22 22:46:46 +00:00
|
|
|
dnl Check if we can build and use 64-bit libraries
|
|
|
|
AC_DEFUN(AC_CHECK_64BIT_LIBS,
|
|
|
|
[
|
|
|
|
AC_ARG_ENABLE(64bit-libs,
|
|
|
|
[ --enable-64bit-libs build 64-bit libraries [default=yes]],
|
|
|
|
[ENABLE_64BIT_LIBS=${enableval}],
|
|
|
|
[ENABLE_64BIT_LIBS=yes]
|
|
|
|
)
|
|
|
|
dnl These results can't be cached because is sets compiler flags.
|
|
|
|
AC_MSG_CHECKING([for 64-bit executable support])
|
2004-10-22 23:08:16 +00:00
|
|
|
if test "$ENABLE_64BIT_LIBS" != no; then
|
2007-08-03 20:44:41 +00:00
|
|
|
if test "$GCC" = yes; then
|
|
|
|
dnl First we check that gcc already compiles as 64-bit
|
|
|
|
if test -n "`$CXX -dumpspecs 2>&1 && $CC -dumpspecs 2>&1 | grep -v __LP64__`"; then
|
|
|
|
ENABLE_64BIT_LIBS=yes
|
2004-10-22 23:08:16 +00:00
|
|
|
else
|
2007-08-03 20:44:41 +00:00
|
|
|
dnl Now we check a little more forcefully.
|
|
|
|
dnl Maybe the compiler builds as 32-bit on a 64-bit machine.
|
|
|
|
OLD_CFLAGS="${CFLAGS}"
|
|
|
|
OLD_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
CFLAGS="${CFLAGS} -m64"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -m64"
|
|
|
|
AC_TRY_RUN(int main(void) {return 0;},
|
|
|
|
ENABLE_64BIT_LIBS=yes, ENABLE_64BIT_LIBS=no, ENABLE_64BIT_LIBS=no)
|
|
|
|
if test "$ENABLE_64BIT_LIBS" = no; then
|
|
|
|
# Nope. We're on a 32-bit machine with a 32-bit compiler.
|
|
|
|
CFLAGS="${OLD_CFLAGS}"
|
|
|
|
CXXFLAGS="${OLD_CXXFLAGS}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
case "${host}" in
|
|
|
|
sparc*-*-solaris*)
|
|
|
|
SPARCV9=`isainfo -n 2>&1 | grep sparcv9`
|
2002-03-22 22:46:46 +00:00
|
|
|
SOL64=`$CXX -xarch=v9 2>&1 && $CC -xarch=v9 2>&1 | grep -v usage:`
|
|
|
|
if test -z "$SOL64" && test -n "$SPARCV9"; then
|
|
|
|
CFLAGS="${CFLAGS} -xtarget=ultra -xarch=v9"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -xtarget=ultra -xarch=v9"
|
|
|
|
LDFLAGS="${LDFLAGS} -xtarget=ultra -xarch=v9"
|
|
|
|
ENABLE_64BIT_LIBS=yes
|
|
|
|
else
|
|
|
|
ENABLE_64BIT_LIBS=no
|
|
|
|
fi
|
2007-08-03 20:44:41 +00:00
|
|
|
;;
|
|
|
|
i386-*-solaris*)
|
|
|
|
AMD64=`isainfo -n 2>&1 | grep amd64`
|
|
|
|
# The new compiler option
|
|
|
|
SOL64=`$CXX -m64 2>&1 && $CC -m64 2>&1 | grep -v usage:`
|
2007-07-12 04:21:34 +00:00
|
|
|
if test -z "$SOL64" && test -n "$AMD64"; then
|
2007-08-03 20:44:41 +00:00
|
|
|
CFLAGS="${CFLAGS} -m64"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -m64"
|
2004-05-12 16:40:18 +00:00
|
|
|
ENABLE_64BIT_LIBS=yes
|
|
|
|
else
|
2007-08-03 20:44:41 +00:00
|
|
|
# The older compiler option
|
|
|
|
SOL64=`$CXX -xtarget=generic64 2>&1 && $CC -xtarget=generic64 2>&1 | grep -v usage:`
|
|
|
|
if test -z "$SOL64" && test -n "$AMD64"; then
|
|
|
|
CFLAGS="${CFLAGS} -xtarget=generic64"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -xtarget=generic64"
|
|
|
|
ENABLE_64BIT_LIBS=yes
|
|
|
|
else
|
|
|
|
ENABLE_64BIT_LIBS=no
|
|
|
|
fi
|
2004-05-12 16:40:18 +00:00
|
|
|
fi
|
2007-08-03 20:44:41 +00:00
|
|
|
;;
|
|
|
|
ia64-*-linux*)
|
2004-05-12 16:40:18 +00:00
|
|
|
# check for ecc/ecpc compiler support
|
|
|
|
if test -n "`$CXX --help 2>&1 && $CC --help 2>&1 | grep -v Intel`"; then
|
|
|
|
if test -n "`$CXX --help 2>&1 && $CC --help 2>&1 | grep -v Itanium`"; then
|
|
|
|
ENABLE_64BIT_LIBS=yes
|
|
|
|
else
|
|
|
|
ENABLE_64BIT_LIBS=no
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# unknown
|
|
|
|
ENABLE_64BIT_LIBS=no
|
|
|
|
fi
|
2007-08-03 20:44:41 +00:00
|
|
|
;;
|
|
|
|
*-*-cygwin)
|
|
|
|
dnl vcvarsamd64.bat should have been used to enable 64-bit builds.
|
|
|
|
dnl We only do this check to display the correct answer.
|
|
|
|
if test -n "`$CXX -help 2>&1 | grep 'for x64'`"; then
|
2005-10-28 00:35:00 +00:00
|
|
|
ENABLE_64BIT_LIBS=yes
|
|
|
|
else
|
2007-08-03 20:44:41 +00:00
|
|
|
# unknown
|
2005-10-28 00:35:00 +00:00
|
|
|
ENABLE_64BIT_LIBS=no
|
|
|
|
fi
|
2007-08-03 20:44:41 +00:00
|
|
|
;;
|
|
|
|
*-*-aix*|powerpc64-*-linux*)
|
2004-05-12 16:40:18 +00:00
|
|
|
OLD_CFLAGS="${CFLAGS}"
|
|
|
|
OLD_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
OLD_LDFLAGS="${LDFLAGS}"
|
|
|
|
CFLAGS="${CFLAGS} -q64"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -q64"
|
|
|
|
LDFLAGS="${LDFLAGS} -q64"
|
|
|
|
AC_TRY_RUN(int main(void) {return 0;},
|
|
|
|
ENABLE_64BIT_LIBS=yes, ENABLE_64BIT_LIBS=no, ENABLE_64BIT_LIBS=no)
|
|
|
|
if test "$ENABLE_64BIT_LIBS" = no; then
|
|
|
|
CFLAGS="${OLD_CFLAGS}"
|
|
|
|
CXXFLAGS="${OLD_CXXFLAGS}"
|
|
|
|
LDFLAGS="${OLD_LDFLAGS}"
|
|
|
|
else
|
2004-10-09 00:45:25 +00:00
|
|
|
case "${host}" in
|
|
|
|
*-*-aix*)
|
|
|
|
ARFLAGS="${ARFLAGS} -X64"
|
|
|
|
esac
|
2004-05-12 16:40:18 +00:00
|
|
|
fi
|
2007-08-03 20:44:41 +00:00
|
|
|
;;
|
|
|
|
*-*-hpux*)
|
|
|
|
dnl First we try the newer +DD64, if that doesn't work,
|
|
|
|
dnl try other options.
|
2004-04-01 23:47:10 +00:00
|
|
|
|
2007-08-03 20:44:41 +00:00
|
|
|
OLD_CFLAGS="${CFLAGS}"
|
|
|
|
OLD_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
CFLAGS="${CFLAGS} +DD64"
|
|
|
|
CXXFLAGS="${CXXFLAGS} +DD64"
|
2004-04-01 23:47:10 +00:00
|
|
|
AC_TRY_RUN(int main(void) {return 0;},
|
|
|
|
ENABLE_64BIT_LIBS=yes, ENABLE_64BIT_LIBS=no, ENABLE_64BIT_LIBS=no)
|
|
|
|
if test "$ENABLE_64BIT_LIBS" = no; then
|
|
|
|
CFLAGS="${OLD_CFLAGS}"
|
|
|
|
CXXFLAGS="${OLD_CXXFLAGS}"
|
2007-08-03 20:44:41 +00:00
|
|
|
CFLAGS="${CFLAGS} +DA2.0W"
|
|
|
|
CXXFLAGS="${CXXFLAGS} +DA2.0W"
|
|
|
|
AC_TRY_RUN(int main(void) {return 0;},
|
|
|
|
ENABLE_64BIT_LIBS=yes, ENABLE_64BIT_LIBS=no, ENABLE_64BIT_LIBS=no)
|
|
|
|
if test "$ENABLE_64BIT_LIBS" = no; then
|
|
|
|
CFLAGS="${OLD_CFLAGS}"
|
|
|
|
CXXFLAGS="${OLD_CXXFLAGS}"
|
|
|
|
fi
|
2004-04-01 23:47:10 +00:00
|
|
|
fi
|
2007-08-03 20:44:41 +00:00
|
|
|
;;
|
|
|
|
*-*ibm-openedition*|*-*-os390*)
|
|
|
|
OLD_CFLAGS="${CFLAGS}"
|
|
|
|
OLD_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
OLD_LDFLAGS="${LDFLAGS}"
|
|
|
|
CFLAGS="${CFLAGS} -Wc,lp64"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -Wc,lp64"
|
|
|
|
LDFLAGS="${LDFLAGS} -Wl,lp64"
|
|
|
|
AC_TRY_RUN(int main(void) {return 0;},
|
|
|
|
ENABLE_64BIT_LIBS=yes, ENABLE_64BIT_LIBS=no, ENABLE_64BIT_LIBS=no)
|
|
|
|
if test "$ENABLE_64BIT_LIBS" = no; then
|
|
|
|
CFLAGS="${OLD_CFLAGS}"
|
|
|
|
CXXFLAGS="${OLD_CXXFLAGS}"
|
|
|
|
LDFLAGS="${OLD_LDFLAGS}"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ENABLE_64BIT_LIBS=no
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2006-06-09 01:33:53 +00:00
|
|
|
else
|
|
|
|
if test "$GCC" = yes; then
|
|
|
|
OLD_CFLAGS="${CFLAGS}"
|
|
|
|
OLD_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
CFLAGS="${CFLAGS} -m32"
|
|
|
|
CXXFLAGS="${CXXFLAGS} -m32"
|
|
|
|
AC_TRY_RUN(int main(void) {return 0;},
|
|
|
|
ENABLE_64BIT_LIBS=no, ENABLE_64BIT_LIBS=yes, ENABLE_64BIT_LIBS=yes)
|
|
|
|
if test "$ENABLE_64BIT_LIBS" = yes; then
|
|
|
|
CFLAGS="${OLD_CFLAGS}"
|
|
|
|
CXXFLAGS="${OLD_CXXFLAGS}"
|
|
|
|
fi
|
|
|
|
fi
|
2002-03-22 22:46:46 +00:00
|
|
|
fi
|
|
|
|
dnl Individual tests that fail should reset their own flags.
|
|
|
|
AC_MSG_RESULT($ENABLE_64BIT_LIBS)
|
|
|
|
])
|
|
|
|
|
2000-04-10 21:54:53 +00:00
|
|
|
dnl Strict compilation options.
|
|
|
|
AC_DEFUN(AC_CHECK_STRICT_COMPILE,
|
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([whether strict compiling is on])
|
2000-04-10 22:38:53 +00:00
|
|
|
AC_ARG_ENABLE(strict,[ --enable-strict compile with strict compiler options [default=no]], [
|
2004-04-07 05:32:19 +00:00
|
|
|
if test "$enableval" = no
|
|
|
|
then
|
|
|
|
ac_use_strict_options=no
|
2000-04-10 21:54:53 +00:00
|
|
|
else
|
2004-04-07 05:32:19 +00:00
|
|
|
ac_use_strict_options=yes
|
2000-04-10 21:54:53 +00:00
|
|
|
fi
|
2000-04-10 22:52:58 +00:00
|
|
|
], [ac_use_strict_options=no])
|
2000-04-10 22:38:53 +00:00
|
|
|
AC_MSG_RESULT($ac_use_strict_options)
|
2000-04-10 21:54:53 +00:00
|
|
|
|
2000-04-10 22:38:53 +00:00
|
|
|
if test "$ac_use_strict_options" = yes
|
2000-04-10 21:54:53 +00:00
|
|
|
then
|
|
|
|
if test "$GCC" = yes
|
|
|
|
then
|
2006-03-23 03:16:09 +00:00
|
|
|
CFLAGS="$CFLAGS -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long"
|
2002-07-30 22:07:31 +00:00
|
|
|
case "${host}" in
|
|
|
|
*-*-solaris*)
|
|
|
|
CFLAGS="$CFLAGS -D__STDC__=0";;
|
|
|
|
esac
|
2004-05-30 07:18:39 +00:00
|
|
|
else
|
|
|
|
case "${host}" in
|
|
|
|
*-*-cygwin)
|
|
|
|
if test "`$CC /help 2>&1 | head -c9`" = "Microsoft"
|
|
|
|
then
|
|
|
|
CFLAGS="$CFLAGS /W4"
|
|
|
|
fi
|
|
|
|
esac
|
2000-04-10 21:54:53 +00:00
|
|
|
fi
|
|
|
|
if test "$GXX" = yes
|
|
|
|
then
|
2006-03-23 03:16:09 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long"
|
2002-07-30 22:07:31 +00:00
|
|
|
case "${host}" in
|
|
|
|
*-*-solaris*)
|
|
|
|
CXXFLAGS="$CXXFLAGS -D__STDC__=0";;
|
|
|
|
esac
|
2004-05-30 07:18:39 +00:00
|
|
|
else
|
|
|
|
case "${host}" in
|
|
|
|
*-*-cygwin)
|
|
|
|
if test "`$CXX /help 2>&1 | head -c9`" = "Microsoft"
|
|
|
|
then
|
|
|
|
CXXFLAGS="$CXXFLAGS /W4"
|
|
|
|
fi
|
|
|
|
esac
|
2000-04-10 21:54:53 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2004-05-12 16:40:18 +00:00
|
|
|
|