aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2010-10-15 20:42:54 +0200
committerEli Zaretskii2010-10-15 20:42:54 +0200
commitc3911ead5daf93b59e29e03b5df47a8aec770b46 (patch)
tree36a527c6f317f656949586c97a9b4646cd0a51ee
parentaa095b2db98ae149737f8de00ee733b1d257ed33 (diff)
downloademacs-c3911ead5daf93b59e29e03b5df47a8aec770b46.tar.gz
emacs-c3911ead5daf93b59e29e03b5df47a8aec770b46.zip
Fix the MSDOS build broken by latest revisions.
src/unexcoff.c (make_hdr): Fix prototype according to changes in 2010-10-03T13:59:56Z!dann@ics.uci.edu. msdos/sed1v2.inp: Use $(..) instead of ${..} in all edit commands. Needed because of changes in 2010-10-10T14:43:05Z!dann@ics.uci.edu. msdos/sed6.inp (mkinfodir): Edit to avoid Unix shell-isms. Needed because of changes in 2010-10-09T18:31:12Z!rgm@gnu.org.
-rw-r--r--msdos/ChangeLog8
-rw-r--r--msdos/sed1v2.inp8
-rw-r--r--msdos/sed6.inp2
-rw-r--r--src/ChangeLog3
-rw-r--r--src/unexcoff.c3
5 files changed, 18 insertions, 6 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog
index e0b3a965402..4f466436ecc 100644
--- a/msdos/ChangeLog
+++ b/msdos/ChangeLog
@@ -1,3 +1,11 @@
12010-10-15 Eli Zaretskii <eliz@gnu.org>
2
3 * sed1v2.inp: Use $(..) instead of ${..} in all edit commands.
4 Needed because of changes in 2010-10-10T14:43:05Z!dann@ics.uci.edu.
5
6 * sed6.inp (mkinfodir): Edit to avoid Unix shell-isms. Needed
7 because of changes in 2010-10-09T18:31:12Z!rgm@gnu.org.
8
12010-10-10 Dan Nicolaescu <dann@ics.uci.edu> 92010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
2 10
3 * sed1v2.inp (PROFILING_LDFLAGS): 11 * sed1v2.inp (PROFILING_LDFLAGS):
diff --git a/msdos/sed1v2.inp b/msdos/sed1v2.inp
index 3c1770d1ba1..19f0d9dc0a9 100644
--- a/msdos/sed1v2.inp
+++ b/msdos/sed1v2.inp
@@ -131,12 +131,12 @@ s/\.h\.in/.h-in/
131/^M_FILE *=/s!@[^@\n]*@!m/intel386.h! 131/^M_FILE *=/s!@[^@\n]*@!m/intel386.h!
132/^S_FILE *=/s!@[^@\n]*@!s/msdos.h! 132/^S_FILE *=/s!@[^@\n]*@!s/msdos.h!
133/^@SET_MAKE@$/s/@SET_MAKE@// 133/^@SET_MAKE@$/s/@SET_MAKE@//
134/^.\${libsrc}make-docfile.*>/s!make-docfile!make-docfile -o ../etc/DOC! 134/^.\$(libsrc)\/make-docfile.*>/s!make-docfile!make-docfile -o ../etc/DOC!
135/^.\${libsrc}make-doc/s!>.*$!! 135/^.\$(libsrc)\/make-doc/s!>.*$!!
136/^[ ]*$/d 136/^[ ]*$/d
137/^ if test -f/,/^ fi$/c\ 137/^ if test -f/,/^ fi$/c\
138 command.com /c if exist .gdbinit rm -f _gdbinit 138 command.com /c if exist .gdbinit rm -f _gdbinit
139/^ if test "\${CANNOT_DUMP}" =/,/^ else /d 139/^ if test "\$(CANNOT_DUMP)" =/,/^ else /d
140/^ fi/d 140/^ fi/d
141/^ LC_ALL=C \$(RUN_TEMACS)/i\ 141/^ LC_ALL=C \$(RUN_TEMACS)/i\
142 stubedit temacs.exe minstack=1024k 142 stubedit temacs.exe minstack=1024k
@@ -152,7 +152,7 @@ s/ || true\; \\$//
152/^ if test -f/,/^ fi$/c\ 152/^ if test -f/,/^ fi$/c\
153 command.com /c if exist .gdbinit rm -f _gdbinit 153 command.com /c if exist .gdbinit rm -f _gdbinit
154/^ #/d 154/^ #/d
155/^ cd.*make-docfile/s!$!; cd ${dot}${dot}/src! 155/^ cd.*make-docfile/s!$!; cd ../src!
156/^ @: /d 156/^ @: /d
157/^ -\{0,1\} *ln -/s/ln -f/cp -pf/ 157/^ -\{0,1\} *ln -/s/ln -f/cp -pf/
158/^[ ]touch /s/touch/djecho $@ >/ 158/^[ ]touch /s/touch/djecho $@ >/
diff --git a/msdos/sed6.inp b/msdos/sed6.inp
index f8ad38e4dd9..2382971c30c 100644
--- a/msdos/sed6.inp
+++ b/msdos/sed6.inp
@@ -43,4 +43,6 @@ export texinputdir := $(srcdir)";"$(TEXINPUTS)
43 s/^ for file in $(INFO_TARGETS)\; do rm -f.*$/ rm -f $(INFO_TARGETS)/ 43 s/^ for file in $(INFO_TARGETS)\; do rm -f.*$/ rm -f $(INFO_TARGETS)/
44} 44}
45 45
46/^mkinfodir *=/s| @.*$|@command.com /c if not exist ..\\..\\info\\emacs mkdir ..\\..\\info|
47
46# arch-tag: defe1001-f35a-47f7-9635-3f5d33ee5e97 48# arch-tag: defe1001-f35a-47f7-9635-3f5d33ee5e97
diff --git a/src/ChangeLog b/src/ChangeLog
index 567bf2868e7..b3ed712a9e5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12010-10-15 Eli Zaretskii <eliz@gnu.org> 12010-10-15 Eli Zaretskii <eliz@gnu.org>
2 2
3 * unexcoff.c (make_hdr): Fix prototype according to changes in
4 2010-10-03T13:59:56Z!dann@ics.uci.edu.
5
3 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning. 6 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
4 7
52010-10-15 Tassilo Horn <tassilo@member.fsf.org> 82010-10-15 Tassilo Horn <tassilo@member.fsf.org>
diff --git a/src/unexcoff.c b/src/unexcoff.c
index 0c6af414d82..fb221dacda2 100644
--- a/src/unexcoff.c
+++ b/src/unexcoff.c
@@ -141,8 +141,7 @@ report_error_1 (int fd, const char *msg, int a1, int a2)
141 error (msg, a1, a2); 141 error (msg, a1, a2);
142} 142}
143 143
144static int make_hdr (int, int, unsigned, unsigned, unsigned, 144static int make_hdr (int, int, const char *, const char *);
145 const char *, const char *);
146static int copy_text_and_data (int, int); 145static int copy_text_and_data (int, int);
147static int copy_sym (int, int, const char *, const char *); 146static int copy_sym (int, int, const char *, const char *);
148static void mark_x (const char *); 147static void mark_x (const char *);