diff options
| author | Glenn Morris | 2010-05-24 20:53:12 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-24 20:53:12 -0700 |
| commit | 8009a5e891cdd300e594812e71e7997592bd7c04 (patch) | |
| tree | b010c73286087702d8d060c2c08b0685dd25f896 /src | |
| parent | e545800352a38dc328cc5251bb44d1e93d0d2012 (diff) | |
| download | emacs-8009a5e891cdd300e594812e71e7997592bd7c04.tar.gz emacs-8009a5e891cdd300e594812e71e7997592bd7c04.zip | |
Move some stuff from LD_SWITCH_SYSTEM to LD_SWITCH_SYSTEM_TEMACS.
* configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
(LD_SWITCH_SYSTEM_TEMACS): ... to here.
* src/Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
variables it may reference.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/Makefile.in | 12 |
2 files changed, 9 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 79d8946e954..541ed72bddb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-05-25 Glenn Morris <rgm@gnu.org> | 1 | 2010-05-25 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some | ||
| 4 | variables it may reference. | ||
| 5 | |||
| 3 | * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove. | 6 | * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove. |
| 4 | (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA. | 7 | (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA. |
| 5 | 8 | ||
diff --git a/src/Makefile.in b/src/Makefile.in index 0bb36ecb838..2ed5ca4bfd4 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -96,12 +96,6 @@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ | |||
| 96 | ## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE. | 96 | ## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE. |
| 97 | LD_SWITCH_X_SITE= | 97 | LD_SWITCH_X_SITE= |
| 98 | 98 | ||
| 99 | ## This holds any special options for linking temacs only (ie, not | ||
| 100 | ## used by configure). Not used elsewhere because it sometimes | ||
| 101 | ## contains options that have to do with using Emacs's crt0, | ||
| 102 | ## which are only good with temacs. | ||
| 103 | LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@ | ||
| 104 | |||
| 105 | ## Next two must come before LD_SWITCH_SYSTEM. | 99 | ## Next two must come before LD_SWITCH_SYSTEM. |
| 106 | ## If needed, a -R option that says where to find X windows at run time. | 100 | ## If needed, a -R option that says where to find X windows at run time. |
| 107 | LD_SWITCH_X_SITE_AUX=@LD_SWITCH_X_SITE_AUX@ | 101 | LD_SWITCH_X_SITE_AUX=@LD_SWITCH_X_SITE_AUX@ |
| @@ -111,6 +105,12 @@ LD_SWITCH_X_SITE_AUX_RPATH=@LD_SWITCH_X_SITE_AUX_RPATH@ | |||
| 111 | ## System-specific LDFLAGS. | 105 | ## System-specific LDFLAGS. |
| 112 | LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@ | 106 | LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@ |
| 113 | 107 | ||
| 108 | ## This holds any special options for linking temacs only (ie, not | ||
| 109 | ## used by configure). Not used elsewhere because it sometimes | ||
| 110 | ## contains options that have to do with using Emacs's crt0, | ||
| 111 | ## which are only good with temacs. | ||
| 112 | LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@ | ||
| 113 | |||
| 114 | ## Flags to pass to ld only for temacs. | 114 | ## Flags to pass to ld only for temacs. |
| 115 | TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS) | 115 | TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS) |
| 116 | 116 | ||