a2ps-commit
[Top][All Lists]
Advanced

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

CVS: a2ps ChangeLog,1.14,1.15 Makefile.am,1.4,1.5 README-cvs,1.2,1.3 boo


From: Akim Demaille <address@hidden>
Subject: CVS: a2ps ChangeLog,1.14,1.15 Makefile.am,1.4,1.5 README-cvs,1.2,1.3 bootstrap,1.4,1.5 configure.in,1.4,1.5
Date: Fri, 19 Jul 2002 07:49:08 -0400

Update of /cvsroot/a2ps/a2ps
In directory subversions:/tmp/cvs-serv5323

Modified Files:
        ChangeLog Makefile.am README-cvs bootstrap configure.in 
Log Message:
* m4/file.m4: Pass -f to rm.
* configure.in: Require Gettext 0.11.3 and Autoconf 2.53b.
Run AM_INIT_AUTOMAKE before AC_CONFIG_HEADERS.
* Makefile.am (AUTOMAKE_OPTIONS): Require 1.6.2.
* bootstrap: Fix `contrib' setup.
* m4/gettext-version.m4: New, to work around a Gettext 0.11.3 bug.
* m4/c-bs-a.m4: Remove, now in Autoconf.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/a2ps/a2ps/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** ChangeLog   18 Apr 2002 16:05:05 -0000      1.14
--- ChangeLog   19 Jul 2002 11:49:05 -0000      1.15
***************
*** 1,2 ****
--- 1,12 ----
+ 2002-07-19  Akim Demaille  <address@hidden>
+ 
+       * m4/file.m4: Pass -f to rm.
+       * configure.in: Require Gettext 0.11.3 and Autoconf 2.53b.
+       Run AM_INIT_AUTOMAKE before AC_CONFIG_HEADERS.
+       * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6.2.
+       * bootstrap: Fix `contrib' setup.
+       * m4/gettext-version.m4: New, to work around a Gettext 0.11.3 bug.
+       * m4/c-bs-a.m4: Remove, now in Autoconf.
+ 
  2002-04-18  Akim Demaille  <address@hidden>
  

Index: Makefile.am
===================================================================
RCS file: /cvsroot/a2ps/a2ps/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** Makefile.am 22 Mar 2002 15:12:44 -0000      1.4
--- Makefile.am 19 Jul 2002 11:49:05 -0000      1.5
***************
*** 18,22 ****
  
  ## Process this file with automake to produce Makefile.in
! AUTOMAKE_OPTIONS = check-news 1.6 dist-bzip2 readme-alpha
  
  ## Make sure to drop doc at the end: it causes may problems, so
--- 18,22 ----
  
  ## Process this file with automake to produce Makefile.in
! AUTOMAKE_OPTIONS = check-news 1.6.2 dist-bzip2 readme-alpha
  
  ## Make sure to drop doc at the end: it causes may problems, so

Index: README-cvs
===================================================================
RCS file: /cvsroot/a2ps/a2ps/README-cvs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** README-cvs  18 Apr 2002 16:05:47 -0000      1.2
--- README-cvs  19 Jul 2002 11:49:05 -0000      1.3
***************
*** 4,12 ****
  tools we depend upon:
  
! - Automake 1.6 or 1.6.1
! - Autoconf 2.53 or better
!   (actually, CVS Autoconf provides a better autoreconf...
!    http://www.lrde.epita.fr/~akim/download/autoconf-2.53a.tar.gz)
! - Gettext 0.10.1
  
  Only building the initial full source tree will be a bit painful,
--- 4,11 ----
  tools we depend upon:
  
! - Automake 1.6.2
! - Autoconf 2.53b
!   (ftp://sources.redhat.com/pub/automake/autoconf-2.53b.tar.gz)
! - Gettext 0.11.3
  
  Only building the initial full source tree will be a bit painful,

Index: bootstrap
===================================================================
RCS file: /cvsroot/a2ps/a2ps/bootstrap,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** bootstrap   18 Apr 2002 17:17:54 -0000      1.4
--- bootstrap   19 Jul 2002 11:49:05 -0000      1.5
***************
*** 1,4 ****
  #! /bin/sh
! 
  contrib_scripts="card fixps pdiff psmandup psset"
  
--- 1,4 ----
  #! /bin/sh
! set -e
  contrib_scripts="card fixps pdiff psmandup psset"
  
***************
*** 6,10 ****
  
  # These are created by the Makefile, which is missing for the time
! # being.
  for i in $contrib_scripts
  do
--- 6,10 ----
  
  # These are created by the Makefile, which is missing for the time
! # being.  They are needed by configure.
  for i in $contrib_scripts
  do
***************
*** 15,35 ****
  autoreconf --force --install --verbose
  
- # Because of Gettext
- mv m4/Makefile.am~ m4/Makefile.am
- mv Makefile.am~ Makefile.am
- mv configure.in~ configure.in
- touch m4/Makefile.am Makefile.am configure.in
- autoreconf --verbose
- 
  # Configure and make the missing guys.
  ./configure
- make
  
  (
    cd contrib
    for i in $contrib_scripts
    do
!     rm $i.in
    done
    make
  )
--- 15,30 ----
  autoreconf --force --install --verbose
  
  # Configure and make the missing guys.
  ./configure
  
+ # Configure was using card.in etc.  But they were probably fake ones.
+ # Remove them, and let make do the rest.
  (
    cd contrib
    for i in $contrib_scripts
    do
!     rm -f $i $i.in
    done
    make
  )
+ make

Index: configure.in
===================================================================
RCS file: /cvsroot/a2ps/a2ps/configure.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** configure.in        22 Mar 2002 15:12:44 -0000      1.4
--- configure.in        19 Jul 2002 11:49:05 -0000      1.5
***************
*** 3,14 ****
  ## ---------------- ##
  
! AC_PREREQ(2.53)
  AC_INIT(GNU a2ps, 4.49a, address@hidden)
  
  AC_CONFIG_AUX_DIR(auxdir)
- AM_CONFIG_HEADER(config.h)
  
  # Initialize automake
  AM_INIT_AUTOMAKE
  # Specify the liba2ps version number
  LIBVERSION=1:0:0
--- 3,16 ----
  ## ---------------- ##
  
! AC_PREREQ(2.53b)
  AC_INIT(GNU a2ps, 4.49a, address@hidden)
  
  AC_CONFIG_AUX_DIR(auxdir)
  
  # Initialize automake
  AM_INIT_AUTOMAKE
+ 
+ AC_CONFIG_HEADERS(config.h)
+ 
  # Specify the liba2ps version number
  LIBVERSION=1:0:0
***************
*** 154,158 ****
  
  # Internationalization.
! AM_GNU_GETTEXT
  
  # Save the cache
--- 156,161 ----
  
  # Internationalization.
! AM_GNU_GETTEXT_VERSION([0.11.3])
! AM_GNU_GETTEXT(, need-ngettext)
  
  # Save the cache




reply via email to

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