Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriain holmes <iain@xamarin.com>2016-02-10 21:28:19 +0300
committeriain holmes <iain@xamarin.com>2016-02-10 21:28:19 +0300
commit9190f1d99d1d9ef298f662066c70072073e3de5f (patch)
tree59b80ada759a9f7221d02963c3980d7e62aa0aaa /configure
parent9dddc183b935ca24644f9749377458dd09ff34af (diff)
[64bit] Make 64bit the default
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 6 insertions, 5 deletions
diff --git a/configure b/configure
index aad95834ec..fa068343d2 100755
--- a/configure
+++ b/configure
@@ -52,8 +52,9 @@ usage ()
echo ""
echo "--enable-release"
echo " Builds md in release mode"
- echo "--enable-mac64"
- echo " Build for x64 on OS X"
+ echo ""
+ echo "--enable-mac32"
+ echo " Build for i386 on OS X"
echo ""
echo "--profile=PROFILE"
echo ""
@@ -161,7 +162,7 @@ configure_packages ()
enable_tests=" "
fi
- if [ -z "$MONODEVELOP_64BIT_SAFE" ]; then
+ if test xno == x$x64; then
enable_x64=--with-macarch=i386
else
enable_x64=--with-macarch=x86_64
@@ -246,8 +247,8 @@ while test x$1 != x; do
--enable-release)
release=yes
;;
- --enable-mac64)
- x64=yes
+ --enable-mac32)
+ x64=no
;;
--prefix=*)
prefix=`echo $1 | sed 's/--prefix=//'`