texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Nov 19 08:22:01 EST 2004)


From: Karl Berry
Subject: texinfo update (Fri Nov 19 08:22:01 EST 2004)
Date: Fri, 19 Nov 2004 08:22:13 -0500

Index: INSTALL
===================================================================
RCS file: /cvsroot/texinfo/texinfo/INSTALL,v
retrieving revision 1.4
retrieving revision 1.5
diff -c -r1.4 -r1.5
*** INSTALL     18 Nov 2004 01:10:59 -0000      1.4
--- INSTALL     19 Nov 2004 13:08:47 -0000      1.5
***************
*** 1,4 ****
! $Id: INSTALL,v 1.4 2004/11/18 01:10:59 karl Exp $
  
       Copying and distribution of this file, with or without modification,
       are permitted in any medium without royalty provided the copyright
--- 1,4 ----
! $Id: INSTALL,v 1.5 2004/11/19 13:08:47 karl Exp $
  
       Copying and distribution of this file, with or without modification,
       are permitted in any medium without royalty provided the copyright
***************
*** 19,25 ****
  * On the other hand, if you're maintaining a TeX distribution, you don't
    want your users to see the installation warnings, because you already
    have the files installed.  (And you're keeping them up to date, right?)
!   In this case, run configure --disable-install-warnings.
  
  * On MacOSX, if configure fails with the error:
        ac_cv_build='config.sub: invalid option -apple-darwin7.2.0
--- 19,26 ----
  * On the other hand, if you're maintaining a TeX distribution, you don't
    want your users to see the installation warnings, because you already
    have the files installed.  (And you're keeping them up to date, right?)
!   In this case, run configure --disable-install-warnings, or set
!   enable_install_warnings=no in the environment.
  
  * On MacOSX, if configure fails with the error:
        ac_cv_build='config.sub: invalid option -apple-darwin7.2.0
Index: configure.ac
===================================================================
RCS file: /cvsroot/texinfo/texinfo/configure.ac,v
retrieving revision 1.44
retrieving revision 1.45
diff -c -r1.44 -r1.45
*** configure.ac        18 Nov 2004 15:00:52 -0000      1.44
--- configure.ac        19 Nov 2004 13:08:46 -0000      1.45
***************
*** 1,5 ****
  # Process this file with autoconf to produce a configure script.
! # $Id: configure.ac,v 1.44 2004/11/18 15:00:52 karl Exp $
  #
  # This file is free software; as a special exception the author gives
  # unlimited permission to copy and/or distribute it, with or without
--- 1,5 ----
  # Process this file with autoconf to produce a configure script.
! # $Id: configure.ac,v 1.45 2004/11/19 13:08:46 karl Exp $
  #
  # This file is free software; as a special exception the author gives
  # unlimited permission to copy and/or distribute it, with or without
***************
*** 186,191 ****
--- 186,192 ----
  AC_CANONICAL_HOST
  AC_ARG_ENABLE(multiplatform,
    [  --enable-multiplatform      put executables in bin/PLATFORM])
+ # if enable_multiplatform is set in the environment, use that.
  test "x$enable_multiplatform" = xyes \
  && test "x$bindir" = 'x${exec_prefix}/bin' \
  && bindir="$bindir/$host"
***************
*** 199,206 ****
        no) install_warnings=false ;;
         *) AC_MSG_ERROR(bad value ${enableval} for --enable-install-warnings) 
;;
     esac],
!    [install_warnings=true])
! AM_CONDITIONAL(INSTALL_WARNINGS, $install_warnings)
  
  # i18n support.  To update to a new version of gettext, run:
  # gettextize -f -c --intl
--- 200,208 ----
        no) install_warnings=false ;;
         *) AC_MSG_ERROR(bad value ${enableval} for --enable-install-warnings) 
;;
     esac],
!    [install_warnings=${enable_install_warnings-true}])
! AM_CONDITIONAL(INSTALL_WARNINGS,
!    test x"$install_warnings" = xtrue || test x"$install_warnings" = xyes)
  
  # i18n support.  To update to a new version of gettext, run:
  # gettextize -f -c --intl
P INSTALL
P configure.ac


reply via email to

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