aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu
diff options
context:
space:
mode:
authorPaul Eggert2012-04-13 21:37:44 -0700
committerPaul Eggert2012-04-13 21:37:44 -0700
commitbdf35b6a6a78e444563a8e321ccb42b4b4a419bd (patch)
treee96324ace186c7acc92182a255c3aa7ff315b82f /oldXMenu
parent1530927cb9a3dca7c0f41975f2e9e62ef8be92a2 (diff)
parentd5e6342ed5e408014019c478ce16a47a2aad418b (diff)
downloademacs-bdf35b6a6a78e444563a8e321ccb42b4b4a419bd.tar.gz
emacs-bdf35b6a6a78e444563a8e321ccb42b4b4a419bd.zip
Merge from trunk.
Diffstat (limited to 'oldXMenu')
-rw-r--r--oldXMenu/ChangeLog9
-rw-r--r--oldXMenu/Makefile.in9
2 files changed, 11 insertions, 7 deletions
diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog
index 87dadb2745e..a76ea61abd8 100644
--- a/oldXMenu/ChangeLog
+++ b/oldXMenu/ChangeLog
@@ -1,10 +1,15 @@
12012-04-09 Paul Eggert <eggert@cs.ucla.edu> 12012-04-14 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 configure: new option --enable-gcc-warnings (Bug#11207) 3 configure: new option --enable-gcc-warnings (Bug#11207)
4 * Makefile.in (C_WARNINGS_SWITCH): Remove. 4 * Makefile.in (C_WARNINGS_SWITCH): Remove.
5 (WARN_CFLAGS, WERROR_CFLAGS): New macros. 5 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
6 (ALL_CFLAGS): Use new macros rather than old. 6 (ALL_CFLAGS): Use new macros rather than old.
7 7
82012-04-11 Glenn Morris <rgm@gnu.org>
9
10 * Makefile.in (C_SWITCH_X_SYSTEM): Remove.
11 (ALL_CFLAGS): Remove C_SWITCH_X_SYSTEM.
12
82011-04-16 Paul Eggert <eggert@cs.ucla.edu> 132011-04-16 Paul Eggert <eggert@cs.ucla.edu>
9 14
10 Static checks with GCC 4.6.0 and non-default toolkits. 15 Static checks with GCC 4.6.0 and non-default toolkits.
@@ -622,7 +627,7 @@
622;; coding: utf-8 627;; coding: utf-8
623;; End: 628;; End:
624 629
625 Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc. 630 Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc.
626 631
627 This file is part of GNU Emacs. 632 This file is part of GNU Emacs.
628 633
diff --git a/oldXMenu/Makefile.in b/oldXMenu/Makefile.in
index e7bc402cb0d..01855f6585b 100644
--- a/oldXMenu/Makefile.in
+++ b/oldXMenu/Makefile.in
@@ -1,4 +1,4 @@
1## Makefile for oldXMenu 1## Makefile for oldXMenu
2 2
3## Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology 3## Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology
4 4
@@ -15,7 +15,7 @@
15## without express or implied warranty. 15## without express or implied warranty.
16 16
17 17
18## Copyright (C) 2001-2012 Free Software Foundation, Inc. 18## Copyright (C) 2001-2012 Free Software Foundation, Inc.
19 19
20## This program is free software: you can redistribute it and/or modify 20## This program is free software: you can redistribute it and/or modify
21## it under the terms of the GNU General Public License as published by 21## it under the terms of the GNU General Public License as published by
@@ -45,7 +45,6 @@
45srcdir=@srcdir@ 45srcdir=@srcdir@
46VPATH=@srcdir@ 46VPATH=@srcdir@
47C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ 47C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
48C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@
49C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@ 48C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
50C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ 49C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
51PROFILING_CFLAGS = @PROFILING_CFLAGS@ 50PROFILING_CFLAGS = @PROFILING_CFLAGS@
@@ -89,8 +88,8 @@ OBJS = Activate.o \
89all:: libXMenu11.a 88all:: libXMenu11.a
90 89
91ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \ 90ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
92 $(C_SWITCH_X_SITE) $(C_SWITCH_X_SYSTEM) \ 91 $(C_SWITCH_X_SITE) \
93 $(WARN_CFLAGS) $(WERROR_CFLAGS) ${C_WARNINGS_SWITCH} ${PROFILING_CFLAGS} \ 92 $(WARN_CFLAGS) $(WERROR_CFLAGS) ${PROFILING_CFLAGS} \
94 $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \ 93 $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \
95 -I../src -I${srcdir} -I${srcdir}/../src 94 -I../src -I${srcdir} -I${srcdir}/../src
96 95