comparison nt/xemacs.mak @ 780:578cb2932d72

[xemacs-hg @ 2002-03-18 10:07:30 by ben] config.inc.samp, xemacs.mak: Deal with never-ending perl quoting problems. README: Include a long, long description of the suggested directory layout for developing XEmacs. This should probably go as part of a larger document, a "Getting Started with Developing XEmacs". #### Does such a document exist? etc\unicode\mule-ucs\*: New directory, containing translation files for the remaining charsets that are not in unicode\unicode-consortium but are in mule-ucs. etc\unicode\other\*: New directory, containing translation files made up on an ad-hoc basis. etc\unicode\README: Update. * Some ChangeLog entries from stuff that got applied long ago never got checked in, due to the nasty SCCS "oops, i forgot again ..." bug. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan. Load new file mule-msw-init-late. unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages extracted from mule-ucs. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan. Load new file mule-msw-init-late. unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages extracted from mule-ucs. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. fns.c, lread.c: Add variable require-prints-loading-message to cause loading messages to get printed when a file is loading during a `require', which normally doesn't happen. This can be set using env var XEMACSDEBUG to debug problems with non-interactive compilation. Modify load-internal so it prints "Requiring: ..." instead of "Loading: ..." when appropriate.
author ben
date Mon, 18 Mar 2002 10:07:39 +0000
parents 79940b592197
children 3604075fb2a3
comparison
equal deleted inserted replaced
779:a29c4eef8f00 780:578cb2932d72
323 # Whether to use dependency information generated by make-src-depend 323 # Whether to use dependency information generated by make-src-depend
324 # 324 #
325 !if !defined(DEPEND) 325 !if !defined(DEPEND)
326 DEPEND=0 326 DEPEND=0
327 !endif 327 !endif
328 !if !defined(PERL_NEEDS_MORE_QUOTING)
329 PERL_NEEDS_MORE_QUOTING=1
330 !endif
328 !if $(DEPEND) && exist("$(SRC)\depend") 331 !if $(DEPEND) && exist("$(SRC)\depend")
329 ! if [if not exist $(OUTDIR)\nul mkdir "$(OUTDIR)"] 332 ! if [if not exist $(OUTDIR)\nul mkdir "$(OUTDIR)"]
330 ! endif 333 ! endif
331 # #### Yuuuuuuuuuuck!!! Cygwin is too smart for its own good. If we are 334 # #### Yuuuuuuuuuuck!!! Cygwin is too smart for its own good. If we are
332 # being run from within Cygwin, a Cygwin Perl seems to require twice as 335 # being run from within Cygwin, a Cygwin Perl seems to require twice as
333 # much backslash quoting. This does not happen, of course, with a non- 336 # much backslash quoting. This does not happen, of course, with a non-
334 # Cygwin Perl, so in that circumstance, you'd be screwed and would have 337 # Cygwin Perl, so in that circumstance, you'd be screwed and would have
335 # to fix this Makefile to not have a special Cygwin case. 338 # to fix this Makefile to not have a special Cygwin case.
336 ! if defined(_) 339 # ! if defined(_)
340 # #### 3-17-02 Double yuck! Suddenly, perl is wanting more quoting always.
341 # #### I have no idea what changed. So I'm just making a variable for
342 # #### this. --ben
343 ! if $(PERL_NEEDS_MORE_QUOTING)
337 ! if [perl -p -e "s/^\\x23if defined(.+)/!if defined$$1/; s/^\\x23e/!e/;" \ 344 ! if [perl -p -e "s/^\\x23if defined(.+)/!if defined$$1/; s/^\\x23e/!e/;" \
338 -e "s/([\\s=^])([\\w\\d\\.\\-^]+\\.[ch^])/$$1$(SRC:\=\\\\)\\\\$$2/g;" \ 345 -e "s/([\\s=^])([\\w\\d\\.\\-^]+\\.[ch^])/$$1$(SRC:\=\\\\)\\\\$$2/g;" \
339 -e "s/^(.+)\\.o:(.+)/$(OUTDIR:\=\\\\)\\\\$$1.obj:$$2 $(NT:\=\\\\)\\\\config.inc/;" \ 346 -e "s/^(.+)\\.o:(.+)/$(OUTDIR:\=\\\\)\\\\$$1.obj:$$2 $(NT:\=\\\\)\\\\config.inc/;" \
340 < $(SRC)\depend > $(OUTDIR)\depend.tmp] 347 < $(SRC)\depend > $(OUTDIR)\depend.tmp]
341 ! endif 348 ! endif