joes 2003/02/27 14:21:41
Modified: . configure.in
Cookie Cookie.pm
Request Request.pm
c Makefile.am
lib/Apache libapreq.pm
Log:
Bump version numbers. (library's ABI has changed)
Revision Changes Path
1.5 +1 -1 httpd-apreq/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/httpd-apreq/configure.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- configure.in 24 Nov 2002 02:46:07 -0000 1.4
+++ configure.in 27 Feb 2003 22:21:39 -0000 1.5
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(libapreq.pod)
-AM_INIT_AUTOMAKE(libapreq, 1.1)
+AM_INIT_AUTOMAKE(libapreq, 1.2)
dnl Checks for programs.
AC_PROG_CC
1.8 +1 -1 httpd-apreq/Cookie/Cookie.pm
Index: Cookie.pm
===================================================================
RCS file: /home/cvs/httpd-apreq/Cookie/Cookie.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Cookie.pm 3 Nov 2002 22:21:20 -0000 1.7
+++ Cookie.pm 27 Feb 2003 22:21:39 -0000 1.8
@@ -6,7 +6,7 @@
{
no strict;
- $VERSION = '1.1';
+ $VERSION = '1.2';
__PACKAGE__->mod_perl::boot($VERSION);
}
1.22 +1 -1 httpd-apreq/Request/Request.pm
Index: Request.pm
===================================================================
RCS file: /home/cvs/httpd-apreq/Request/Request.pm,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- Request.pm 3 Nov 2002 22:21:20 -0000 1.21
+++ Request.pm 27 Feb 2003 22:21:40 -0000 1.22
@@ -6,7 +6,7 @@
{
no strict;
- $VERSION = '1.1';
+ $VERSION = '1.2';
@ISA = qw(Apache);
__PACKAGE__->mod_perl::boot($VERSION);
}
1.7 +1 -1 httpd-apreq/c/Makefile.am
Index: Makefile.am
===================================================================
RCS file: /home/cvs/httpd-apreq/c/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Makefile.am 24 Nov 2002 02:46:07 -0000 1.6
+++ Makefile.am 27 Feb 2003 22:21:41 -0000 1.7
@@ -2,5 +2,5 @@
pkginclude_HEADERS = apache_cookie.h apache_request.h
apache_multipart_buffer.h
libapreq_la_SOURCES = apache_cookie.c apache_request.c \
apache_multipart_buffer.c
-libapreq_la_LDFLAGS = -version-info 1:1
+libapreq_la_LDFLAGS = -version-info 2:1:1
INCLUDES = @LIBAPREQ_INCLUDES@
1.3 +1 -1 httpd-apreq/lib/Apache/libapreq.pm
Index: libapreq.pm
===================================================================
RCS file: /home/cvs/httpd-apreq/lib/Apache/libapreq.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libapreq.pm 5 Jan 2003 13:25:54 -0000 1.2
+++ libapreq.pm 27 Feb 2003 22:21:41 -0000 1.3
@@ -1,5 +1,5 @@
package Apache::libapreq;
-$VERSION = '1.1';
+$VERSION = '1.2';
use strict;
use Config;