aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2014-10-15 19:42:05 +0200
committerJan Djärv2014-10-15 19:42:05 +0200
commit290569dcced88403d132fc98e45210bed49baa38 (patch)
tree9271499d9742c8a278945896ffa317ffe1da1ced
parent1c54bb8bbeca792b954eec1118109f78203687c4 (diff)
downloademacs-290569dcced88403d132fc98e45210bed49baa38.tar.gz
emacs-290569dcced88403d132fc98e45210bed49baa38.zip
* configure.ac: Move the OSX 10.6 test.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac11
2 files changed, 7 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 57073ac2d23..091ab2b62ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12014-10-15 Jan Djärv <jan.h.d@swipnet.se>
2
3 * configure.ac: Move the OSX 10.6 test.
4
12014-10-15 Stefan Monnier <monnier@iro.umontreal.ca> 52014-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * .bzrignore: Add uni-brackets.el. 7 * .bzrignore: Add uni-brackets.el.
diff --git a/configure.ac b/configure.ac
index 9757e4ff205..e833e4fb808 100644
--- a/configure.ac
+++ b/configure.ac
@@ -561,6 +561,9 @@ case "${canonical}" in
561 x86_64-* ) ;; 561 x86_64-* ) ;;
562 * ) unported=yes ;; 562 * ) unported=yes ;;
563 esac 563 esac
564 case "$canonical" in
565 *-apple-darwin[0-9].*) unported=yes ;;
566 esac
564 opsys=darwin 567 opsys=darwin
565 ## Use fink packages if available. 568 ## Use fink packages if available.
566 ## FIXME find a better way to do this: http://debbugs.gnu.org/11507 569 ## FIXME find a better way to do this: http://debbugs.gnu.org/11507
@@ -705,14 +708,6 @@ If you think it should, please send a report to ${PACKAGE_BUGREPORT}.
705Check `etc/MACHINES' for recognized configuration names.]) 708Check `etc/MACHINES' for recognized configuration names.])
706fi 709fi
707 710
708case "$canonical" in
709 *-apple-darwin* )
710 x="`uname -r`"
711 case "$x" in
712 [[0-9]].*) AC_MSG_ERROR([OSX 10.6 or later required]) ;;
713 esac
714esac
715
716#### Choose a compiler. 711#### Choose a compiler.
717 712
718dnl Don't bother to test for C89. 713dnl Don't bother to test for C89.