aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2006-11-04 03:28:27 +0000
committerChong Yidong2006-11-04 03:28:27 +0000
commitd6d1029d69a041a4e13fd862f545e1ca8353b5b1 (patch)
treecb88420bc9c701232e398b0d7203f4a2c1b43c8a
parent8630721ec93c38b9ddacfe2a529e69ec10400eef (diff)
downloademacs-d6d1029d69a041a4e13fd862f545e1ca8353b5b1.tar.gz
emacs-d6d1029d69a041a4e13fd862f545e1ca8353b5b1.zip
* configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bedd616b34e..88b249db6bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2
3 * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
4
12006-10-30 Chong Yidong <cyd@stupidchicken.com> 52006-10-30 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * make-dist: Add makefile.w32-in to the man, lispref and lispintro 7 * make-dist: Add makefile.w32-in to the man, lispref and lispintro
diff --git a/configure.in b/configure.in
index 0a9f6e5b88a..10e843d2a26 100644
--- a/configure.in
+++ b/configure.in
@@ -237,6 +237,9 @@ case "${canonical}" in
237 opsys=freebsd 237 opsys=freebsd
238 case "${canonical}" in 238 case "${canonical}" in
239 alpha*-*-freebsd*) machine=alpha ;; 239 alpha*-*-freebsd*) machine=alpha ;;
240 ia64-*-freebsd*) machine=ia64 ;;
241 sparc64-*-freebsd*) machine=sparc ;;
242 powerpc-*-freebsd*) machine=macppc ;;
240 i[3456]86-*-freebsd*) machine=intel386 ;; 243 i[3456]86-*-freebsd*) machine=intel386 ;;
241 amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;; 244 amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;;
242 esac 245 esac