diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-01 08:45:20 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-01 08:45:44 -0800 |
commit | 08dc1a371f7b0b88b3961fd37cca8a1717a94a7d (patch) | |
tree | 0d388fcb8138b297bd786188ee9ef490b6139b6c /configure.ac | |
parent | 3e99077ab39fac1ab1f3794b211f2c0c480c6e6e (diff) | |
download | emacs-08dc1a371f7b0b88b3961fd37cca8a1717a94a7d.tar.gz emacs-08dc1a371f7b0b88b3961fd37cca8a1717a94a7d.tar.bz2 emacs-08dc1a371f7b0b88b3961fd37cca8a1717a94a7d.zip |
Stop using macOS -prebind option
* configure.ac (LD_SWITCH_SYSTEM_TEMACS): Remove -prebind,
which has been obsolete and ineffective since Mac OS X 10.4 (2005),
which was never necessary for correct operation, and which now
generates annoying warnings. Problem reported by Robert Pluim in:
https://lists.gnu.org/r/emacs-devel/2019-01/msg00761.html
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 75297194299..16491a95d56 100644 --- a/configure.ac +++ b/configure.ac @@ -5395,7 +5395,7 @@ case "$opsys" in else libs_nsgui= fi - LD_SWITCH_SYSTEM_TEMACS="-fno-pie -prebind $libs_nsgui -Xlinker -headerpad -Xlinker $headerpad_extra" + LD_SWITCH_SYSTEM_TEMACS="-fno-pie $libs_nsgui -Xlinker -headerpad -Xlinker $headerpad_extra" ## This is here because src/Makefile.in did some extra fiddling around ## with LD_SWITCH_SYSTEM. It seems cleaner to put this in |