Fix for bug 333406

I had made a change to make 64 bit builds the default on those platforms that
support 64 bit binaries.  However, the expected behavior for other mozilla
components is that you have to explicitly use --enable-64bit to make a 64
bit binary, and default to 32 bit binaries.  So, I made mozldap work like the
other components.


git-svn-id: svn://10.0.0.236/trunk@194176 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
richm%stanfordalumni.org
2006-04-11 21:12:58 +00:00
parent 9712c7f7a4
commit 3a2ddafc73
2 changed files with 1 additions and 24 deletions

View File

@@ -1661,18 +1661,6 @@ if test "${enable_64bit+set}" = set; then
if test "$enableval" = "yes"; then
USE_64=1 ; export USE_64
fi
else
arch=`uname -m`
case $arch in
x86_64|ppc64|ia64|s390x) USE_64=1 ; export USE_64 ;;
sun4u) instr_set=`optisa \`isalist\``
case $instr_set in
sparcv9*) USE_64=1 ; export USE_64 ;;
esac
;;
esac
fi;
# Check whether --enable-mdupdate or --disable-mdupdate was given.

View File

@@ -200,18 +200,7 @@ AC_ARG_ENABLE(64bit,
[ if test "$enableval" = "yes"; then
USE_64=1 ; export USE_64
fi ],
[
dnl if the user specified nothing, just guess based on machine type
arch=`uname -m`
case $arch in
x86_64|ppc64|ia64|s390x) USE_64=1 ; export USE_64 ;;
sun4u) instr_set=`optisa \`isalist\``
case $instr_set in
sparcv9*) USE_64=1 ; export USE_64 ;;
esac
;;
esac
])
[])
AC_ARG_ENABLE(mdupdate,
[ --enable-mdupdate Enable use of certain compilers' mdupdate feature],