diff options
| author | Steven Tamm | 2005-10-25 01:09:39 +0000 |
|---|---|---|
| committer | Steven Tamm | 2005-10-25 01:09:39 +0000 |
| commit | eae5401854b60c4189f051fca5389d85955a3550 (patch) | |
| tree | e45ec4df48df15b3a77fa4e0a51d0a73ae3ff097 | |
| parent | 788c3ebeb2db8cfbda68dadc78fa5aa9825f4cd2 (diff) | |
| download | emacs-eae5401854b60c4189f051fca5389d85955a3550.tar.gz emacs-eae5401854b60c4189f051fca5389d85955a3550.zip | |
Fix darwin386 configuration issue
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rwxr-xr-x | configure | 8 | ||||
| -rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 8 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-10-24 Steven Tamm <steventamm@mac.com> | ||
| 2 | |||
| 3 | * configure.in: Fix darwin386 configuration issue | ||
| 4 | * configure: Regenerate | ||
| 5 | |||
| 1 | 2005-10-22 Eli Zaretskii <eliz@gnu.org> | 6 | 2005-10-22 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure. | 8 | * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure. |
| @@ -2571,7 +2571,7 @@ _ACEOF | |||
| 2571 | machine=intel386 | 2571 | machine=intel386 |
| 2572 | case "${canonical}" in | 2572 | case "${canonical}" in |
| 2573 | *-cygwin ) opsys=cygwin ;; | 2573 | *-cygwin ) opsys=cygwin ;; |
| 2574 | *-darwin ) opsys=darwin | 2574 | *-darwin* ) opsys=darwin |
| 2575 | CPP="${CC-cc} -E -no-cpp-precomp" | 2575 | CPP="${CC-cc} -E -no-cpp-precomp" |
| 2576 | ;; | 2576 | ;; |
| 2577 | *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; | 2577 | *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; |
| @@ -2629,12 +2629,6 @@ _ACEOF | |||
| 2629 | machine=powermac opsys=darwin | 2629 | machine=powermac opsys=darwin |
| 2630 | # Define CPP as follows to make autoconf work correctly. | 2630 | # Define CPP as follows to make autoconf work correctly. |
| 2631 | CPP="${CC-cc} -E -no-cpp-precomp" | 2631 | CPP="${CC-cc} -E -no-cpp-precomp" |
| 2632 | # Use fink packages if available. | ||
| 2633 | if test -d /sw/include && test -d /sw/lib; then | ||
| 2634 | GCC_TEST_OPTIONS="-I/sw/include -L/sw/lib" | ||
| 2635 | CPP="${CPP} ${GCC_TEST_OPTIONS}" | ||
| 2636 | NON_GCC_TEST_OPTIONS=${GCC_TEST_OPTIONS} | ||
| 2637 | fi | ||
| 2638 | ;; | 2632 | ;; |
| 2639 | 2633 | ||
| 2640 | ## AMD x86-64 Linux-based GNU system | 2634 | ## AMD x86-64 Linux-based GNU system |
diff --git a/configure.in b/configure.in index 4c1dda68896..628bfcad4d1 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -1089,7 +1089,7 @@ dnl see the `changequote' comment above. | |||
| 1089 | machine=intel386 | 1089 | machine=intel386 |
| 1090 | case "${canonical}" in | 1090 | case "${canonical}" in |
| 1091 | *-cygwin ) opsys=cygwin ;; | 1091 | *-cygwin ) opsys=cygwin ;; |
| 1092 | *-darwin ) opsys=darwin | 1092 | *-darwin* ) opsys=darwin |
| 1093 | CPP="${CC-cc} -E -no-cpp-precomp" | 1093 | CPP="${CC-cc} -E -no-cpp-precomp" |
| 1094 | ;; | 1094 | ;; |
| 1095 | *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; | 1095 | *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; |