From: "Juan Manuel Guerrero" Organization: Darmstadt University of Technology To: djgpp-workers AT delorie DOT com Date: Wed, 23 Jul 2003 18:12:01 +0100 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: texinfo-4.6 minor issues X-mailer: Pegasus Mail for Windows (v2.54DE) Message-ID: <84149971DB@HRZ1.hrz.tu-darmstadt.de> X-MailScanner: Found to be clean Reply-To: djgpp-workers AT delorie DOT com I have configured and compiled texinfo-4.6 using stock djgpp tools (gcc323, bnu213, djdev203(patchlevel 2)) and I have found the following issues: 1) The following resolve to the same DOS file names: INTTYPES.M4 : texinfo-4.6/m4/inttypes-pri.m4 texinfo-4.6/m4/inttypes.m4 texinfo-4.6/m4/inttypes_h.m4 ONCEONLY.M4 : texinfo-4.6/m4/onceonly.m4 texinfo-4.6/m4/onceonly_2_57.m4 Of course, the same difficulty results if the generation of numeric tails is disabled on Win98. Although, this does not influence neither the configuration process nor the compilation processes it may be worth to fixed. I have modified config.sed slightly to adapt the configure script and makefiles to the new 8.3 clean names. I have renamed the files like: inttypes-pri.m4 -> inttype-pri.m4 inttypes_h.m4 -> inttype_h.m4 onceonly_2_57.m4 -> 2_57_onceonly.m4 Please note that the new names are not suggestions. There are simply the ones I have choosen to be able to make a package that cleanly extracts on plain DOS. 2) config.sed needs a minor adjustment or the replacement: Makefile.in.in -> Makefile.in-in will not work makeing the compilation process stop at some stage. Please see the little patch below. Except for this two issues, I have experienced not difficulty with this package. I have been able to configure and compile under plain DOS and Win98SE. I have created the usual zip files: txi46[bds].zip. If no one objects, I can upload them today. Please let me know if there are wanted at all. Regards, Juan M. Guerrero OFYI diff -aurpNU2 texinfo-4.6.orig/djgpp/config.sed texinfo-4.6/djgpp/config.sed --- texinfo-4.6.orig/djgpp/config.sed 2002-03-15 19:39:04.000000000 +0000 +++ texinfo-4.6/djgpp/config.sed 2003-07-23 17:04:08.000000000 +0000 @@ -19,10 +19,13 @@ /^uninstall-info-am:/,/^$/ {\ /@list=.\\\$(INFO_DEPS)\[^ \]/s,DEPS),& texinf- texin- info-stn.i info.inf,\ s,\\(file-\\[0-9\\]\\[0-9\\]\\)\\(\[^ \]\\),\\1 \\$\\$file[0-9] \\$\\$file[0-9][0-9]\\2,\ - } + }\ + s,inttypes-pri\\.m4,inttype-pri.m4,\ + s,inttypes_h\\.m4,inttype_h.m4,\ + s,onceonly_2_57\\.m4,2_57_onceonly.m4, # Makefile.in.in is renamed to Makefile.in-in. -/^ac_config_files=/,/_ACEOF/ { +/ac_config_files=/,/_ACEOF/ { s|po/Makefile\.in|&:po/Makefile.in-in| } /CONFIG_FILES=/ s|po/Makefile\.in|&:po/Makefile.in-in|2