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:
authortherzok <marius.ungureanu@xamarin.com>2019-10-12 03:27:19 +0300
committertherzok <marius.ungureanu@xamarin.com>2019-10-18 17:38:05 +0300
commitd1691adb189e5954291b80cce387c37152ca2bf0 (patch)
treee1258c94e6ceb2a6d1ca1076873c06be035aedb4 /main/configure.ac
parent248b26c41fa13887a591025dcf061b8f86341742 (diff)
Get rid of 64bit toggle from mac config
Diffstat (limited to 'main/configure.ac')
-rw-r--r--main/configure.ac22
1 files changed, 1 insertions, 21 deletions
diff --git a/main/configure.ac b/main/configure.ac
index 79db5ef0e6..a678942019 100644
--- a/main/configure.ac
+++ b/main/configure.ac
@@ -6,8 +6,6 @@ AM_MAINTAINER_MODE
#capture aclocal flags for autoreconf
AC_SUBST(ACLOCAL_FLAGS)
-default_macarch=i386
-
dnl Add MD's mimetypes to mime and desktop databases
AC_ARG_ENABLE(update-mimedb,
AC_HELP_STRING([--disable-update-mimedb],
@@ -61,29 +59,11 @@ AC_ARG_ENABLE(macplatform,
enable_macplatform=${enableval}, enable_macplatform=$default_macplatform)
if test x$enable_macplatform = xyes; then
- platform_bindings="${platform_bindings}Mac ${with_macarch}"
+ platform_bindings="${platform_bindings}Mac"
fi
AM_CONDITIONAL(ENABLE_MACPLATFORM, [test x$enable_macplatform = xyes])
-# What architecture for Mac
-AC_ARG_WITH(macarch,
- AC_HELP_STRING([--with-macarch],
- [which architecture for mac: i386, x86_64 [default=i386]]),
- with_macarch=${withval}, with_macarch=$default_macarch)
-
-SGEN_SUFFIX=
-MONOSTUB_ARCH=32
-if test x$with_macarch = xx86_64; then
- SGEN_SUFFIX=64
- MONOSTUB_ARCH=64
-fi
-AC_SUBST(SGEN_SUFFIX)
-AC_SUBST(MONOSTUB_ARCH)
-
-MAC_ARCHITECTURE=${with_macarch}
-AC_SUBST(MAC_ARCHITECTURE)
-
# Windows platform addin
AC_ARG_ENABLE(windowsplatform,
AC_HELP_STRING([--enable-windowsplatform],