Mercurial > hg > xemacs-beta
comparison configure.ac @ 4738:a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Wed, 11 Nov 2009 23:40:15 +0900 |
parents | 80d74fed5399 |
children | aa5ed11f473b |
comparison
equal
deleted
inserted
replaced
4735:80d74fed5399 | 4738:a6f27e2b3d84 |
---|---|
1429 i[[3-9]]86-cubix-sysv* ) machine=intel386 opsys=usg5-3 ;; | 1429 i[[3-9]]86-cubix-sysv* ) machine=intel386 opsys=usg5-3 ;; |
1430 | 1430 |
1431 dnl Darwin, a.k.a. MacOS X (based on Mach and Freebsd) | 1431 dnl Darwin, a.k.a. MacOS X (based on Mach and Freebsd) |
1432 *-*-darwin*) | 1432 *-*-darwin*) |
1433 opsys=darwin | 1433 opsys=darwin |
1434 dnl Use this to set BSD correctly. | |
1435 AC_DEFINE(USE_PARAM_H) | |
1434 ;; | 1436 ;; |
1435 | 1437 |
1436 dnl Data General AViiON Machines | 1438 dnl Data General AViiON Machines |
1437 i586-dg-dgux*R4* | i586-dg-dgux5.4.4* ) machine=aviion opsys=dgux5-4r4 ;; | 1439 i586-dg-dgux*R4* | i586-dg-dgux5.4.4* ) machine=aviion opsys=dgux5-4r4 ;; |
1438 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) opsys=dgux5-4r3 ;; | 1440 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) opsys=dgux5-4r3 ;; |
2832 XE_COMPUTE_RUNPATH() | 2834 XE_COMPUTE_RUNPATH() |
2833 | 2835 |
2834 dnl ----------------------------------- | 2836 dnl ----------------------------------- |
2835 dnl Do some misc autoconf-special tests | 2837 dnl Do some misc autoconf-special tests |
2836 dnl ----------------------------------- | 2838 dnl ----------------------------------- |
2839 | |
2840 dnl Can we use GNU malloc on this system? | |
2841 dnl First, configure based-checks. | |
2842 case "$opsys" in | |
2843 darwin ) | |
2844 if test "$with_system_malloc" = "default"; then | |
2845 system_malloc=yes | |
2846 with_system_malloc=yes | |
2847 AC_MSG_WARN([Forcing system malloc on Darwin.]) | |
2848 fi ;; | |
2849 esac | |
2837 | 2850 |
2838 dnl Do the opsystem or machine files prohibit the use of the GNU malloc? | 2851 dnl Do the opsystem or machine files prohibit the use of the GNU malloc? |
2839 dnl Assume not, until told otherwise. | 2852 dnl Assume not, until told otherwise. |
2840 GNU_MALLOC=yes | 2853 GNU_MALLOC=yes |
2841 if test "$with_dlmalloc" != "no"; then | 2854 if test "$with_dlmalloc" != "no"; then |