aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-05-02 12:55:00 -0400
committerGlenn Morris2012-05-02 12:55:00 -0400
commit3c30e76668068bad00494c16a742cd9a5cb609fe (patch)
treeff00cec679d172a16407f41d3252930dcaad0e1c
parenta64fe9146ef4d0c3966b76867f4ef97479e99477 (diff)
downloademacs-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--ChangeLog3
-rw-r--r--configure.in8
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b8af27e7f6..1286f7dcf5a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
12012-05-02 Glenn Morris <rgm@gnu.org> 12012-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)