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

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-08-29 21:22:02 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-08-29 21:23:34 +0300
commit4d6826993475597121e70f9f5e983fecb4572ed0 (patch)
tree64ebfb55c68e38594f3248914fbc9daff7927510
parent38f7f9f3307d230870e757a76c9907d970144898 (diff)
Bump target requirement to OSX 10.9 Mavericks
See https://github.com/mono/mono/issues/9581
-rw-r--r--bockbuild/darwinprofile.py2
-rw-r--r--packages/autoconf.py2
-rw-r--r--packages/automake.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/bockbuild/darwinprofile.py b/bockbuild/darwinprofile.py
index c3f38a8..5987d7f 100644
--- a/bockbuild/darwinprofile.py
+++ b/bockbuild/darwinprofile.py
@@ -139,7 +139,7 @@ class DarwinProfile (UnixProfile):
package.local_ld_flags = ['-arch i386', '-m32']
package.local_gcc_flags = ['-arch i386', '-m32']
package.local_configure_flags = [
- '--build=i386-apple-darwin11.2.0', '--disable-dependency-tracking']
+ '--build=i386-apple-darwin13.0.0', '--disable-dependency-tracking']
elif arch == 'darwin-64':
package.local_ld_flags = ['-arch x86_64 -m64']
package.local_gcc_flags = ['-arch x86_64 -m64']
diff --git a/packages/autoconf.py b/packages/autoconf.py
index 45f4c32..7741a6e 100644
--- a/packages/autoconf.py
+++ b/packages/autoconf.py
@@ -18,7 +18,7 @@ class Autoconf (GnuPackage):
elif arch == 'darwin-32':
self.local_ld_flags = ['-arch i386', '-m32']
self.local_gcc_flags = ['-arch i386', '-m32']
- self.local_configure_flags = ['--build=i386-apple-darwin11.2.0']
+ self.local_configure_flags = ['--build=i386-apple-darwin13.0.0']
elif arch == 'darwin-64':
self.local_ld_flags = ['-arch x86_64 -m64']
self.local_gcc_flags = ['-arch x86_64 -m64']
diff --git a/packages/automake.py b/packages/automake.py
index c94665a..c9cd305 100644
--- a/packages/automake.py
+++ b/packages/automake.py
@@ -13,7 +13,7 @@ class Automake (GnuPackage):
elif arch == 'darwin-32':
self.local_ld_flags = ['-arch i386', '-m32']
self.local_gcc_flags = ['-arch i386', '-m32']
- self.local_configure_flags = ['--build=i386-apple-darwin11.2.0']
+ self.local_configure_flags = ['--build=i386-apple-darwin13.0.0']
elif arch == 'darwin-64':
self.local_ld_flags = ['-arch x86_64 -m64']
self.local_gcc_flags = ['-arch x86_64 -m64']