texinfo-commits
[Top][All Lists]
Advanced

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

texinfo ChangeLog configure.ac util/Makefile.am...


From: karl
Subject: texinfo ChangeLog configure.ac util/Makefile.am...
Date: Fri, 14 Dec 2012 19:49:19 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     karl <karl>     12/12/14 19:49:19

Modified files:
        .              : ChangeLog configure.ac 
        util           : Makefile.am 
Added files:
        util           : makeinfo.bat pod2texi.bat texi2any.bat 

Log message:
        .bat wrappers for Windows

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1477&r2=1.1478
http://cvs.savannah.gnu.org/viewcvs/texinfo/configure.ac?cvsroot=texinfo&r1=1.129&r2=1.130
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/Makefile.am?cvsroot=texinfo&r1=1.50&r2=1.51
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/makeinfo.bat?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/pod2texi.bat?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texi2any.bat?cvsroot=texinfo&rev=1.1

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1477
retrieving revision 1.1478
diff -u -b -r1.1477 -r1.1478
--- ChangeLog   14 Dec 2012 19:36:53 -0000      1.1477
+++ ChangeLog   14 Dec 2012 19:49:18 -0000      1.1478
@@ -1,3 +1,9 @@
+2012-12-11  Eli Zaretskii  <address@hidden>
+
+       * configure.ac (TGT_IS_WINDOWS): New conditional.
+       * util/Makefile.am (bin_SCRIPTS) [TGT_IS_WINDOWS]: add Windows
+       batch files to bin_SCRIPTS.
+
 2012-12-14  Ineiev  <address@hidden>  (tiny change)
 
        * configure.ac (HAVE_TERMLIBS): new conditional.  End with

Index: configure.ac
===================================================================
RCS file: /sources/texinfo/texinfo/configure.ac,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -b -r1.129 -r1.130
--- configure.ac        14 Dec 2012 19:36:53 -0000      1.129
+++ configure.ac        14 Dec 2012 19:49:18 -0000      1.130
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-# $Id: configure.ac,v 1.129 2012/12/14 19:36:53 karl Exp $
+# $Id: configure.ac,v 1.130 2012/12/14 19:49:18 karl Exp $
 #
 # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
 # Free Software Foundation, Inc.
@@ -378,6 +378,12 @@
 AC_MSG_RESULT([$pod_simple_texinfo_tests])
 AM_CONDITIONAL([POD_SIMPLE_TEXINFO_TESTS], [test "z$pod_simple_texinfo_tests" 
= 'zyes'])
 
+tgt_is_windows=no
+case "$target" in
+   *-mingw32 | *-mingw64 | *-msdosdjgpp )  tgt_is_windows=yes ;;
+esac     
+AM_CONDITIONAL([TGT_IS_WINDOWS], [test "x$tgt_is_windows" = "xyes"])
+
 # The config files to generate.
 AC_CONFIG_FILES([\
   Makefile

Index: util/Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/util/Makefile.am,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -b -r1.50 -r1.51
--- util/Makefile.am    21 Nov 2012 22:48:47 -0000      1.50
+++ util/Makefile.am    14 Dec 2012 19:49:18 -0000      1.51
@@ -1,4 +1,4 @@
-# $Id: Makefile.am,v 1.50 2012/11/21 22:48:47 pertusus Exp $
+# $Id: Makefile.am,v 1.51 2012/12/14 19:49:18 karl Exp $
 # Makefile.am for texinfo/util.
 # Run automake in .. to produce Makefile.in from this.
 #
@@ -15,6 +15,9 @@
 
 bin_PROGRAMS = texindex
 bin_SCRIPTS = texi2dvi texi2pdf pdftexi2dvi
+if TGT_IS_WINDOWS
+ bin_SCRIPTS += makeinfo.bat pod2texi.bat texi2any.bat
+endif
 nodist_noinst_SCRIPTS = txixml2texi
 
 # for auctex.

Index: util/makeinfo.bat
===================================================================
RCS file: util/makeinfo.bat
diff -N util/makeinfo.bat
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ util/makeinfo.bat   14 Dec 2012 19:49:19 -0000      1.1
@@ -0,0 +1,2 @@
address@hidden off
++perl "%~dpn0" %*

Index: util/pod2texi.bat
===================================================================
RCS file: util/pod2texi.bat
diff -N util/pod2texi.bat
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ util/pod2texi.bat   14 Dec 2012 19:49:19 -0000      1.1
@@ -0,0 +1,2 @@
address@hidden off
++perl "%~dpn0" %*

Index: util/texi2any.bat
===================================================================
RCS file: util/texi2any.bat
diff -N util/texi2any.bat
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ util/texi2any.bat   14 Dec 2012 19:49:19 -0000      1.1
@@ -0,0 +1,2 @@
address@hidden off
++perl "%~dpn0" %*



reply via email to

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