summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2014-10-14 17:31:44 +0200
committerJan Djärv <jan.h.d@swipnet.se>2014-10-14 17:31:44 +0200
commit980d78b3587560c13a46aef352ed8d5ed744acf6 (patch)
tree054841441c9c4733a1832c8e057ce41c6b9a88c5
parentbb75cdf9c74ab19b75532da1f953233a47eedab4 (diff)
downloademacs-980d78b3587560c13a46aef352ed8d5ed744acf6.tar.gz
* configure.ac: Require OSX >= 10.6 even if --with-ns is not given.
-rw-r--r--ChangeLog1
-rw-r--r--configure.ac7
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9af29fa3fcd..67790a31953 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2014-10-14 Jan Djärv <jan.h.d@swipnet.se>
* configure.ac: apple-darwin powerpc is unported.
+ Require OSX >= 10.6 even if --with-ns is not given.
2014-10-12 Ken Brown <kbrown@cornell.edu>
diff --git a/configure.ac b/configure.ac
index f346f28f7b3..9757e4ff205 100644
--- a/configure.ac
+++ b/configure.ac
@@ -705,6 +705,13 @@ If you think it should, please send a report to ${PACKAGE_BUGREPORT}.
Check `etc/MACHINES' for recognized configuration names.])
fi
+case "$canonical" in
+ *-apple-darwin* )
+ x="`uname -r`"
+ case "$x" in
+ [[0-9]].*) AC_MSG_ERROR([OSX 10.6 or later required]) ;;
+ esac
+esac
#### Choose a compiler.