bug-texinfo
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Unconditional use of LC_MESSAGES ISO C extension


From: Juan Manuel Guerrero
Subject: Re: Unconditional use of LC_MESSAGES ISO C extension
Date: Sat, 1 Sep 2007 18:33:05 +0200
User-agent: KMail/1.9.5

Am Samstag, 1. September 2007 02:08 schrieb Karl Berry:
> Hello Juan,
[snip]
> 
> Can you get the new files from CVS and see if it works for you now on
> djgpp?  I'd like to make another pretest and then a release soon.
> 
> Thanks,
> Karl
> 

Hello Karl,
I have downloaded the CVS suorces and now it works for me.

Here a small djgpp specific patch to fix minor issues.  They are
not related to the LC_MESSAGES issue.

Regards,
Juan M. Guerrero



2007-09-01  Juan Manuel Guerrero  <address@hidden>

        * djgpp/config.bat: change file names arguments and configure.orig
        to args and configure.org.
        Remove the command line that deletes co*.tmp files.



diff -aprNU3 texinfo-4.9.92.orig/djgpp/config.bat 
texinfo-4.9.92/djgpp/config.bat
--- texinfo-4.9.92.orig/djgpp/config.bat        2007-08-04 17:19:24 +0000
+++ texinfo-4.9.92/djgpp/config.bat     2007-09-01 18:18:12 +0000
@@ -76,11 +76,11 @@ if not "%1" == "" goto arg_loop
 set SPECARG=
 
 Rem Create a response file for the configure script.
-echo --srcdir=%XSRC% > arguments
-if "%CACHE%" == "enabled"    echo --config-cache >>arguments
-if "%DEPTRAK%" == "enabled"  echo --enable-dependency-tracking >>arguments
-if "%DEPTRAK%" == "disabled" echo --disable-dependency-tracking >>arguments
-if not "%ARGS%" == ""        echo %ARGS% >>arguments
+echo --srcdir=%XSRC% > args
+if "%CACHE%" == "enabled"    echo --config-cache >> args
+if "%DEPTRAK%" == "enabled"  echo --enable-dependency-tracking >> args
+if "%DEPTRAK%" == "disabled" echo --disable-dependency-tracking >> args
+if not "%ARGS%" == ""        echo %ARGS% >> args
 set ARGS=
 set CACHE=
 set DEPTRAK=
@@ -88,16 +88,16 @@ set DEPTRAK=
 if "%XSRC%" == "." goto in_place
 
 :not_in_place
-redir -e /dev/null update %XSRC%/configure.orig ./configure
+redir -e /dev/null update %XSRC%/configure.org ./configure
 test -f ./configure
 if errorlevel 1 update %XSRC%/configure ./configure
 
 :in_place
 Rem Update configuration files
 echo Updating configuration scripts...
-test -f ./configure.orig
-if errorlevel 1 update configure configure.orig
-sed -f %XSRC%/djgpp/config.sed configure.orig > configure
+test -f ./configure.org
+if errorlevel 1 update configure configure.org
+sed -f %XSRC%/djgpp/config.sed configure.org > configure
 if errorlevel 1 goto sed_error
 
 Rem Make sure they have a config.site file
@@ -192,23 +192,20 @@ redir -e /dev/null rm %XSRC%/po/stamp-ca
 Rem Update the arguments file for the configure script.
 Rem We prefer without-included-gettext because libintl.a from gettext package
 Rem is the only one that is guaranteed to have been ported to DJGPP.
-echo --enable-nls --without-included-gettext >> arguments
+echo --enable-nls --without-included-gettext >> args
 goto configure_package
 
 :missing_NLS_tools
 echo Needed libs/tools for NLS not found.  Configuring without NLS.
 :without_NLS
 Rem Update the arguments file for the configure script.
-echo --disable-nls >> arguments
+echo --disable-nls >> args
 
 :configure_package
 echo Running the ./configure script...
-sh ./configure @arguments
+sh ./configure @args
 if errorlevel 1 goto cfg_error
-rm arguments
-
-Rem Remove files created by the gl_FUNC_MKSTEMP test.
-rm co*.tmp
+rm args
 echo Done.
 goto End
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]