diff options
| author | Glenn Morris | 2010-05-03 19:56:19 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-03 19:56:19 -0700 |
| commit | 496287859b525d24bf38ef19a38ea2fd7d309bd1 (patch) | |
| tree | 834b0172fea80021902a60f2febec10d6a709706 /lib-src | |
| parent | 7dff330b76dd3421febadb5e11509d36ddaf39ed (diff) | |
| download | emacs-496287859b525d24bf38ef19a38ea2fd7d309bd1.tar.gz emacs-496287859b525d24bf38ef19a38ea2fd7d309bd1.zip | |
Move C_SWITCH_MACHINE, C_SWITCH_SYSTEM from cpp to autoconf.
* configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
variables, replacing c_switch_machine, c_switch_system.
* src/s/aix4-2.h (C_SWITCH_SYSTEM):
* src/m/alpha.h (C_SWITCH_MACHINE):
Move to configure.in.
* src/Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
New variables, set by configure.
(ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
$c_switch_machine and $c_switch_system.
* lib-src/Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@
rather than @c_switch_system@, @c_switch_machine@.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 53db1767487..9178af0f366 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-05-04 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than | ||
| 4 | @c_switch_system@, @c_switch_machine@. | ||
| 5 | |||
| 1 | 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * Makefile.in (LIBS_MACHINE): Remove all uses, unused. | 8 | * Makefile.in (LIBS_MACHINE): Remove all uses, unused. |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 4bbe894a794..634ac8bcb44 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -34,8 +34,8 @@ CFLAGS=@CFLAGS@ | |||
| 34 | version=@version@ | 34 | version=@version@ |
| 35 | configuration=@configuration@ | 35 | configuration=@configuration@ |
| 36 | EXEEXT=@EXEEXT@ | 36 | EXEEXT=@EXEEXT@ |
| 37 | C_SWITCH_SYSTEM=@c_switch_system@ | 37 | C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@ |
| 38 | C_SWITCH_MACHINE=@c_switch_machine@ | 38 | C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ |
| 39 | 39 | ||
| 40 | # Program name transformation. | 40 | # Program name transformation. |
| 41 | TRANSFORM = @program_transform_name@ | 41 | TRANSFORM = @program_transform_name@ |