RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: rpm Date: 18-Jul-2007 14:21:40
Branch: HEAD Handle: 2007071813214000
Modified files:
rpm acinclude.m4 configure.ac
Log:
display the version during configure-time, too
Summary:
Revision Changes Path
2.18 +12 -0 rpm/acinclude.m4
2.203 +3 -0 rpm/configure.ac
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/acinclude.m4
============================================================================
$ cvs diff -u -r2.17 -r2.18 acinclude.m4
--- rpm/acinclude.m4 17 Jul 2007 19:13:24 -0000 2.17
+++ rpm/acinclude.m4 18 Jul 2007 12:21:40 -0000 2.18
@@ -4,6 +4,18 @@
dnl ##
dnl ## NAME:
+dnl ## AC_MSG_TITLE -- Display a configuration title
+dnl ##
+dnl ## USAGE:
+dnl ## AC_MSG_TITLE(<name>, <version>)
+dnl ##
+
+AC_DEFUN([AC_MSG_TITLE],[
+ _AS_ECHO([Configuring $1, Version $2])
+])
+
+dnl ##
+dnl ## NAME:
dnl ## AC_MSG_HEADER -- Display a configuration header
dnl ##
dnl ## USAGE:
@@ .
patch -p0 <<'@@ .'
Index: rpm/configure.ac
============================================================================
$ cvs diff -u -r2.202 -r2.203 configure.ac
--- rpm/configure.ac 18 Jul 2007 10:03:01 -0000 2.202
+++ rpm/configure.ac 18 Jul 2007 12:21:40 -0000 2.203
@@ -9,6 +9,9 @@
AC_PREREQ(2.60)
AC_DEFUN([PACKAGE_BUGREPORT_DEFAULT], [rpm-devel@rpm5.org])
AC_INIT(rpm, [5.0.DEVEL], [PACKAGE_BUGREPORT_DEFAULT])
+AC_MSG_TITLE([RPM Package Manager (RPM)], [$PACKAGE_VERSION])
+
+AC_MSG_HEADER([INITIALIZATION])
AC_CONFIG_SRCDIR([rpmqv.c])
AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_TARGET
@@ .
Received on Wed Jul 18 14:21:40 2007