add --enable-64 configure flag to build 64 bit with suncc

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6299 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2007-11-16 05:07:35 +00:00
parent c5765d0c61
commit 29176defca
3 changed files with 40 additions and 2 deletions

View File

@@ -223,6 +223,14 @@ AC_ARG_ENABLE(64bit,
USE_64=1
fi ])
# Enable 64 bit build
AC_ARG_ENABLE(64,
[AC_HELP_STRING([--enable-64],[build with 64 bit support])],[enable_64="$enable_64"],[enable_64="no"])
if test "${enable_64}" = "yes"; then
USE_64=1
fi
AC_ARG_ENABLE(mdupdate,
[ --enable-mdupdate Enable use of certain compilers' mdupdate feature],
[ if test "$enableval" = "yes"; then
@@ -2660,6 +2668,7 @@ cygwin*|msvc*|mks*)
;;
esac
dnl ========================================================
dnl Substitution of found variables.
dnl ========================================================