cvsdist 8499950
%define contentdir /var/www
cvsdist 8499950
cvsdist 8499950
Summary: An embedded Perl interpreter for the Apache Web server.
cvsdist 8499950
Name: mod_perl
cvsdist 79d3304
Version: 1.99_16
Elliot Lee cd371e9
Release: 2
cvsdist 8499950
Group: System Environment/Daemons
cvsdist 1ef7536
Source: http://perl.apache.org/dist/mod_perl-%{version}.tar.gz
cvsdist 25d4d7e
Source1: perl.conf
cvsdist 25d4d7e
Source2: filter-requires.sh
cvsdist 985b004
Source3: reap-stale-servers.sh
cvsdist 985b004
Source4: testlock.sh
cvsdist 8499950
License: GPL
cvsdist 17f7bd7
URL: http://perl.apache.org/
cvsdist 8499950
BuildRoot: %{_tmppath}/%{name}-root
cvsdist 985b004
Requires: httpd >= 2.0.40, perl
cvsdist 985b004
BuildPrereq: httpd-devel >= 2.0.45-14, httpd, perl, gdbm-devel
cvsdist 985b004
BuildPrereq: apr-devel, apr-util-devel
cvsdist 8499950
Prereq: perl
cvsdist e48df4b
Requires: httpd-mmn = %(cat %{_includedir}/httpd/.mmn || echo missing)
cvsdist 8499950
cvsdist f0edb9c
%define __perl_requires %{SOURCE2}
cvsdist 25d4d7e
cvsdist 8499950
%description
cvsdist 81ad53c
Mod_perl incorporates a Perl interpreter into the Apache web server,
cvsdist 81ad53c
so that the Apache web server can directly execute Perl code.
cvsdist 81ad53c
Mod_perl links the Perl runtime library into the Apache web server and
cvsdist 81ad53c
provides an object-oriented Perl interface for Apache's C language
cvsdist 81ad53c
API.  The end result is a quicker CGI script turnaround process, since
cvsdist 81ad53c
no external Perl interpreter has to be started.
cvsdist 8499950
cvsdist 81ad53c
Install mod_perl if you're installing the Apache web server and you'd
cvsdist 81ad53c
like for it to directly incorporate a Perl interpreter.
cvsdist 8499950
cvsdist 985b004
%package devel
cvsdist 985b004
Summary: Files needed for building XS modules that use mod_perl
cvsdist 985b004
Group: Development/Libraries
cvsdist 985b004
Requires: mod_perl = %{version}-%{release}, httpd-devel
cvsdist 985b004
cvsdist 985b004
%description devel 
cvsdist 985b004
The mod_perl-devel package contains the files needed for building XS
cvsdist 985b004
modules that use mod_perl.
cvsdist 985b004
cvsdist 8499950
%prep
cvsdist 8499950
%setup -q
cvsdist 8499950
cvsdist 8499950
%build
cvsdist 25d4d7e
%{__perl} Makefile.PL 
cvsdist 25d4d7e
	PREFIX=$RPM_BUILD_ROOT/usr INSTALLDIRS=vendor \
cvsdist 985b004
	MP_APXS=%{_sbindir}/apxs MP_APR_CONFIG=%{_bindir}/apr-config \
cvsdist 25d4d7e
	CCFLAGS="$RPM_OPT_FLAGS -fPIC"
cvsdist 8499950
make
cvsdist 8499950
cvsdist 8499950
# Run the test suite.
cvsdist 25d4d7e
#  Need to make t/htdocs/perlio because it isn't expecting to be run as
cvsdist 25d4d7e
#  root and will fail tests that try and write files because the server
cvsdist 25d4d7e
#  will have changed it's uid.
cvsdist 985b004
%ifarch 1386
cvsdist 25d4d7e
mkdir t/htdocs/perlio
cvsdist 25d4d7e
chmod 777 t/htdocs/perlio
cvsdist 985b004
$RPM_SOURCE_DIR/testlock.sh acquire
cvsdist 985b004
$RPM_SOURCE_DIR/reap-stale-servers.sh
cvsdist 8499950
make test
cvsdist 985b004
$RPM_SOURCE_DIR/testlock.sh release
cvsdist 985b004
%endif
cvsdist 8499950
cvsdist 8499950
%install
cvsdist 8499950
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
cvsdist 25d4d7e
mkdir -p $RPM_BUILD_ROOT%{_libdir}/httpd/modules
cvsdist 985b004
make install \
cvsdist 985b004
    MODPERL_AP_LIBEXECDIR=$RPM_BUILD_ROOT%{_libdir}/httpd/modules \
cvsdist 985b004
    MODPERL_AP_INCLUDEDIR=$RPM_BUILD_ROOT%{_includedir}/httpd
cvsdist 985b004
cvsdist 985b004
# Fix permissions of solibs to avoid strip failures on non-root builds.
cvsdist 985b004
find $RPM_BUILD_ROOT%{_libdir} -name "*.so" | xargs chmod u+w
cvsdist 8499950
cvsdist 25d4d7e
# Install the config file
cvsdist 25d4d7e
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d
cvsdist 25d4d7e
install -m 644 $RPM_SOURCE_DIR/perl.conf \
cvsdist 25d4d7e
   $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/
cvsdist 8499950
cvsdist 8499950
# Install its manual.
cvsdist 25d4d7e
#mkdir -p $RPM_BUILD_ROOT%{contentdir}/manual/mod/mod_perl
cvsdist 25d4d7e
#install -c -m 644 htdocs/manual/mod/mod_perl.html \
cvsdist 25d4d7e
#        $RPM_BUILD_ROOT%{contentdir}/manual/mod
cvsdist 8499950
cvsdist 25d4d7e
#make -C faq
cvsdist 25d4d7e
#rm faq/pod2htm*
cvsdist 25d4d7e
#install -m644 faq/*.html $RPM_BUILD_ROOT%{contentdir}/manual/mod/mod_perl/
cvsdist 8499950
cvsdist 17f7bd7
# Remove the temporary files.
cvsdist 1fc5289
find $RPM_BUILD_ROOT%{_libdir}/perl?/vendor_perl/*/*/auto -name "*.bs" | xargs rm
cvsdist 985b004
rm -f $RPM_BUILD_ROOT%{_libdir}/perl?/vendor_perl/*/*/perllocal.pod
cvsdist 985b004
rm -f $RPM_BUILD_ROOT%{_libdir}/perl?/*/*/perllocal.pod
cvsdist 17f7bd7
cvsdist 8499950
%clean
cvsdist 8499950
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
cvsdist 8499950
cvsdist 8499950
%files
cvsdist 8499950
%defattr(-,root,root)
cvsdist 25d4d7e
%doc Changes INSTALL LICENSE README docs
cvsdist 25d4d7e
#%{contentdir}/manual/mod/*
cvsdist 25d4d7e
%config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf
cvsdist 985b004
%{_bindir}/*
cvsdist 25d4d7e
%{_libdir}/httpd/modules/mod_perl.so
cvsdist 1fc5289
%{_libdir}/perl?/vendor_perl/*/*/auto/*
cvsdist 25d4d7e
%{_libdir}/perl?/vendor_perl/*/*/Apache
cvsdist 1fc5289
%{_libdir}/perl?/vendor_perl/*/*/Bundle/*
cvsdist 25d4d7e
%{_libdir}/perl?/vendor_perl/*/*/APR
cvsdist 25d4d7e
%{_libdir}/perl?/vendor_perl/*/*/ModPerl
cvsdist 25d4d7e
%{_libdir}/perl?/vendor_perl/*/*/*.pm
cvsdist 25d4d7e
%{_mandir}/*/*.3*
cvsdist 8499950
cvsdist 985b004
%files devel
cvsdist 985b004
%defattr(-,root,root)
cvsdist 985b004
%{_includedir}/httpd/*
cvsdist 985b004
cvsdist 8499950
%changelog
cvsdist 79d3304
* Sun Sep  5 2004 Chip Turner <cturner@redhat.com> 1.99_16-1
cvsdist 79d3304
- update to 1.99_16
cvsdist 79d3304
cvsdist 2e7a26c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 2e7a26c
- rebuilt
cvsdist 2e7a26c
cvsdist e48df4b
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist e48df4b
- rebuilt
cvsdist e48df4b
cvsdist e48df4b
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 1.99_12-2
cvsdist e48df4b
- rebuild for update
cvsdist e48df4b
cvsdist e48df4b
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 1.99_12-1
cvsdist e48df4b
- update to 1.99_12
cvsdist e48df4b
cvsdist e48df4b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist e48df4b
- rebuilt
cvsdist e48df4b
cvsdist e48df4b
* Fri Feb  6 2004 Joe Orton <jorton@redhat.com> 1.99_11-4
cvsdist e48df4b
- rebuild to pick up libdb-4.2
cvsdist e48df4b
cvsdist d73bbc3
* Wed Dec  3 2003 Chip Turner <cturner@redhat.com> 1.99_11-2
cvsdist d73bbc3
- fix the Requires: on httpd-mmn since it relied on the build box and not the build root
cvsdist d73bbc3
cvsdist d73bbc3
* Wed Dec  3 2003 Chip Turner <cturner@redhat.com> 1.99_11-1
cvsdist d73bbc3
- upgrade to 1.99_11
cvsdist d73bbc3
- remove aprinc patch, no longer necessary
cvsdist d73bbc3
- remove hash fix, no longer necessary
cvsdist d73bbc3
cvsdist 985b004
* Tue Sep  9 2003 Gary Benson <gbenson@redhat.com> 1.99_09-10
cvsdist 985b004
- reenable test suite on i386 only.
cvsdist 985b004
cvsdist 985b004
* Mon Sep  8 2003 Gary Benson <gbenson@redhat.com> 1.99_09-9
cvsdist 985b004
- Apache::Status requires Apache::compat (#103891).
cvsdist 985b004
- add dependency on gdbm-devel (#103889).
cvsdist 985b004
- avoid strip failures on non-root builds (#103889).
cvsdist 985b004
cvsdist 985b004
* Fri Sep  5 2003 Gary Benson <gbenson@redhat.com> 
cvsdist 985b004
- remove explicit perl dependency (#103830).
cvsdist 985b004
cvsdist 985b004
* Wed Sep  3 2003 Gary Benson <gbenson@redhat.com>
cvsdist 985b004
- add PerlWarn and PerlTaintCheck examples to perl.conf.
cvsdist 985b004
cvsdist 985b004
* Thu Aug 28 2003 Gary Benson <gbenson@redhat.com>
cvsdist 985b004
- implement locking around test suite to avoid breakage when two
cvsdist 985b004
  architectures are built simultaneously on the same machine.
cvsdist 985b004
- make the stale-server killer wait until the server is truly dead,
cvsdist 985b004
  and move it into the lock.
cvsdist 985b004
cvsdist 985b004
* Wed Aug 27 2003 Gary Benson <gbenson@redhat.com> 1.99_09-8
cvsdist 985b004
- add an Apache::Status example to /etc/httpd/conf.d/perl.conf.
cvsdist 985b004
- kill any stale test servers before building.
cvsdist 985b004
cvsdist 985b004
* Thu Aug 21 2003 Gary Benson <gbenson@redhat.com> 1.99_09-7
cvsdist 985b004
- fix bad syntax in /etc/httpd/conf.d/perl.conf (#101988).
cvsdist 985b004
cvsdist 985b004
* Tue Jul 15 2003 Gary Benson <gbenson@redhat.com> 1.99_09-6
cvsdist 985b004
- patch to build with perl 5.8.1.
cvsdist 985b004
- disable test suite.
cvsdist 985b004
- also build on ppc64.
cvsdist 985b004
cvsdist 985b004
* Wed Jun  4 2003 Gary Benson <gbenson@redhat.com> 1.99_09-5
cvsdist 985b004
- also build on s390x.
cvsdist 985b004
cvsdist 985b004
* Wed Jun  4 2003 Gary Benson <gbenson@redhat.com> 1.99_09-4
cvsdist 985b004
- add a build time dependency upon httpd
cvsdist 985b004
cvsdist 985b004
* Fri May 23 2003 Gary Benson <gbenson@redhat.com> 1.99_09-3
cvsdist 985b004
- rebuild against reverted perl, and reenable test suite
cvsdist 985b004
cvsdist 985b004
* Tue May 13 2003 Joe Orton <jorton@redhat.com> 1.99_09-2
cvsdist 985b004
- pick up APR include directory
cvsdist 985b004
- disable test suite
cvsdist 985b004
cvsdist 985b004
* Mon May 12 2003 Gary Benson <gbenson@redhat.com>
cvsdist 985b004
- upgrade to 1.99_09
cvsdist 985b004
cvsdist f0edb9c
* Mon Feb 10 2003 Gary Benson <gbenson@redhat.com> 1.99_07-5
cvsdist f0edb9c
- reenable the test suite
cvsdist f0edb9c
cvsdist f0edb9c
* Tue Jan 28 2003 Gary Benson <gbenson@redhat.com> 1.99_07-4
cvsdist f0edb9c
- disable the test suite until httpd stops being broken
cvsdist f0edb9c
cvsdist f0edb9c
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 1.99_07-3
cvsdist f0edb9c
- rebuilt
cvsdist f0edb9c
cvsdist f0edb9c
* Mon Jan 06 2003 Gary Benson <gbenson@redhat.com> 1.99_07-2
cvsdist f0edb9c
- fix <IfDefine MODPERL2> support (#75194)
cvsdist f0edb9c
- update depends filtering for rpm-4.2 (#80965)
cvsdist f0edb9c
cvsdist f0edb9c
* Mon Nov 18 2002 Gary Benson <gbenson@redhat.com> 1.99_07-1
cvsdist f0edb9c
- upgrade to 1.99_07
cvsdist f0edb9c
cvsdist f0edb9c
* Wed Nov  6 2002 Gary Benson <gbenson@redhat.com> 1.99_05-4
cvsdist f0edb9c
- rebuild in new environment
cvsdist f0edb9c
cvsdist f0edb9c
* Fri Sep 27 2002 Gary Benson <gbenson@redhat.com>
cvsdist f0edb9c
- add epoch to the perl dependency (#74570)
cvsdist f0edb9c
cvsdist fd2c04f
* Tue Sep  3 2002 Gary Benson <gbenson@redhat.com> 1.99_05-3
cvsdist fd2c04f
- tweak example in /etc/httpd/conf.d/perl.conf to be more intuitive
cvsdist fd2c04f
cvsdist 3e17566
* Mon Sep  2 2002 Joe Orton <jorton@redhat.com> 1.99_05-2
cvsdist 3e17566
- require httpd-mmn for module ABI compatibility
cvsdist 3e17566
cvsdist f0edb9c
* Mon Aug 22 2002 Gary Benson <gbenson@redhat.com> 1.99_05-1
cvsdist 1ef7536
- upgrade to 1.99_05
cvsdist 1ef7536
cvsdist f0edb9c
* Mon Aug 12 2002 Gary Benson <gbenson@redhat.com> 1.99_04-3
cvsdist 3f47116
- rebuild against httpd-2.0.40
cvsdist 3f47116
cvsdist 25d4d7e
* Wed Jul 24 2002 Gary Benson <gbenson@redhat.com> 1.99_04-2
cvsdist 25d4d7e
- rebuild against new perl
cvsdist 25d4d7e
cvsdist 25d4d7e
* Mon Jun 24 2002 Gary Benson <gbenson@redhat.com> 1.99_04-1
cvsdist 25d4d7e
- upgrade to 1.99_04
cvsdist 25d4d7e
- fix APR::PerlIO test breakages
cvsdist 25d4d7e
cvsdist 25d4d7e
* Fri Jun 14 2002 Gary Benson <gbenson@redhat.com> 1.99_03-1
cvsdist 25d4d7e
- upgrade to 1.99_03
cvsdist 25d4d7e
- reenable the test suite
cvsdist 25d4d7e
cvsdist 25d4d7e
* Fri Jun 14 2002 Gary Benson <gbenson@redhat.com>
cvsdist 25d4d7e
- move /etc/httpd2 back to /etc/httpd
cvsdist 25d4d7e
cvsdist 25d4d7e
* Thu Jun 14 2002 Gary Benson <gbenson@redhat.com>
cvsdist 25d4d7e
- the example configuration was using the old mod_perl 1.x syntax
cvsdist 25d4d7e
cvsdist 25d4d7e
* Wed Jun 12 2002 Gary Benson <gbenson@redhat.com> 1.99_02-3
cvsdist 25d4d7e
- filter-requires was broken
cvsdist 25d4d7e
cvsdist 25d4d7e
* Tue Jun 11 2002 Gary Benson <gbenson@redhat.com> 1.99_02-2
cvsdist 25d4d7e
- do install the Apache-Test stuff
cvsdist 25d4d7e
- whiteout some dependencies
cvsdist 25d4d7e
- disable the test suite again
cvsdist 25d4d7e
cvsdist 25d4d7e
* Mon Jun 10 2002 Gary Benson <gbenson@redhat.com> 1.99_02-1
cvsdist 25d4d7e
- upgrade to 1.99_02
cvsdist 25d4d7e
- reenable the test suite
cvsdist 25d4d7e
cvsdist 25d4d7e
* Fri Jun  7 2002 Gary Benson <gbenson@redhat.com> 1.99_01-1
cvsdist 25d4d7e
- install correctly with Perl 5.8.0
cvsdist 25d4d7e
- disable the test suite temporarily
cvsdist 25d4d7e
cvsdist 25d4d7e
* Thu May 23 2002 Gary Benson <gbenson@redhat.com>
cvsdist 25d4d7e
- don't install the Apache-Test stuff
cvsdist 25d4d7e
- add the config file.
cvsdist 25d4d7e
cvsdist 25d4d7e
* Wed May 22 2002 Gary Benson <gbenson@redhat.com>
cvsdist 25d4d7e
- automate versioned perl dependency
cvsdist 25d4d7e
- update to 1.99 and change paths for httpd-2.0
cvsdist 25d4d7e
cvsdist 25d4d7e
* Fri May 17 2002 Nalin Dahyabhai <nalin@redhat.com> 1.26-6
cvsdist 25d4d7e
- rebuild in new environment
cvsdist 25d4d7e
cvsdist 25d4d7e
* Wed Mar 27 2002 Chip Turner <cturner@redhat.com> 1.26-5
cvsdist 1fc5289
- move to vendor_perl
cvsdist 1fc5289
cvsdist 81ad53c
* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.26-4
cvsdist 81ad53c
- rebuild
cvsdist 81ad53c
cvsdist 81ad53c
* Fri Feb  8 2002 Nalin Dahyabhai <nalin@redhat.com> 1.26-3
cvsdist 81ad53c
- rebuild
cvsdist 81ad53c
cvsdist 50e2924
* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.26-2
cvsdist 50e2924
- turn off large file support, which makes mod_perl think that server request
cvsdist 50e2924
  structures are the wrong size (heads-up from Doug MacEachern and Chip Turner)
cvsdist 50e2924
cvsdist 50e2924
* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.26-1
cvsdist 50e2924
- update to 1.26
cvsdist 50e2924
cvsdist 50e2924
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.24_01-4
cvsdist 50e2924
- automated rebuild
cvsdist 50e2924
cvsdist 50e2924
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com> 1.24_01-3
cvsdist b7a27f7
- Bump release + rebuild.
cvsdist b7a27f7
cvsdist 50e2924
* Tue Feb 27 2001 Nalin Dahyabhai <nalin@redhat.com> 1.24_01-2
cvsdist 17f7bd7
- don't include .bs files
cvsdist 17f7bd7
cvsdist 50e2924
* Sat Jan 20 2001 Nalin Dahyabhai <nalin@redhat.com> 1.24_01-1
cvsdist 17f7bd7
- update to 1.24_01
cvsdist 17f7bd7
- add URL
cvsdist 17f7bd7
cvsdist db73838
* Fri Nov 17 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist db73838
- rebuild in new environment
cvsdist db73838
cvsdist db73838
* Fri Aug 30 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist db73838
- patch to fix bug in Apache::ExtUtils (#17147)
cvsdist db73838
cvsdist 8499950
* Mon Jul 17 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- remove backup files from docs (#14174)
cvsdist 8499950
cvsdist 8499950
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 8499950
- automatic rebuild
cvsdist 8499950
cvsdist 8499950
* Sat Jun 17 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- remove workarounds for broken Perl
cvsdist 8499950
cvsdist 8499950
* Mon Jun  5 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- get rid of multiple prefixes
cvsdist 8499950
cvsdist 8499950
* Wed May 31 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- update to 1.24
cvsdist 8499950
- remove pre- and post-install scripts and triggers
cvsdist 8499950
cvsdist 8499950
* Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- work around weird Perl version reporting problems with a suitably weird check
cvsdist 8499950
cvsdist 8499950
* Fri Apr 28 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- modify to be able to rebuild on both 5.003 and 5.6.0
cvsdist 8499950
- update to 1.23
cvsdist 8499950
cvsdist 8499950
* Thu Mar 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 8499950
- rebuild with perl 5.6.0
cvsdist 8499950
- add perlver macro to spec file to make handling of other perl versions easier
cvsdist 8499950
cvsdist 8499950
* Thu Mar 23 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- update to 1.22
cvsdist 8499950
cvsdist 8499950
* Fri Mar 03 2000 Cristian Gafton <gafton@redhat.com>
cvsdist 8499950
- fixed the postun script to check for upgrades. doh
cvsdist 8499950
- add triggerpostun to fix older versions of the package
cvsdist 8499950
cvsdist 8499950
* Mon Feb 28 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- make perl a prereq because it's used in %post
cvsdist 8499950
cvsdist 8499950
* Fri Feb 25 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 8499950
- rebuild against Apache 1.3.12 and EAPI (release 8)
cvsdist 8499950
cvsdist 8499950
* Mon Feb 21 2000 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- incorporate fixes from Markus Pilzecker <mp@rhein-neckar.netsurf.de>:
cvsdist 8499950
- Prefix: /usr
cvsdist 8499950
- find apxs binary and package directories automatically
cvsdist 8499950
cvsdist 8499950
* Thu Feb 17 2000 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- automatically enable/disable in httpd.conf in post/postun.
cvsdist 8499950
cvsdist 8499950
* Thu Feb 10 2000 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- fix up some strange permissions
cvsdist 8499950
cvsdist 8499950
* Sun Feb 06 2000 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- rebuild to pick up gzipped man pages, new descr.
cvsdist 8499950
cvsdist 8499950
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- changed paths for perl 5.00503 (RHL 6.1 version)
cvsdist 8499950
cvsdist 8499950
* Fri Jul 09 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- added -fPIC to correct functionality on SPARC
cvsdist 8499950
- upgrade to 1.21, removed build cruft from old buggy mod_perl days
cvsdist 8499950
- added extra documentation that was missing
cvsdist 8499950
cvsdist 8499950
* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- bump ver. # so SWS mod_perl gets auto-upgraded
cvsdist 8499950
cvsdist 8499950
* Wed Apr 07 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- bugfix 1.19 release from Doug
cvsdist 8499950
cvsdist 8499950
* Wed Mar 24 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- experimental patch from Doug MacEachern <dougm@pobox.com> to fix segfault
cvsdist 8499950
- rebuilt against apache 1.3.6
cvsdist 8499950
cvsdist 8499950
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist 8499950
- auto rebuild in the new build environment (release 3)
cvsdist 8499950
cvsdist 8499950
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- Injected new description and group.
cvsdist 8499950
cvsdist 8499950
* Sun Feb 07 1999 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- upgraded to mod_perl 1.18.
cvsdist 8499950
cvsdist 8499950
* Mon Dec 21 1998 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- Upgraded to mod_perl 1.16.
cvsdist 8499950
cvsdist 8499950
* Thu Sep 03 1998 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- disabled stacked_handlers.  They still seem busted!
cvsdist 8499950
- minor updates so no conflicts with either apache / secureweb
cvsdist 8499950
- fixed bug building on multiple architectures
cvsdist 8499950
cvsdist 8499950
* Wed Sep 02 1998 Preston Brown <pbrown@redhat.com>
cvsdist 8499950
- Updates for apache 1.3.x, and mod_perl 1.15
cvsdist 8499950
cvsdist 8499950
* Fri Feb 27 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 8499950
- added a patch to compile it as a shared object for the apache/ssl (and
cvsdist 8499950
  future revisions of apache)
cvsdist 8499950