diff options
| author | Glenn Morris | 2012-05-02 12:55:00 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-05-02 12:55:00 -0400 |
| commit | 3c30e76668068bad00494c16a742cd9a5cb609fe (patch) | |
| tree | ff00cec679d172a16407f41d3252930dcaad0e1c | |
| parent | a64fe9146ef4d0c3966b76867f4ef97479e99477 (diff) | |
| download | emacs-3c30e76668068bad00494c16a742cd9a5cb609fe.tar.gz emacs-3c30e76668068bad00494c16a742cd9a5cb609fe.zip | |
configure.in tweak for LD_SWITCH_SYSTEM on FreeBSD, NetBSD (bug#10313)
* configure.in (LD_SWITCH_SYSTEM):
Don't try to defeat the choices made by FreeBSD and NetBSD.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | configure.in | 8 |
2 files changed, 9 insertions, 2 deletions
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-05-02 Glenn Morris <rgm@gnu.org> | 1 | 2012-05-02 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat | ||
| 4 | the choices made by FreeBSD and NetBSD. (Bug#10313) | ||
| 5 | |||
| 3 | * Makefile.in (INFO_FILES): Remove variable. | 6 | * Makefile.in (INFO_FILES): Remove variable. |
| 4 | (INFO_NONMISC): New variable. | 7 | (INFO_NONMISC): New variable. |
| 5 | (install-arch-indep, uninstall): Don't use $INFO_FILES. | 8 | (install-arch-indep, uninstall): Don't use $INFO_FILES. |
diff --git a/configure.in b/configure.in index c0a12672c62..2bf78e522ec 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -951,7 +951,9 @@ case "$opsys" in | |||
| 951 | ## Let `ld' find image libs and similar things in /usr/local/lib. | 951 | ## Let `ld' find image libs and similar things in /usr/local/lib. |
| 952 | ## The system compiler, GCC, has apparently been modified to not | 952 | ## The system compiler, GCC, has apparently been modified to not |
| 953 | ## look there, contrary to what a stock GCC would do. | 953 | ## look there, contrary to what a stock GCC would do. |
| 954 | LD_SWITCH_SYSTEM=-L/usr/local/lib | 954 | ### It's not our place to do this. See bug#10313#17. |
| 955 | ### LD_SWITCH_SYSTEM=-L/usr/local/lib | ||
| 956 | : | ||
| 955 | ;; | 957 | ;; |
| 956 | 958 | ||
| 957 | gnu-linux) | 959 | gnu-linux) |
| @@ -960,7 +962,9 @@ case "$opsys" in | |||
| 960 | ;; | 962 | ;; |
| 961 | 963 | ||
| 962 | netbsd) | 964 | netbsd) |
| 963 | LD_SWITCH_SYSTEM="-Wl,-rpath,/usr/pkg/lib -L/usr/pkg/lib -Wl,-rpath,/usr/local/lib -L/usr/local/lib" | 965 | ### It's not our place to do this. See bug#10313#17. |
| 966 | ### LD_SWITCH_SYSTEM="-Wl,-rpath,/usr/pkg/lib -L/usr/pkg/lib -Wl,-rpath,/usr/local/lib -L/usr/local/lib" | ||
| 967 | : | ||
| 964 | ;; | 968 | ;; |
| 965 | 969 | ||
| 966 | openbsd) | 970 | openbsd) |