diff options
| author | Paul Eggert | 2019-02-01 08:45:20 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-02-01 08:45:44 -0800 |
| commit | 08dc1a371f7b0b88b3961fd37cca8a1717a94a7d (patch) | |
| tree | 0d388fcb8138b297bd786188ee9ef490b6139b6c | |
| parent | 3e99077ab39fac1ab1f3794b211f2c0c480c6e6e (diff) | |
| download | emacs-08dc1a371f7b0b88b3961fd37cca8a1717a94a7d.tar.gz 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
| -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 | |||
| 5395 | else | 5395 | else |
| 5396 | libs_nsgui= | 5396 | libs_nsgui= |
| 5397 | fi | 5397 | fi |
| 5398 | LD_SWITCH_SYSTEM_TEMACS="-fno-pie -prebind $libs_nsgui -Xlinker -headerpad -Xlinker $headerpad_extra" | 5398 | LD_SWITCH_SYSTEM_TEMACS="-fno-pie $libs_nsgui -Xlinker -headerpad -Xlinker $headerpad_extra" |
| 5399 | 5399 | ||
| 5400 | ## This is here because src/Makefile.in did some extra fiddling around | 5400 | ## This is here because src/Makefile.in did some extra fiddling around |
| 5401 | ## with LD_SWITCH_SYSTEM. It seems cleaner to put this in | 5401 | ## with LD_SWITCH_SYSTEM. It seems cleaner to put this in |