Check-in Number:
|
1780 | |
Date: |
2002-Feb-01 15:51:21 (local)
2002-Feb-01 14:51:21 (UTC) |
User: | rse |
Branch: | |
Comment: |
switch to Autoconf 2.52 |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shtool/ChangeLog 1.165 -> 1.166
--- ChangeLog 2002/02/01 14:42:34 1.165
+++ ChangeLog 2002/02/01 14:51:21 1.166
@@ -11,6 +11,12 @@
Changes between 1.5.4 and 1.6.0 (14-Jun-2001 to 01-Feb-2002):
+ *) Upgraded to GNU Autoconf 2.52 environment.
+ [Ralf S. Engelschall]
+
+ *) Fixed contained RPM specification (shtool.spec)
+ [Ralf S. Engelschall]
+
*) Added new command `shtool rotate `[-v|--verbose] [-t|--trace]
[-f|--force] [-n|--num-files <count>] [-s|--min-size <size>]
[-c|--copy] [-r|--remove] [-a|--archive-dir <dir>] [-z|--compress
|
|
ossp-pkg/shtool/configure 1.10 -> 1.11
ossp-pkg/shtool/configure.ac -> 1.1
*** /dev/null Sat Nov 23 01:31:13 2024
--- - Sat Nov 23 01:31:13 2024
***************
*** 0 ****
--- 1,57 ----
+ dnl ##
+ dnl ## configure.ac -- Autoconf source for GNU shtool
+ dnl ## Copyright (c) 1999-2002 Ralf S. Engelschall <rse@engelschall.com>
+ dnl ##
+ dnl ## This file is part of shtool and free software; you can redistribute
+ dnl ## it and/or modify it under the terms of the GNU General Public
+ dnl ## License as published by the Free Software Foundation; either version
+ dnl ## 2 of the License, or (at your option) any later version.
+ dnl ##
+ dnl ## This file is distributed in the hope that it will be useful,
+ dnl ## but WITHOUT ANY WARRANTY; without even the implied warranty of
+ dnl ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ dnl ## General Public License for more details.
+ dnl ##
+ dnl ## You should have received a copy of the GNU General Public License
+ dnl ## along with this program; if not, write to the Free Software
+ dnl ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ dnl ## USA, or contact Ralf S. Engelschall <rse@engelschall.com>.
+ dnl ##
+
+ AC_PREREQ(2.52)
+ AC_REVISION($1.0$)
+ AC_INIT(README)
+
+ AC_DIVERT_PUSH(NOTICE)
+ SHTOOL_VERSION_STR="`sh sh.version -l txt -d long VERSION`"
+ sh sh.echo -e "Configuring %BGNU shtool%b (Portable Shell Tool), version %B${SHTOOL_VERSION_STR}%b"
+ echo "Copyright (c) 1994-2002 Ralf S. Engelschall <rse@engelschall.com>"
+ AC_SUBST(SHTOOL_VERSION_STR)
+ AC_DIVERT_POP()
+
+ AC_PREFIX_DEFAULT(/usr/local)
+ AC_SET_MAKE
+
+ AC_MSG_CHECKING(for perl interpreter)
+ PERL=`sh sh.path -m perl`
+ AC_SUBST(PERL)
+ AC_MSG_RESULT($PERL)
+ if test ".$PERL" = .; then
+ echo "$0:Error: no perl interpreter found" 1>&2
+ exit 1
+ fi
+
+ AC_MSG_CHECKING(for pod2man conversion tool)
+ perldir=`sh sh.path -d $PERL`
+ POD2MAN=`sh sh.path -m -p "${perldir}:${PATH}" pod2man`
+ AC_SUBST(POD2MAN)
+ AC_MSG_RESULT($POD2MAN)
+ if test ".$POD2MAN" = .; then
+ echo "$0:Error: no pod2man tool found" 1>&2
+ exit 1
+ fi
+
+ AC_CONFIG_FILES(Makefile shtoolize)
+ AC_OUTPUT
+ chmod a+x shtoolize
+
|
|
ossp-pkg/shtool/configure.in 1.12 -> 1.13