diff options
| author | Eli Zaretskii | 2011-02-26 11:27:05 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2011-02-26 11:27:05 +0200 |
| commit | 945d8b4444ccea2a3c3e9ac69b679c80ee0e00a5 (patch) | |
| tree | 24d998feca73ccde4d8634cad6fbc16f68bdd551 | |
| parent | 00030ef0b68cc8ce0dcb5ec8f3f95709e1066bc2 (diff) | |
| download | emacs-945d8b4444ccea2a3c3e9ac69b679c80ee0e00a5.tar.gz emacs-945d8b4444ccea2a3c3e9ac69b679c80ee0e00a5.zip | |
Fix the MS-DOS configury due to new gnulib modules.
config.bat: Rename stdint.in.h and sys_stat.in.h. Call
depfiles.bat even if lib/deps already exist.
msdos/depfiles.bat: Create a dummy .Po file only if a file by the same
name does not already exist in the deps/ subdirectory.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | config.bat | 9 | ||||
| -rw-r--r-- | msdos/ChangeLog | 5 | ||||
| -rw-r--r-- | msdos/depfiles.bat | 2 |
4 files changed, 17 insertions, 4 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-02-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * config.bat: Rename stdint.in.h and sys_stat.in.h. Call | ||
| 4 | depfiles.bat even if lib/deps already exist. | ||
| 5 | |||
| 1 | 2011-02-25 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2011-02-25 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk: | 8 | * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk: |
diff --git a/config.bat b/config.bat index 7ebfc74b801..4288f6537e6 100644 --- a/config.bat +++ b/config.bat | |||
| @@ -280,17 +280,20 @@ cd lib | |||
| 280 | Rem Rename files like djtar on plain DOS filesystem would. | 280 | Rem Rename files like djtar on plain DOS filesystem would. |
| 281 | If Exist c++defs.h update c++defs.h cxxdefs.h | 281 | If Exist c++defs.h update c++defs.h cxxdefs.h |
| 282 | If Exist getopt.in.h update getopt.in.h getopt.in-h | 282 | If Exist getopt.in.h update getopt.in.h getopt.in-h |
| 283 | If Exist stddef.in.h update stddef.in.h stddef.in-h | ||
| 284 | If Exist stdbool.in.h update stdbool.in.h stdbool.in-h | 283 | If Exist stdbool.in.h update stdbool.in.h stdbool.in-h |
| 284 | If Exist stddef.in.h update stddef.in.h stddef.in-h | ||
| 285 | If Exist stdint.in.h update stdint.in.h stdint.in-h | ||
| 285 | If Exist stdlib.in.h update stdlib.in.h stdlib.in-h | 286 | If Exist stdlib.in.h update stdlib.in.h stdlib.in-h |
| 287 | If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h | ||
| 286 | If Exist time.in.h update time.in.h time.in-h | 288 | If Exist time.in.h update time.in.h time.in-h |
| 287 | If Exist unistd.in.h update unistd.in.h unistd.in-h | 289 | If Exist unistd.in.h update unistd.in.h unistd.in-h |
| 288 | sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp | 290 | sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp |
| 289 | sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile | 291 | sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile |
| 290 | rm -f makefile.tmp | 292 | rm -f makefile.tmp |
| 293 | Rem Create .Po files for new files in lib/ | ||
| 291 | If Not Exist deps\stamp mkdir deps | 294 | If Not Exist deps\stamp mkdir deps |
| 292 | If Not Exist deps\stamp for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f | 295 | for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f |
| 293 | If Not Exist deps\stamp echo deps-stamp > deps\stamp | 296 | echo deps-stamp > deps\stamp |
| 294 | cd .. | 297 | cd .. |
| 295 | rem ---------------------------------------------------------------------- | 298 | rem ---------------------------------------------------------------------- |
| 296 | Echo Configuring the lisp directory... | 299 | Echo Configuring the lisp directory... |
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index f1cdf510a06..d4979796901 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-02-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * depfiles.bat: Create a dummy .Po file only if a file by the same | ||
| 4 | name does not already exist in the deps/ subdirectory. | ||
| 5 | |||
| 1 | 2011-02-19 Eli Zaretskii <eliz@gnu.org> | 6 | 2011-02-19 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * depfiles.bat: New file. | 8 | * depfiles.bat: New file. |
diff --git a/msdos/depfiles.bat b/msdos/depfiles.bat index 22fcfc3dcd6..901a53cbb0d 100644 --- a/msdos/depfiles.bat +++ b/msdos/depfiles.bat | |||
| @@ -20,6 +20,6 @@ rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/. | |||
| 20 | 20 | ||
| 21 | rem ---------------------------------------------------------------------- | 21 | rem ---------------------------------------------------------------------- |
| 22 | 22 | ||
| 23 | echo %1 | sed -e "s,^,@echo # dummy > deps\\," -e "s,\.c,.Po," > tdepfile.bat | 23 | echo %1 | sed -e "s,\(.*\)\.c,@if not exist deps\\\1.Po echo # dummy > deps\\\1.Po," > tdepfile.bat |
| 24 | call tdepfile | 24 | call tdepfile |
| 25 | del tdepfile.bat | 25 | del tdepfile.bat |