diff options
| author | Glenn Morris | 2012-05-18 00:14:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-05-18 00:14:45 -0700 |
| commit | 136c45eee75126157bd45683ba94de50b6888a14 (patch) | |
| tree | 143784c0630afeaceaa88e19a7ea165d84db976a | |
| parent | 1fb4fc600588d5c367b4cb247eed31bb25b635e1 (diff) | |
| download | emacs-136c45eee75126157bd45683ba94de50b6888a14.tar.gz emacs-136c45eee75126157bd45683ba94de50b6888a14.zip | |
Stop adding Fink directories to search path on OS X
* configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
No longer unconditonally add /sw directories.
* etc/NEWS: Mention this.
Fixes: debbugs:2280
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | configure.in | 12 | ||||
| -rw-r--r-- | etc/NEWS | 4 |
3 files changed, 13 insertions, 6 deletions
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-05-18 Glenn Morris <rgm@gnu.org> | 1 | 2012-05-18 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>: | ||
| 4 | No longer unconditonally add /sw directories. (Bug#2280) | ||
| 5 | |||
| 3 | * Makefile.in (install-arch-dep): Depend on install-arch-indep. | 6 | * Makefile.in (install-arch-dep): Depend on install-arch-indep. |
| 4 | (install-arch-indep): Depend on install-leim. | 7 | (install-arch-indep): Depend on install-leim. |
| 5 | (install): Remove explicit install-leim dependence. | 8 | (install): Remove explicit install-leim dependence. |
diff --git a/configure.in b/configure.in index 0844cc2ecb6..6b16b4356b0 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -492,12 +492,12 @@ case "${canonical}" in | |||
| 492 | * ) unported=yes ;; | 492 | * ) unported=yes ;; |
| 493 | esac | 493 | esac |
| 494 | opsys=darwin | 494 | opsys=darwin |
| 495 | # Use fink packages if available. | 495 | ## Use fink packages if available. |
| 496 | # FIXME? Is it really our business to decide this for the user? | 496 | ## FIXME find a better way to do this: http://debbugs.gnu.org/11507 |
| 497 | if test -d /sw/include && test -d /sw/lib; then | 497 | ## if test -d /sw/include && test -d /sw/lib; then |
| 498 | GCC_TEST_OPTIONS="-I/sw/include -L/sw/lib" | 498 | ## GCC_TEST_OPTIONS="-I/sw/include -L/sw/lib" |
| 499 | NON_GCC_TEST_OPTIONS=${GCC_TEST_OPTIONS} | 499 | ## NON_GCC_TEST_OPTIONS=${GCC_TEST_OPTIONS} |
| 500 | fi | 500 | ## fi |
| 501 | ;; | 501 | ;; |
| 502 | 502 | ||
| 503 | ## HP 9000 series 700 and 800, running HP/UX | 503 | ## HP 9000 series 700 and 800, running HP/UX |
| @@ -37,6 +37,10 @@ may be useful. | |||
| 37 | /usr/pkg/lib to the linker search path. You must add them yourself if | 37 | /usr/pkg/lib to the linker search path. You must add them yourself if |
| 38 | you want them. | 38 | you want them. |
| 39 | 39 | ||
| 40 | --- | ||
| 41 | ** On Mac OS X, configure no longer automatically adds the Fink /sw | ||
| 42 | directories to the search path. You must add them yourself if you want them. | ||
| 43 | |||
| 40 | 44 | ||
| 41 | * Startup Changes in Emacs 24.2 | 45 | * Startup Changes in Emacs 24.2 |
| 42 | 46 | ||