source: projects/specs/trunk/p/php5/php5-vl.spec @ 5561

Revision 5561, 57.7 KB checked in by tomop, 12 years ago (diff)

php5-5.3.10-1

Line 
1%bcond_without apache2
2
3%global majorver 5
4%global _name php%{majorver}
5
6%global srcname php-%{version}
7
8%global php_confdir %{_sysconfdir}/%{_name}
9
10%{!?_without_pear:%global _with_pear 1}
11%global with_pear %{?_with_pear:1}%{!?_with_pear:0}
12%if %{with_pear}
13%global pear_rootdir %{_datadir}/%{_name}-pear
14%global pear_cachedir %{_localstatedir}/cache/%{_name}-pear
15%endif
16
17%global apache1_confdir %{_sysconfdir}/httpd/conf.d
18%global apache1_moduledir %{_libdir}/apache
19%global apache1_contentdir /home/httpd
20%global apache1_cgidir %{apache1_contentdir}/cgi-bin
21%global apache1_fcgidir %{apache1_contentdir}/fcgi-bin
22
23%global apache2_confdir %{_sysconfdir}/apache2/conf.d
24%global apache2_moduledir %{_libdir}/apache2/modules
25%global apache2_contentdir /var/www
26%global apache2_cgidir %{apache2_contentdir}/cgi-bin
27%global apache2_fcgidir %{apache2_contentdir}/fcgi-bin
28
29Name: php5
30Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
31Summary(ja): HTML 埋め込み型スクリプト言語 PHP
32Version: 5.3.10
33Release: 1%{_dist_release}
34
35Vendor: Project Vine
36Distribution: Vine Linux
37Packager: tomop
38
39License: The PHP License
40Group: Development/Languages
41URL: http://www.php.net/
42
43Source0: http://www.php.net/distributions/%{srcname}.tar.bz2
44
45Source20: README.vine
46Source21: php.ini-vine
47Source23: php5.conf-apache1
48Source24: php5.conf-apache2
49Source25: php-fpm.init
50Source26: php-fpm.conf
51Source27: default-pool.conf
52Source28: php-fpm.logrotate
53
54Patch33: php-5.2.4-phpincludedir.patch
55# Additional feature
56Patch51: php-5.3.0-session_strict_mode.patch
57
58# security fix
59#Patch1000: php-5.3.7-bug55439.patch
60
61#bugfix
62Patch2000: fix319823.patch
63
64BuildRoot: %{_tmppath}/%{name}-%{version}-root
65BuildRequires: autoconf
66BuildRequires: automake
67BuildRequires: bison
68BuildRequires: bzip2
69BuildRequires: bzip2-devel
70BuildRequires: curl-devel
71BuildRequires: db4-devel
72BuildRequires: coreutils
73BuildRequires: flex
74BuildRequires: freetype2-devel
75BuildRequires: gcc-c++
76BuildRequires: gd-devel
77BuildRequires: gdbm-devel
78BuildRequires: gmp-devel
79BuildRequires: libjpeg-devel
80BuildRequires: libpng-devel
81%if %{?_dist_release} == "vl5"
82BuildRequires: libstdc++34-devel
83%else
84BuildRequires: libstdc++-devel
85%endif
86BuildRequires: libtool-ltdl-devel
87BuildRequires: libxml2-devel
88BuildRequires: libxslt-devel >= 1.0.18
89BuildRequires: ncurses-devel
90BuildRequires: openssl-devel
91BuildRequires: pam-devel
92BuildRequires: pcre-devel
93BuildRequires: perl
94BuildRequires: pkgconfig
95BuildRequires: postfix
96BuildRequires: readline-devel
97BuildRequires: sqlite3-devel
98BuildRequires: zlib-devel
99BuildRequires: libicu-devel >= 3.6
100%if %{?_dist_release} != "vl4"
101BuildRequires: krb5-devel
102%endif
103Requires(post,preun): alternatives
104%{?_with_pear:Requires: %{name}-pear = %{version}-%{release}}
105Conflicts: php <= 4.4.2-0vl1.2
106Provides: php = %{version}-%{release}
107
108%description
109PHP is an HTML-embedded scripting language. PHP attempts to make it
110easy for developers to write dynamically generated webpages. PHP also
111offers built-in database integration for several commercial and
112non-commercial database management systems, so writing a
113database-enabled webpage with PHP is fairly simple. The most common
114use of PHP coding is probably as a replacement for CGI scripts. The
115mod_php module enables the Apache Web server to understand and process
116the embedded PHP language in Web pages.
117
118%description -l ja
119PHP は HTML 埋め込み型のスクリプト言語です.開発者にとって,動的に生成
120される Web ページを簡単に書けるように考えて作られています.さらに,商用,
121非商用を問わず,数々のデータベース管理システムについての統合データベース
122環境が組み込まれています.そのため,データベースを使った Web ページを簡
123単に書くことができます.PHP の用途のほとんどは、既存の CGI スクリプトの
124置き換えに使われているのではないでしょうか.また,mod_php を使うことで,
125Apache Web サーバが Web ページに埋めこまれた PHP 言語を理解して処理でき
126るようになります.
127
128#----------------------------------------------------------------------
129%package devel
130Summary: Files needed for building PHP extensions.
131Group: Development/Libraries
132Requires: %{name} = %{version}-%{release}
133Requires: autoconf
134Requires: automake
135Conflicts: php-devel
136
137%description devel
138The php-devel package contains the files needed for building PHP
139extensions. If you need to compile your own PHP extensions, you will
140need to install this package.
141
142#----------------------------------------------------------------------
143%if %{with_pear}
144%package pear
145Group: Development/Languages
146Summary: PHP Extension and Application Repository Components
147Requires(post): alternatives
148Requires: %{name} = %{version}-%{release}
149Conflicts: php-pear <= 4.4.2-0vl2
150Provides: php-pear = %{version}-%{release}
151
152%description pear
153PEAR is a framework and distribution system for reusable PHP
154components.  This package contains the basic PEAR components.
155%endif
156
157#----------------------------------------------------------------------
158%if %{?_dist_release} == "vl5"
159%package apache
160Summary: php5 module for Apache version 1
161Summary(ja): Apache バージョン 1 用の php5 モジュール
162Group: System Environment/Daemons
163BuildRequires: apache-devel
164Requires: %{name} = %{version}-%{release}
165Requires: apache
166Provides: php-apache = %{version}-%{release}
167
168%description apache
169This package contains the php5 module for Apache version 1.
170%endif
171
172#----------------------------------------------------------------------
173%if %{with apache2}
174%package apache2
175Group: System Environment/Daemons
176Summary: php5 module for Apache version 2
177Summary(ja): Apache バージョン 2 用の php5 モジュール
178BuildRequires: apache2-devel >= 2.0.50-0vl2
179Requires: %{name} = %{version}-%{release}
180Requires: apache2 >= 2.0.50-0vl2
181Requires(post): sed, file
182Provides: php-apache2 = %{version}-%{release}
183
184%description apache2
185 This package contains the php5 module for Apache version 2.
186
187 Apache2 must be configured to use prefork MPM because
188this module is not threadsafe.
189%endif
190
191#----------------------------------------------------------------------
192%package fpm
193Group: System Environment/Daemons
194Summary: PHP with FastCGI Process Manager (FPM)
195Summary(ja): FastCGI Process Manager (FPM) が組み込まれたPHP
196Requires: %{name} = %{version}-%{release}
197
198%description fpm
199 PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI
200implementation with some additional features useful for sites of
201any size, especially busier sites.
202
203#======================================================================
204# modules
205#----------------------------------------------------------------------
206%package dba
207Summary: A database abstraction layer module for PHP applications
208Group: Development/Languages
209Requires: %{name} = %{version}-%{release}
210Provides: php-dba = %{version}-%{release}
211
212%description dba
213The php-dba package contains a dynamic shared object that will add
214support for using the DBA database abstraction layer to PHP.
215
216#----------------------------------------------------------------------
217%package imap
218Summary: A module for PHP applications that use IMAP.
219Group: Development/Languages
220BuildRequires: uw-imap-devel >= 2000c-1.6.0
221BuildRequires: openssl-devel
222Requires: %{name} = %{version}-%{release}
223Provides: php-imap = %{version}-%{release}
224
225%description imap
226The php-imap package contains a dynamic shared object (DSO) for the
227Apache Web server. When compiled into Apache, the php-imap module will
228add IMAP (Internet Message Access Protocol) support to PHP. IMAP is a
229protocol for retrieving and uploading e-mail messages on mail
230servers. PHP is an HTML-embedded scripting language. If you need IMAP
231support for PHP applications, you will need to install this package
232and the php package.
233
234#----------------------------------------------------------------------
235%package ldap
236Summary: A module for PHP applications that use LDAP.
237Group: Development/Languages
238BuildRequires: cyrus-sasl-devel
239BuildRequires: openldap-devel
240BuildRequires: openssl-devel
241Requires: %{name} = %{version}-%{release}
242Provides: php-ldap = %{version}-%{release}
243
244%description ldap
245The php-ldap package is a dynamic shared object (DSO) for the Apache
246Web server that adds Lightweight Directory Access Protocol (LDAP)
247support to PHP. LDAP is a set of protocols for accessing directory
248services over the Internet. PHP is an HTML-embedded scripting
249language. If you need LDAP support for PHP applications, you will
250need to install this package in addition to the php package.
251
252#----------------------------------------------------------------------
253%package mcrypt
254Summary: A module for PHP applications that use mcrypt
255Group: Development/Languages
256BuildRequires: libmcrypt-devel >= 2.5.6
257Requires: %{name} = %{version}-%{release}
258Provides: php-mcrypt = %{version}-%{release}
259
260%description mcrypt
261The php-mcrypt package contains a dynamic shared object that will add
262support for encrypt/decrypt functions to PHP.
263
264#----------------------------------------------------------------------
265%package mysql
266Summary: A module for PHP applications that use MySQL databases.
267Group: Development/Languages
268BuildRequires: MySQL-devel >= 5.1.40
269# for MySQL-devel Requires bug..
270Requires: %{name} = %{version}-%{release}
271Requires: %{name}-pdo
272Provides: %{name}_database
273Provides: php-mysql = %{version}-%{release}
274
275%description mysql
276The php-mysql package contains a dynamic shared object that will add
277MySQL database support to PHP. MySQL is an object-relational database
278management system. PHP is an HTML-embeddable scripting language. If
279you need MySQL support for PHP applications, you will need to install
280this package and the php or mod_php package.
281
282#----------------------------------------------------------------------
283%package odbc
284Group: Development/Languages
285Summary: A module for PHP applications that use ODBC databases.
286BuildRequires: unixODBC-devel
287Requires: %{name} = %{version}-%{release}
288Requires: %{name}-pdo
289Provides: %{name}_database
290Provides: php-odbc = %{version}-%{release}
291
292%description odbc
293The php-odbc package contains a dynamic shared object that will add
294database support through ODBC to PHP. ODBC is an open specification
295which provides a consistent API for developers to use for accessing
296data sources (which are often, but not always, databases). PHP is an
297HTML-embeddable scripting language. If you need ODBC support for PHP
298applications, you will need to install this package and the php
299package.
300
301#----------------------------------------------------------------------
302%package pdo
303Summary: A database access abstraction module for PHP applications
304Group: Development/Languages
305Requires: %{name} = %{version}-%{release}
306Provides: php-pdo = %{version}-%{release}
307
308%description pdo
309The php-pdo package contains a dynamic shared object that will add
310a database access abstraction layer to PHP.  This module provides
311a common interface for accessing MySQL, PostgreSQL or other
312databases.
313
314#----------------------------------------------------------------------
315%package pgsql
316Summary: A PostgreSQL database module for PHP.
317Group: Development/Languages
318BuildRequires: openssl-devel
319BuildRequires: postgresql-devel
320Requires: %{name} = %{version}-%{release}
321Requires: %{name}-pdo
322Provides: %{name}_database
323Provides: php-pgsql = %{version}-%{release}
324
325%description pgsql
326The php-pgsql package includes a dynamic shared object (DSO) that can
327be compiled in to the Apache Web server to add PostgreSQL database
328support to PHP. PostgreSQL is an object-relational database management
329system that supports almost all SQL constructs. PHP is an
330HTML-embedded scripting language. If you need back-end support for
331PostgreSQL, you should install this package in addition to the main
332php package.
333
334#----------------------------------------------------------------------
335%package snmp
336Summary: A module for PHP applications that query SNMP-managed devices.
337Group: Development/Languages
338BuildRequires: bzip2-devel
339BuildRequires: glibc-devel
340BuildRequires: libelf-devel
341BuildRequires: net-snmp-devel >= 5.1.1
342BuildRequires: popt-devel
343BuildRequires: rpm-devel
344BuildRequires: zlib-devel
345Requires: %{name} = %{version}-%{release}
346Provides: php-snmp = %{version}-%{release}
347
348%description snmp
349The php-snmp package contains a dynamic shared object that will add
350support for querying SNMP devices to PHP.  PHP is an HTML-embeddable
351scripting language. If you need SNMP support for PHP applications, you
352will need to install this package and the php package.
353
354#----------------------------------------------------------------------
355%package sqlite
356Summary: A module for PHP applications that use SQLite databases.
357Group: Development/Languages
358Requires: %{name} = %{version}-%{release}
359Requires: %{name}-pdo
360Provides: %{name}_database
361Provides: php-sqlite = %{version}-%{release}
362
363%description sqlite
364The php-sqlite package includes a dynamic shared object (DSO) that can
365be compiled in to the Apache Web server to add SQLite database support
366to PHP. SQLite is a C library that implements an embeddable SQL database
367engine. Programs that link with the SQLite library can have SQL database
368access without running a separate RDBMS process.
369
370#----------------------------------------------------------------------
371%package xmlrpc
372Summary: A module for PHP applications which use the XML-RPC protocol
373Group: Development/Languages
374Requires: %{name} = %{version}-%{release}
375Provides: php-xmlrpc = %{version}-%{release}
376
377%description xmlrpc
378The php-xmlrpc package contains a dynamic shared object that will add
379support for the XML-RPC protocol to PHP.
380
381#----------------------------------------------------------------------
382%package intl
383Summary: A module for PHP applications to use the ICU APIs
384Group: Development/Languages
385Requires: %{name} = %{version}-%{release}
386Provides: php-intl = %{version}-%{release}
387
388%description intl
389 The php-intl package is a wrapper for ICU library, enabling PHP programmers
390to perform UCA-conformant collation and date/time/number/currency formatting
391in their scripts.
392
393#======================================================================
394%prep
395%setup -q -n %{srcname}
396
397%patch33 -p1 -b .phpincludedir
398%patch51 -p1 -b .strict_session
399
400%patch2000 -p0 -b .fix319823
401
402# Prevent %%doc confusion over LICENSE files
403cp Zend/LICENSE Zend/ZEND_LICENSE
404cp Zend/ChangeLog Zend/ZEND_ChangeLog
405cp TSRM/LICENSE TSRM_LICENSE
406
407mkdir -p %{_name}-apache2
408cp %{SOURCE20} %{_name}-apache2/README.vine
409
410# Source is built three times:
411# once for /usr/bin/php, once for the Apache1 module, once for the Apache2 module.
412mkdir build-cgi build-fpm build-apache build-apache2
413
414#======================================================================
415%build
416# Regenerate configure scripts (patches change config.m4's)
417# ./buildconf --force
418
419# Install extension modules in %{_libdir}/%{_name}
420export EXTENSION_DIR=%{_libdir}/%{_name}
421
422# Shell function to configure and build a PHP tree.
423build() {
424ln -sf ../configure
425CFLAGS="-fPIC" \
426%configure \
427  --cache-file=../config.cache \
428  --prefix=%{_prefix} \
429  --libdir=%{_libdir}/%{_name} \
430  --with-libdir=%{_lib} \
431  --sysconfdir=%{php_confdir} \
432  --with-layout=GNU \
433  --with-config-file-path=%{php_confdir} \
434  --with-config-file-scan-dir=%{php_confdir}/php.d \
435  --with-exec-dir=%{_libdir}/%{_name}/bin \
436  --program-suffix=%{majorver} \
437  --enable-safe-mode \
438  --disable-rpath \
439  --enable-bcmath \
440  --enable-calendar \
441  --enable-dba=shared --with-gdbm --with-db4 --with-inifile \
442  --enable-exif \
443  --enable-ftp \
444  --enable-inline-optimization \
445  --enable-intl=shared \
446  --enable-mbstring \
447  --enable-pdo=shared \
448  --enable-shmop \
449  --enable-soap \
450  --enable-sockets \
451  --enable-sysvmsg --enable-sysvsem --enable-sysvshm \
452  --enable-wddx \
453  --enable-zend-multibyte \
454  --with-bz2 \
455  --with-curl \
456  --with-gd=%{_prefix} --with-jpeg-dir=%{_prefix} --with-png-dir=%{_prefix} --with-freetype-dir=%{_prefix} \
457  --with-gettext \
458  --with-gmp \
459  --with-imap=shared --with-imap-ssl \
460%if %{?_dist_release} != "vl4"
461  --with-kerberos \
462%endif
463  --with-ldap=shared \
464  --with-mcrypt=shared,%{_prefix} \
465  --with-mysql=shared,mysqlnd --with-mysqli=shared,mysqlnd --with-pdo-mysql=shared,mysqlnd \
466  --with-openssl \
467  --with-pgsql=shared --with-pdo-pgsql=shared,%{_prefix} \
468  --with-pic \
469  --with-snmp=shared,%{_prefix} \
470  --with-sqlite=shared --enable-sqlite-utf8 --with-pdo-sqlite=shared,%{_prefix} \
471  --with-unixODBC=shared,%{_prefix} --with-pdo-odbc=shared,unixODBC,%{_prefix} \
472  --with-xmlrpc=shared \
473  --with-xsl \
474  --with-zlib \
475  %{?_with_pear:--with-pear=%{pear_rootdir}}%{!?_with_pear:--without-pear} \
476  $*
477if test $? != 0; then
478  tail -500 config.log
479  : configure failed
480  exit 1
481fi
482
483make %{?_smp_mflags}
484}
485
486#----------------------------------------------------------------------
487# Build /usr/bin/php{,-cgi}, and all the shared extensions
488pushd build-cgi
489build \
490  --with-readline
491popd
492
493#----------------------------------------------------------------------
494# Build /usr/sbin/php-fpm
495pushd build-fpm
496build \
497  --enable-fpm
498popd
499
500#----------------------------------------------------------------------
501# Build Apache1 module
502%if %{?_dist_release} == "vl5"
503pushd build-apache
504build \
505  --with-apxs=%{_sbindir}/apxs
506popd
507%endif
508#----------------------------------------------------------------------
509# Build Apache2 module
510%if %{with apache2}
511pushd build-apache2
512build \
513  --with-apxs2=%{_bindir}/apxs
514popd
515%endif
516#======================================================================
517%install
518[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
519
520#export PHP_PEAR_SYSCONF_DIR=%{php_confdir}
521#export PHP_PEAR_TEMP_DIR=%{pear_cachedir}
522#export PHP_PEAR_CACHE_DIR=%{buildroot}%{pear_cachedir}
523#export PHP_PEAR_DOWNLOAD_DIR=%{pear_cachedir}
524#export PHP_PEAR_PHP_BIN=%{_bindir}/%{_name}
525
526export PHP_PEAR_SYSCONF_DIR=%{php_confdir}
527export PHP_PEAR_TEMP_DIR=%{buildroot}%{pear_cachedir}
528export PHP_PEAR_CACHE_DIR=%{buildroot}%{pear_cachedir}
529export PHP_PEAR_DOWNLOAD_DIR=%{buildroot}%{pear_cachedir}
530export PHP_PEAR_PHP_BIN=%{buildroot}%{_bindir}/%{_name}
531unset http_proxy
532
533#----------------------------------------------------------------------
534pushd build-cgi
535# Install everything from the CGI SAPI build
536make install INSTALL_ROOT=$RPM_BUILD_ROOT
537#cp $RPM_BUILD_ROOT%{_bindir}/%{_name}{,-cgi}
538# Install the CLI SAPI as /usr/bin/%{_name}
539#make install-cli INSTALL_ROOT=$RPM_BUILD_ROOT
540popd
541
542# Install the default configuration file
543%{__install} -m 755 -d $RPM_BUILD_ROOT%{php_confdir}
544%{__install} -m 644 php.ini-production $RPM_BUILD_ROOT%{php_confdir}/php.ini
545
546# Append php.ini-vine
547cat %{SOURCE21} >> $RPM_BUILD_ROOT%{php_confdir}/php.ini
548# Use correct libdir
549sed -i -e 's|%{_prefix}/lib|%{_libdir}|' $RPM_BUILD_ROOT%{php_confdir}/php.ini
550
551# Remove suffix
552ln -sf php-config%{majorver} $RPM_BUILD_ROOT%{_bindir}/php-config
553ln -sf phpize%{majorver} $RPM_BUILD_ROOT%{_bindir}/phpize
554%{__install} -m 755 scripts/dev/phpextdist $RPM_BUILD_ROOT%{_bindir}
555cp $RPM_BUILD_ROOT%{_mandir}/man1/php-config{%{majorver},}.1
556cp $RPM_BUILD_ROOT%{_mandir}/man1/phpize{%{majorver},}.1
557
558# fix path in phar
559
560perl -pi -e 's|^#!/.+/build-cgi/sapi/cli/php$|#!/usr/bin/%{_name}|' %{buildroot}%{_bindir}/phar.phar
561
562
563%if %{with_pear}
564# http://pear.php.net/bugs/bug.php?id=6154
565perl -pi -e 's#s:([0-9]+):(.)(%{buildroot})+#"s:".($1-length($3)).":$2"#eg;' %{buildroot}%{php_confdir}/pear.conf
566
567for cmd in pear peardev pecl; do
568  cp $RPM_BUILD_ROOT%{_bindir}/${cmd}{,%{majorver}}
569done
570%{__install} -m 755 -d $RPM_BUILD_ROOT%{pear_cachedir}
571%endif
572
573# Install cgi/fcgi binaries
574mv $RPM_BUILD_ROOT%{_bindir}/php-cgi%{majorver} %{buildroot}%{_bindir}/%{_name}-cgi
575
576# Install fpm binaries
577%{__install} -d %{buildroot}%{_sbindir}
578%{__install} -d %{buildroot}%{_initdir}
579%{__install} -m 755 -d %{buildroot}%{php_confdir}/fpm.d
580%{__install} -d %{buildroot}%{_mandir}/man8
581%{__install} -d %{buildroot}%{_sysconfdir}/logrotate.d
582%{__install} -m 755 build-fpm/sapi/fpm/php-fpm %{buildroot}%{_sbindir}/%{_name}-fpm
583%{__install} -m 755 %{SOURCE25} %{buildroot}%{_initdir}/php-fpm
584%{__install} -m 644 build-fpm/sapi/fpm/php-fpm.8 %{buildroot}%{_mandir}/man8/
585%{__install} -m 644 %{SOURCE26} %{buildroot}%{php_confdir}/
586%{__install} -m 644 %{SOURCE27} %{buildroot}%{php_confdir}/fpm.d/
587%{__install} -m 644 %{SOURCE28} %{buildroot}%{_sysconfdir}/logrotate.d/php-fpm
588
589
590# Install the Apache1 module, config fragment
591%if %{?_dist_release} == "vl5"
592%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache1_moduledir}
593%{__install} -m 755 build-apache/libs/lib%{_name}.so $RPM_BUILD_ROOT%{apache1_moduledir}
594%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache1_cgidir}
595%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache1_fcgidir}
596ln -sf %{_bindir}/%{_name}-cgi $RPM_BUILD_ROOT%{apache1_cgidir}/%{_name}-cgi
597ln -sf %{_bindir}/%{_name}-cgi $RPM_BUILD_ROOT%{apache1_fcgidir}/%{_name}-fcgi
598%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache1_confdir}
599%{__install} -m 644 %{SOURCE23} $RPM_BUILD_ROOT%{apache1_confdir}/%{_name}.conf
600%endif
601
602# Install the Apache2 module, CGI SAPI, config fragment
603%if %{with apache2}
604%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache2_moduledir}
605%{__install} -m 755 build-apache2/libs/lib%{_name}.so $RPM_BUILD_ROOT%{apache2_moduledir}
606%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache2_cgidir}
607%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache2_fcgidir}
608ln -sf %{_bindir}/%{_name}-cgi $RPM_BUILD_ROOT%{apache2_cgidir}/%{_name}-cgi
609ln -sf %{_bindir}/%{_name}-cgi $RPM_BUILD_ROOT%{apache2_fcgidir}/%{_name}-fcgi
610%{__install} -m 755 -d $RPM_BUILD_ROOT%{apache2_confdir}
611%{__install} -m 644 %{SOURCE24} $RPM_BUILD_ROOT%{apache2_confdir}/%{_name}.conf
612%endif
613
614%{__install} -m 755 -d $RPM_BUILD_ROOT%{php_confdir}/php.d
615%{__install} -m 755 -d $RPM_BUILD_ROOT%{_localstatedir}/%{_name}
616# for session.save_path
617%{__install} -m 770 -d $RPM_BUILD_ROOT%{_localstatedir}/%{_name}/session
618# for extension modules
619%{__install} -m 755 -d $RPM_BUILD_ROOT%{_libdir}/%{_name}
620# for --with-exec-dir
621%{__install} -m 755 -d $RPM_BUILD_ROOT%{_libdir}/%{_name}/bin
622
623#----------------------------------------------------------------------
624# Generate files lists and stub .ini files for each subpackage
625for mod in dba imap ldap mcrypt snmp xmlrpc intl \
626    mysql mysqli odbc pgsql sqlite \
627    pdo pdo_odbc pdo_mysql pdo_pgsql pdo_sqlite; do
628    cat > $RPM_BUILD_ROOT%{php_confdir}/php.d/${mod}.ini <<EOF
629; Enable ${mod} extension module
630extension=${mod}.so
631EOF
632    cat > files.${mod} <<EOF
633%attr(0755,root,root) %{_libdir}/%{_name}/${mod}.so
634%config(noreplace) %attr(0644,root,root) %{php_confdir}/php.d/${mod}.ini
635EOF
636done
637
638# append mysqli module to mysql module.
639cat files.mysqli >> files.mysql
640
641# Split out the PDO modules
642cat files.pdo_mysql >> files.mysql
643cat files.pdo_odbc >> files.odbc
644cat files.pdo_pgsql >> files.pgsql
645
646# Package pdo_sqlite with pdo; isolating the sqlite dependency
647# isn't useful at this time since rpm itself requires sqlite.
648cat files.pdo_sqlite >> files.pdo
649
650#----------------------------------------------------------------------
651# Remove unpackaged files
652rm -f $RPM_BUILD_ROOT%{_libdir}/%{_name}/*.a
653
654# Remove irrelevant docs
655rm -f README.{Zeus,QNX,CVS-RULES}
656
657# fix symlink for phar.
658
659%{__rm} -f %{buildroot}%{_bindir}/phar
660%{__ln_s} ./phar.phar %{buildroot}%{_bindir}/phar
661
662# ad-hoc fix for incorrect paths to php5
663for X in pear5 peardev5 pecl5 ; do
664  sed -e 's|%{buildroot}||g' %{buildroot}%{_bindir}/$X \
665        > %{buildroot}%{_bindir}/$X.new
666  mv -f %{buildroot}%{_bindir}/$X.new %{buildroot}%{_bindir}/$X
667  chmod 0755 %{buildroot}%{_bindir}/$X
668done
669
670#----------------------------------------------------------------------
671%post
672/sbin/update-alternatives --install %{_bindir}/php \
673    php %{_bindir}/php%{majorver} %{majorver}0
674
675# fix broken symlink if it's there
676if [ ! -f %{_bindir}/php ] ; then
677    /sbin/update-alternatives --auto php
678fi
679
680%triggerpostun -- php5 < 5.1.4-0vl1
681/sbin/update-alternatives --auto php
682
683%preun
684if [ "$1" = 0 ]; then
685    /sbin/update-alternatives --remove php %{_bindir}/php%{majorver}
686    /sbin/update-alternatives --auto php
687fi
688
689%post fpm
690/sbin/update-alternatives --install %{_sbindir}/php-fpm \
691    php-fpm %{_sbindir}/php%{majorver}-fpm %{majorver}0
692
693# fix broken symlink if it's there
694if [ ! -f %{_sbindir}/php-fpm ] ; then
695    /sbin/update-alternatives --auto php-fpm
696fi
697/sbin/chkconfig --add php-fpm
698
699%preun fpm
700if [ "$1" = 0 ]; then
701    /sbin/chkconfig --del php-fpm
702    /sbin/update-alternatives --remove php-fpm %{_sbindir}/php%{majorver}-fpm
703    /sbin/update-alternatives --auto php-fpm
704fi
705
706%post pear
707/sbin/update-alternatives \
708  --install %{_bindir}/pear     pear    %{_bindir}/pear%{majorver} %{majorver}0 \
709  --slave   %{_bindir}/peardev  peardev %{_bindir}/peardev%{majorver} \
710  --slave   %{_bindir}/pecl     pecl    %{_bindir}/pecl%{majorver}
711
712# fix broken symlink if it's there
713if [ ! -f %{_bindir}/pear ] ; then
714    /sbin/update-alternatives --auto pear
715fi
716
717%triggerpostun pear -- php5-pear < 5.1.4-0vl1
718/sbin/update-alternatives --auto pear
719
720%preun pear
721if [ "$1" = "0" ]; then
722    /sbin/update-alternatives --remove pear %{_bindir}/pear%{majorver}
723    /sbin/update-alternatives --auto pear
724fi
725
726%if %{?_dist_release} == "vl5"
727%post apache
728chown root:apache %{_localstatedir}/%{_name}/session 2>/dev/null || true
729%endif
730
731%if %{with apache2}
732%post apache2
733chown root:apache %{_localstatedir}/%{_name}/session 2>/dev/null || true
734
735MPM=`file /etc/alternatives/apache2 | sed -e 's/^.*apache2\.\([a-z]*\).*$/\1/'`
736if [ "$MPM" != "prefork" ]; then
737  cat <<EOF
738
739 Apache2 is configured to use $MPM MPM. But php5-apache2 requires
740prefork MPM. Run the following command as root to switch MPM:
741
742    /sbin/update-alternatives --config apache2
743
744EOF
745fi
746%endif
747
748%clean
749[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
750rm -f files.*
751
752#======================================================================
753%files
754%defattr(-,root,root)
755%doc CODING_STANDARDS CREDITS EXTENSIONS INSTALL LICENSE NEWS README*
756%doc Zend/ZEND_* TSRM_LICENSE
757%doc php.ini-{development,production}
758%doc php.gif
759%{_mandir}/man1/%{_name}.1*
760%config(noreplace) %{php_confdir}/php.ini
761%{_bindir}/%{_name}
762%{_bindir}/%{_name}-cgi
763%{_bindir}/phar
764%{_bindir}/phar.phar
765%dir %{php_confdir}
766%dir %{php_confdir}/php.d
767%dir %{_libdir}/%{_name}
768%dir %{_libdir}/%{_name}/bin
769%dir %{_localstatedir}/%{_name}
770%attr(0770,root,apache) %dir %{_localstatedir}/%{_name}/session
771
772%files devel
773%defattr(-,root,root)
774%{_mandir}/man1/php-config.1*
775%{_mandir}/man1/phpize.1*
776%{_bindir}/php-config
777%{_bindir}/php-config5
778%{_bindir}/phpize
779%{_bindir}/phpize5
780%{_bindir}/phpextdist
781%{_includedir}/%{_name}
782%{_libdir}/%{_name}/build
783
784%if %{with_pear}
785%files pear
786%defattr(-,root,root)
787%config %{php_confdir}/pear.conf
788%{_bindir}/pear%{majorver}
789%{_bindir}/peardev%{majorver}
790%{_bindir}/pecl%{majorver}
791%{pear_rootdir}
792%dir %{pear_cachedir}
793%endif
794
795%if %{?_dist_release} == "vl5"
796%files apache
797%defattr(-,root,root)
798%config %{apache1_confdir}/%{_name}.conf
799%{apache1_moduledir}/lib%{_name}.so
800%{apache1_cgidir}/%{_name}-cgi
801%{apache1_fcgidir}/%{_name}-fcgi
802%endif
803
804%if %{with apache2}
805%files apache2
806%defattr(-,root,root)
807%doc %{_name}-apache2/README.vine
808%config %{apache2_confdir}/%{_name}.conf
809%{apache2_moduledir}/lib%{_name}.so
810%{apache2_cgidir}/%{_name}-cgi
811%{apache2_fcgidir}/%{_name}-fcgi
812%endif
813
814%files fpm
815%defattr(-,root,root)
816%{_sbindir}/%{_name}-fpm
817%{_initdir}/php-fpm
818%{_mandir}/man8/php-fpm.8*
819%dir %{php_confdir}/fpm.d
820%config(noreplace) %{php_confdir}/php-fpm.conf
821%config(noreplace) %{php_confdir}/fpm.d/*.conf
822%config(noreplace) %{_sysconfdir}/logrotate.d/php-fpm
823
824
825%files dba -f files.dba
826%files imap -f files.imap
827%files ldap -f files.ldap
828%files mcrypt -f files.mcrypt
829%files mysql -f files.mysql
830%files odbc -f files.odbc
831%files pdo -f files.pdo
832%files pgsql -f files.pgsql
833%files snmp -f files.snmp
834%files sqlite -f files.sqlite
835%files xmlrpc -f files.xmlrpc
836%files intl -f files.intl
837
838#======================================================================
839%changelog
840* Fri Feb 03 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.10-1
841- new upstream release.
842- reverted revision #319823 (bug#60723).
843
844* Thu Jan 12 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.9-1
845- new upstream release.
846
847* Sat Oct 29 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.8-1
848- new upstream release.
849- added a subpackage "php5-fpm".
850
851* Tue Aug 23 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.7-2
852- fixed bug#55439.
853
854* Thu Aug 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.7-1
855- new upstream release.
856
857* Mon Jun 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.3.6-4
858- rebuild with unixODBC-2.2.14-2
859
860* Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 5.3.6-3
861- rebuilt with postgresql-9.0.3
862
863* Sat Apr  9 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.3.6-2
864- new upstream release
865- dropt apache subpackage on VineSeed (apache1 will be orphaned on Vine 6)
866
867* Mon Mar 28 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.6-1
868- new upstream release.
869- added tags "Vendor:", "Distribution:" and "Packager:".
870
871* Mon Jan 10 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.5-1
872- new upstream release.
873
874* Fri Dec 10 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.4-1
875- new upstream release.
876- added a sub-package "php5-intl".
877
878* Sun Sep  5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.3.3-1
879- new upstream release
880
881* Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.1-1
882- new upstream release.
883
884* Tue Sep  1 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.3.0-2
885- fix incorrect path in {pear,peardev,pecl}5 ([vine-users:079537])
886
887* Thu Jul  2 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.0-1
888- new upstream release.
889- updated patch51.
890- removed /usr/bin/php5-fcgi.
891
892* Sat Jun 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.10-1
893- new upstream release.
894- updated patch51.
895
896* Tue Jun 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 5.2.9-6
897- update php.ini
898  - use UTF-8 for default charset and internal_encoding
899
900* Thu May 21 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.9-5
901- rebuilt with MySQL-shared-5.1.34.
902
903* Sat May 16 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.9-4
904- rebuilt with libc-client-2007e
905- added --with-kerberos option (VineSeed)
906
907* Fri Apr 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 5.2.9-3
908- rebuilt with openldap-2.4.11
909
910* Fri Mar 27 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.9-2
911- rebuilt with net-snmp-5.4.2.1-3 (VineSeed x86_64).
912
913* Thu Mar 19 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.9-1
914- new upstream release.
915- wrote specfile in UTF-8.
916
917* Tue May  6 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.6-2
918- move php5-{cgi,fcgi} to %%{_bindir}.
919
920* Tue May  6 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.6-1
921- new upstream release.
922- update %%Patch51.
923
924* Sat Apr 26 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.5-1
925- add FastCGI support.
926
927* Tue Jan 08 2008 Shu KONNO <owa@bg.wakwak.com> 5.2.5-0vl5
928- rebuilt with postgresql-8.2.6
929
930* Sun Jan 06 2008 Shu KONNO <owa@bg.wakwak.com> 5.2.5-0vl4
931- rebuilt with net-snmp-5.4.1
932
933* Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.2.5-0vl3
934- for VineSeed: rebuilt with MySQL-5.0.27-0vl7
935
936* Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.2.5-0vl2
937- rebuilt with MySQL-5.0.27-0vl6
938
939* Fri Nov 23 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.5-0vl1
940- new upstream release.
941
942* Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.4-0vl3
943- rebuilt with postgresql-devel 8.2.5
944
945* Sat Sep 15 2007 NAKAMURA Kenta <kenta@vinelinux.org> 5.2.4-0vl2
946- replaced BuildRequires: libstdc++3-devel with libstdc++34-devel
947
948* Sun Sep  9 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.4-0vl1
949- rebuilt for VineSeed
950
951* Tue Sep  4 2007 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.4-0vl0.40
952- new upstream release.
953- update Patch33.
954
955* Thu Jun  7 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.3-0vl2
956- rebuilt for VineSeed
957
958* Tue Jun 05 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.3-0vl1
959- new upstream release.
960- fix install script.
961
962* Sun May 27 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.2-0vl5
963- rebuilt with new toolchain (for VineSeed)
964
965* Wed May 16 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl4
966- remove "Provides: php-devel" from devel subpackage
967
968* Mon May 14 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl3
969- fix Source24(php5.conf-apache2)
970
971* Fri May 11 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl2
972- add Provides tag to subpackages.
973
974* Tue May 08 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl1
975- new upstream release.
976- add 'Provides: php = %%{version}-%%{release}' to main package.
977
978* Sun Mar 25 2007 NAKAMURA Kenta <kenta@vinelinux.org> 5.2.1-0vl3
979- added --with-libdir=%%{_lib} configure option
980
981* Mon Feb 26 2007 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.1-0vl2
982- built for VineSeed.
983
984* Fri Feb 16 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.1-0vl1
985- new upstream release.
986- remove unnecessary 'Obsoletes: php-domxml, php-manual'
987
988* Sat Dec 02 2006 Atsushi SHICHI <ats777@gmail.com> 5.2.0-0vl4
989- change session.save_path to /var/php5/session in php.ini-vine <BTS:412>
990- unset http_proxy in %%install
991
992* Tue Nov  7 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.0-0vl3
993- new upstream release.
994
995* Sun Oct 29 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.1.6-0vl6
996- build with MySQL-5.0.27.
997
998* Fri Oct 27 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.1.6-0vl5
999- build with MySQL-5.0.26.
1000- add mysqli module.
1001- modify %%BuildRequires 'imap-devel' to 'uw-imap-devel'.
1002
1003* Sun Oct 22 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.6-0vl4
1004- fixed %triggerpostun section
1005- added update-alternatives for checking symlink to %post section
1006
1007* Sat Oct 21 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.6-0vl3
1008- rebuilt for Vine Linux 4.0 <BTS:289>
1009- added Patch1000 for building with uw-imap-2006b
1010
1011* Mon Sep 11 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.6-0vl2
1012- rebuild for VinePlus/4.0
1013- change 'BuildRequires: fileutils' to coreutils
1014- add 'BuildRequires: libtool-ltdl-devel' to main package
1015
1016* Fri Aug 25 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.6-0vl1
1017- new upstream release
1018
1019* Wed Aug 23 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.5-0vl1
1020- new upstream release
1021- fix bug [vine-users:074749]
1022-- move php.gif from apache{,2} subpackage to main package
1023- fix bug [VineLinux:0070], [VineLinux:0106]
1024-- add 'Conflicts: php-devel' to devel subpackage
1025-- remove suffix from {php-config,phpize,phpextdist}
1026-- add alternatives support for {peardev5,pecl5}
1027
1028* Mon Jun 19 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.4
1029- add 'Requires: %%{name}-pdo' to sqlite subpackage [vine-php:137]
1030
1031* Sun Jun 18 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.3
1032- enable sqlite extension and add sqlite subpackage [vine-users:074695]
1033
1034* Tue May 30 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.2
1035- update Source0
1036- change Requires: to PreReq: in apache{,2} subpackages [vine-php:113]
1037- fix %%post apache{,2} script
1038
1039* Tue May 16 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.1
1040- fix /etc/httpd/conf.d/php5.conf [VinePlus:02967]
1041
1042* Sat May 13 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1
1043- new upstream release
1044- revive apache{,2} subpackage
1045- add 'Source24: php.conf-apache2'
1046- remove php-dbg, mod_php, phpfi, stronghold-php from Obsoletes
1047- fix Requires of main package and dba subpackage
1048- remove 'Conflicts: php-apache' from apache subpackage
1049- remove 'Conflicts: php-apache2' from apache2 subpackage
1050- add %%post apache{,2} script to chown session directory to root:apache
1051- modify %%files section
1052
1053* Sun Apr 30 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.3
1054- update to 5.1.3RC3
1055- fix %%post script and add %%triggerpostun script
1056
1057* Sat Apr 08 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2.3
1058- drop 'Source10: pear.sh'
1059- fix 'Source20: README.vine', 'Source21: php.ini-vine', 'Source23: php.conf'
1060- add alternatives support
1061-- add 'PreReq: alternatives' to main package and pear subpackage
1062-- add 'Conflicts: php < 4.4.2-0vl1.1' to main package
1063-- add 'Conflicts: php-pear < 4.4.2-0vl1.1' to pear subpackage
1064-- add %%post, %%preun scripts
1065
1066* Wed Apr 05 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2.2
1067- fix 'Source10: pear.sh'
1068- add --sysconfdir=%%{php_confdir} to configure
1069
1070* Tue Apr 04 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2.1
1071- add 'Source10: pear.sh' to replace /usr/bin/{pear,peardev,pecl}
1072- add 'Patch33: php-5.1.3RC2-phpincludedir.patch'
1073- remove 'Conflicts: php, php-*'
1074- add 'export PHP_PEAR_SYSCONF_DIR, PHP_PEAR_CACHE_DIR, PHP_PEAR_PHP_BIN'
1075  to %%Install section
1076  -- move pear.conf to %%{_sysconfdir}/%%{_name}
1077  -- add '%%dir %%{pear_cachedir}' to '%%files pear'
1078  -- fix php_bin in pear.conf
1079- rename phpextdist to phpextdist5
1080
1081* Fri Mar 31 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2
1082- update to 5.1.3RC2
1083
1084* Mon Mar 20 2006 Atsushi SHICHI <ats7@a.email.ne.jp> 5.1.3-0vl0.1
1085- new upstream release
1086- add Source23: php5.conf
1087- drop Patch21: php-4.3.1-odbc.patch
1088- drop Patch30: php-4.3.6-dlopen.patch
1089- drop Patch32: php-4.3.11-mbfilter.patch
1090- apply strict session patch, thanks to Yasuo Ohgaki
1091  -- add Patch51: php-5.1.2-session_strict_mode.patch
1092  -- add session.use_strict_mode = 1 to php.ini-vine
1093- add BuildRequires: autoconf, automake, bison, flex, gcc-c++,
1094  readline-devel, sqlite3-devel
1095- drop BuildRequires: automake15, expat-devel, unixODBC-devel
1096- build with Apache2. Apache1.3 is still able to used by rebuilding
1097  with --with apache1
1098  -- add Requires: apache2
1099  -- merge apache{,2} subpackage into main package
1100  -- add Obsoletes: php5-apache, php5-apache2
1101- add Requires: autoconf, automake to devel subpackage
1102- add dba, pdo subpackage
1103- add Requires: php5-pdo to {mysql,odbc,pgsql} subpackage
1104- drop BuildRequires: expat-devel from xmlrpc subpackage
1105- add --program-suffix=5 to configure
1106- add missing files to %%files
1107
1108* Thu Jan 12 2006 Atsushi SHICHI <ats7@a.email.ne.jp> 5.1.2-0vl1
1109- new upstream release
1110- remove workaround for install-pear-nozlib.phar bug (PHP Bug #35780, PEAR Bug #6154)
1111  -- remove Source2: relocate.php
1112  -- remove Source10: pear.sh
1113  -- remove Source11: pecl.sh
1114  -- remove Source12: peardev.sh
1115- remove old XSLT extension stuff
1116  -- remove BuildRequires: libsablotron0-devel
1117  -- remove --enable-xslt, --with-xslt-sablot configure option
1118
1119* Thu Dec 07 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 5.1.1-0vl2
1120- add %%{with_test}
1121- drop Patch5: php-4.3.3-install.patch
1122- drop Patch6: php-5.1.0-tests.patch
1123- drop Patch7: php-5.1.0-libtool15.patch
1124- drop Patch8: php-5.0.0RC3-miscfix.patch
1125- drop Patch10: php-5.1.0-sqlite_m4.patch
1126- change BuildPrereq tag to BuildRequires tag
1127- add BuildRequires: rpm-devel, popt, bzip2-devel, zlib-devel, glibc-devel
1128  to snmp subpackage
1129- comment out CFLAGS, LIBS, IMAP_SHARED_LIBADD environment variable settings
1130- remove support for FreeType 1.x
1131  -- remove BuildRequires: freetype, freetype-devel from main package
1132  -- remove --enable-gd-native-ttf, --with-ttf configure option
1133- drop --enable-ucd-snmp-hack configure option
1134- add workaround for install-pear-nozlib.phar bug
1135  -- add Source2: relocate.php
1136  -- add Source10: pear.sh
1137  -- add Source11: pecl.sh
1138  -- add Source12: peardev.sh
1139  -- remove include_path entry from vine.ini
1140- include phpextdist in devel subpackage again
1141- move pear.conf from main package to pear subpackage
1142- include pecl, peardev in pear subpackage
1143- move php.gif from main package to apache/apache2 subpackage
1144  -- fix %%{contentdir}
1145- fix typo in %%changelog
1146
1147* Tue Dec 06 2005 HOTTA Michihide <hotta@net-newbie.com> 5.1.1-0vl1
1148- new upstream release
1149- drop Patch #4 (php-4.2.2-cxx.patch)
1150- change Patch #6 (php-4.3.1-tests.patch) to php-5.1.0-tests.patch
1151- change Patch #7 (php-4.3.2-libtool15.patch) to php-5.1.0-libtool15.patch
1152- change Patch #10 (php-5.0.5-sqlite_m4.patch) to php-5.1.0-sqlite_m4.patch
1153- drop Patch #101 (php-5.0.5-mbfilter.patch)
1154- append include_path entry to vine.ini
1155
1156* Sat Oct 15 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.5-0vl5
1157- rebuild for VineSeedPlus
1158
1159* Thu Oct 06 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 5.0.5-0vl4
1160- modify Source21: vine.ini
1161
1162* Tue Oct 06 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.5-0vl3
1163- drop Patch3: php-5.0.5-lib64.patch
1164- drop Patch11: php-5.0.5-phpize_in.patch [VinePlus:02737]
1165- add --libdir=%%{_libdir}/php option to configure [VinePlus:02737]
1166
1167* Tue Oct 04 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.5-0vl2
1168- add mbfilter.c.patch
1169
1170* Sun Sep 18 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 5.0.5-0vl1
1171- upstream release
1172- add Source21: vine.ini (additional settings to php.ini-recommened)
1173- add Source22: ltmain.sh.vine
1174- drop Patch2: php-5.0.3-config.patch
1175- fix Patch3: php-5.0.5-lib64.patch
1176- drop Patch9: php-5.0.0RC3-oniguruma.patch
1177- fix Patch10: php-5.0.5-sqlite_m4.patch
1178- add Patch11: php-5.0.5-phpize_in.patch
1179- drop Patch246: php-4.3.6-fixattr.patch
1180- add %%define __libtoolize true
1181- drop %%{_bindir}phpextdist
1182
1183* Fri Jun 17 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 5.0.3-0vl3.2
1184- added a security patch for CAN-2005-0524 and CAN-2005-0525 from SuSE.
1185
1186* Thu May 16 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.3-0vl3.1
1187- for VinePlus/3.0
1188- add README.vine again
1189- add php-4.3.11-mbfilter.patch for workaround against degrade at 5.0.3
1190- remove veserion specification on BuildPrereq: curl-devel
1191
1192* Fri Feb 25 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.3-0vl3
1193- drop BuildPrereq: apache2-apr-devel
1194- drop php-4.2.1-ldap-TSRM.patch
1195
1196* Sat Dec 25 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.3-0vl1
1197- upstream release
1198- drop php-4.3.2-db4.patch
1199- add BuildPrereq: apache2-apr-devel
1200
1201* Mon Oct 18 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.2-0vl1
1202- upstream release
1203- regenerate php5-imap
1204
1205* Fri Aug 13 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.1-0vl1
1206- upstream release
1207
1208* Tue Aug 03 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.0-0vl1
1209- upstream release : many thanks to YOSHIMURA Keitaro <ramsy AT ramix DOT jp>
1210- remove php4_{namazu,kakasi,chasen} (not supported)
1211- drop some patches for 4.3.x
1212- Build fix for oniguruma(re_registers dups)
1213- remove domxml (updated to libxml2)
1214- add Conflicts: php, php-*
1215- add php-5.0.0-authuser.patch (BUG#29129)
1216
1217* Thu Jul 15 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.8-0vl1
1218- upstream release
1219- add BuildPrereq: freetype
1220
1221* Sun Jul 11 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 4.3.7-0vl5
1222- remove explicit buildprereq to build-essential
1223- build apache2 module
1224  split apache1/2 module to php-apache/php-apache2
1225  thanks to jax <jax AT morejams DOT no-ip DOT com>
1226- add Obsoletes: php < %%{version}-%%{release} in php-apache sub-package
1227  for upgrade.
1228
1229* Wed Jul 07 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.7-0vl4
1230- add Obsoletes: php-imap, php-manual
1231
1232* Sat Jun 26 2004 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.3.7-0vl3
1233- enable mcrypt module.
1234
1235* Mon Jun 07 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.7-0vl2
1236- fix bug #28385 <http://bugs.php.net/bug.php?id=28385>
1237
1238* Fri Jun 04 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.7-0vl1
1239- upstream release
1240
1241* Wed May 12 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.6-0vl2
1242- rebuild with namazu-2.0.13
1243
1244* Fri Apr 30 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.6-0vl1
1245- upstream release
1246
1247* Mon Mar 15 2004 Tomoya TAKA <taka@vinelinux.org> 4.3.4-0vl2
1248- fix location of session save path, %%{_localstatedir} is defined as
1249  /var/lib in Vine's rpm
1250
1251* Sat Feb 21 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.4-0vl1
1252- upstream release
1253- sync to fedora(php-4.3.4-7)
1254- drop BuildRequires : aspell
1255- add workaround for inconsistent dependency of php-devel
1256- drop --enable-versioning to prevent ext modules loading error
1257
1258* Thu Feb 05 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.2-0vl4
1259- rebuild with new toolchains (and resolved dependancy about libxslt)
1260- added patch7 to build with libtool-1.5
1261- added patch100 to build newest freetype2 library
1262- force to use automake-1.5
1263- added BuildPrereq: curl-devel, automake15
1264- fixed BuildRequires of php-snmp: net-snmp-devel
1265
1266* Tue Jul 08 2003 HOTTA Michihide <hotta@net-newbie.com> 4.3.2-0vl3
1267- add README.vine
1268
1269* Tue Jul 08 2003 HOTTA Michihide <hotta@net-newbie.com> 4.3.2-0vl2
1270- install sapi/cgi/php as php-cgi, sapi/cli/php as php
1271
1272* Tue Jul 08 2003 HOTTA Michihide <hotta@net-newbie.com> 4.3.2-0vl1
1273- upstream release (sync to rawhide)
1274- add printf patch, PEAR_Registry patch etc.
1275- drop package php-manual
1276
1277* Fri Jan 24 2003 HOTTA Michihide <hotta@net-newbie.com> 4.2.3-0vl3
1278- add zend_highlight.c-patch
1279- add -DHAVE_PQESCAPE to build_ext pgsql
1280
1281* Wed Jan 22 2003 MACHINO Satoshi <machino@vinelinux.org> 4.2.3-0vl2
1282- rebuild against gmp-4.1 and sablotron-0.97
1283
1284* Mon Sep 9 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.3-0vl1
1285- for VineSeedPlus
1286  -- Updated to 4.2.3
1287  -- added php-4.2.3-mbstr-20020908-2.patch
1288
1289* Sun Aug 18 2002 Rui HIROKAWA <hirokawa@php.gr.jp> 4.2.2-0vl3
1290- applied php-4.2.2-mb_output_handler.patch to enable output encoding
1291for text/hdml.     
1292- applied php-4.2.2-mb-decode.patch to fix decode problem of GET parameters.
1293- Patch to fix a problem where, given multiple cookies to set, only the last one would be made (#67853)
1294
1295* Tue Jul 24 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.2-0vl2
1296- for VineSeedPlus
1297  -- applied php-4.2.2-multibyte.patch.gz which obsolets 4.2.1's
1298  -- dropped --enable-trans-sid configure option which is no longer meaningful
1299
1300* Tue Jul 23 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.2-0vl1
1301- for VineSeedPlus
1302  -- Updated to 4.2.2
1303  -- dropped domxml.patch (merged into original)
1304
1305* Fri Jul 05 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.1-0vl8
1306- for VineSeedPlus
1307  -- added i18n patch by Fujimoto
1308  -- dropped php4_mbregex extention (merged into original)
1309
1310* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl7
1311- added gmp support
1312- for VineSeedPlus
1313
1314* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl6
1315- for VineSeedPlus
1316        -- added xslt support
1317       
1318* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl5
1319- added expat-devel in BuildPreReq
1320
1321* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl4
1322- added mail functions
1323- added postfix in BuildPreReq
1324- updated manual_en(03-Jun-2002)
1325- updated manual_ja(29-May-2002)
1326- for VinePlus
1327        -- dropped xslt support
1328
1329* Thu May 16 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl3
1330- for VineSeed Plus
1331- added xslt support
1332        -- added enable-xslt, with-xslt-sablot, with-dom-xslt
1333        -- added BuildPrereq: libxslt-devel, libsablotron0-devel
1334
1335* Thu May 16 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl2
1336- for VinePlus 2.5
1337- added php.in-dist.patch
1338
1339* Wed May 15 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl1
1340- updated php-4.2.1
1341- updated php_manual_en
1342- dropped reg.patch
1343- modified configured option
1344  -- added --with-dom, --with-bz2, --with-png-dir, --with-expat-dir
1345
1346* Thu May 09 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.0-99vl1
1347- updated php-4.2.1RC1
1348- fixed ereg_replace patch (4.2.1-reg.patch)
1349
1350* Thu May 09 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.0-0vl2
1351- added ereg_replace patch (4.2.0-reg.patch)
1352- updated manual(en, ja)
1353
1354* Thu Apr 30 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.0-0vl1
1355- updated php-4.2.0
1356
1357* Fri Mar 01 2002 Satoshi MACHINO <machino@vinelinux.org> 4.1.2-0vl1
1358- updated php-4.1.2
1359- updated php4_mbregex-1.3.1
1360- updated php4_namazu-2.1.0
1361- updated php4_kakasi-0.3.0
1362- REMOVED php4_iconv
1363- fixed patch
1364        -- added domxml.patch
1365        -- dropped old patches
1366
1367* Mon Dec  3 2001 Jun Nishii <jun@vinelinux.org>
1368- 4.0.6-5vl3
1369- added --enable-mbstr-enc-trans
1370
1371* Wed Aug 22 2001 Hisao SHIBUYA <shibuya@alpha.or.jp>
1372- 4.0.6-5vl2
1373- fix contentdir
1374
1375* Tue Aug 21 2001 Hisao SHIBUYA <shibuya@alpha.or.jp>
1376- 4.0.6-5vl1
1377- add configure options for Vine
1378- add ldap, mysql and odbc modules.
1379
1380* Fri Aug 10 2001 Tim Powers <timp@redhat.com>
1381- only english in php-manuals, space constraints :P
1382
1383* Thu Aug  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1384- include %{_libdir}/%{name}/build instead of %{_libdir}/%{name}4/build (#51141)
1385
1386* Mon Aug  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1387- add build deps on pam-devel, pspell-devel, gdbm-devel (#49878)
1388- add some conditional logic if %%{oracle} is defined (from Antony Nguyen)
1389
1390* Mon Jul  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1391- don't obsolete subpackages we ended up not merging
1392
1393* Mon Jul  2 2001 Nalin Dahyabhai <nalin@redhat.com>
1394- cleanups
1395- add manuals in multiple languages (using ko instead of kr for Korean)
1396- merge all of the manuals into a single -manual subpackage
1397- use libtool to install binary files which libtool builds
1398- don't strip any binaries; let the buildroot policies take care of it
1399
1400* Thu Jun 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1401- update to 4.0.6 (preliminary)
1402
1403* Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
1404- enable ttf in the build because the gd support needs it
1405- add -lfreetype to the LIBS for the same reason
1406
1407* Wed Jun  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1408- rebuild in new environment
1409
1410* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1411- actually use two source trees to build things
1412- add %%post and %%postun scriptlets to run ldconfig
1413
1414* Tue May 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1415- quote part of the AC_ADD_LIBRARY macro to make newer autoconf happy
1416
1417* Mon May 14 2001 Nalin Dahyabhai <nalin@redhat.com>
1418- fix error in %%install
1419- depend on the imap-devel which supplies linkage.c
1420- modify trigger to disable php versions less than 4.0.0 instead of 3.0.15
1421- enable DOM support via libxml2 (suggested by Sylvain Berg
1422- build the OpenSSL extension again
1423
1424* Mon May  7 2001 Nalin Dahyabhai <nalin@redhat.com>
1425- enable pspell extensions
1426- update to 4.0.5
1427
1428* Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1429- build the ODBC extension
1430
1431* Mon Apr 30 2001 Bill Nottingham <notting@redhat.com>
1432- build on ia64
1433
1434* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
1435- rebuild in new environment
1436
1437* Fri Feb 23 2001 Nalin Dahyabhai <nalin@redhat.com>
1438- obsolete the old phpfi (PHP 2.x) package
1439
1440* Thu Feb  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1441- add a commented-out curl extension to the config file (part of #24933)
1442- fix the PEAR-installation-directory-not-being-eval'ed problem (#24938)
1443- find the right starting point for multipart form data (#24933)
1444
1445* Tue Jan 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1446- aaarrgh, the fix breaks something else, aaarrgh; revert it (#24933)
1447- terminate variable names at the right place (#24933)
1448
1449* Sat Jan 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1450- tweak the fix some more
1451
1452* Thu Jan 18 2001 Nalin Dahyabhai <nalin@redhat.com>
1453- extract stas's fix for quoting problems from CVS for testing
1454- tweak the fix, ask the PHP folks about the tweak
1455- tweak the fix some more
1456
1457* Wed Jan 17 2001 Nalin Dahyabhai <nalin@redhat.com>
1458- merge mod_php into the main php package (#22906)
1459
1460* Fri Dec 29 2000 Nalin Dahyabhai <nalin@redhat.com>
1461- try to fix a quoting problem
1462
1463* Wed Dec 20 2000 Nalin Dahyabhai <nalin@redhat.com>
1464- update to 4.0.4 to get a raft of bug fixes
1465- enable sockets
1466- enable wddx
1467
1468* Fri Nov  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1469- rebuild in updated environment
1470
1471* Thu Nov  2 2000 Nalin Dahyabhai <nalin@redhat.com>
1472- add more commented-out modules to the default config file (#19276)
1473
1474* Wed Nov  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1475- fix not-using-gd problem (#20137)
1476
1477* Tue Oct 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1478- update to 4.0.3pl1 to get some bug fixes
1479
1480* Sat Oct 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1481- build for errata
1482
1483* Wed Oct 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1484- update to 4.0.3 to get security fixes integrated
1485- patch around problems configuring without Oracle support
1486- add TSRM to include path when building individual modules
1487
1488* Fri Sep  8 2000 Nalin Dahyabhai <nalin@redhat.com>
1489- rebuild in new environment
1490- enable OpenSSL support
1491
1492* Wed Sep  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1493- update to 4.0.2, and move the peardir settings to configure (#17171)
1494- require %%{version}-%%{release} for subpackages
1495- add db2-devel and db3-devel prereqs (#17168)
1496
1497* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
1498- rebuild in new environment (new imap-devel)
1499
1500* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1501- fix summary and descriptions to match the specspo package
1502
1503* Wed Aug  9 2000 Nalin Dahyabhai <nalin@redhat.com>
1504- hard-code the path to apxs in build_ext() (#15799)
1505
1506* Tue Aug  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1507- add "." to the include path again, which is the default
1508
1509* Wed Jul 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1510- enable PEAR and add it to the include path
1511- add the beginnings of a -devel subpackage
1512
1513* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
1514- automatic rebuild
1515
1516* Fri Jul  7 2000 Nalin Dahyabhai <nalin@redhat.com>
1517- tweaks to post and postun from Bill Peck
1518
1519* Thu Jul  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1520- fixes from Nils for building the MySQL client
1521- change back to requiring %{version} instead of %{version}-%{release}
1522
1523* Sat Jul  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1524- update to 4.0.1pl2
1525- enable MySQL client
1526- move the php.ini file to %{_sysconfdir}
1527
1528* Fri Jun 30 2000 Nils Philippsen <nils@redhat.de>
1529- build_ext defines HAVE_PGSQL so pgsql.so in fact contains symbols
1530- post/un scripts tweak php.ini correctly now
1531
1532* Thu Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1533- update to 4.0.1
1534- refresh manual
1535
1536* Tue Jun 26 2000 Nalin Dahyabhai <nalin@redhat.com>
1537- rebuild against new krb5 package
1538
1539* Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1540- rebuild against new db3 package
1541
1542* Sat Jun 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1543- Fix syntax error in post and preun scripts.
1544- Disable IMAP, LDAP, PgSql in the standalone version because it picks up
1545  the extensions.
1546
1547* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1548- Unexclude the Sparc arch.
1549- Exclude the ia64 arch until we get a working Postgres build.
1550- Stop stripping extensions as aggressively.
1551- Start linking the IMAP module to libpam again.
1552- Work around extension loading problems.
1553- Reintroduce file-editing post and preun scripts for the mod_php extensions
1554  until we come up with a better way to do it.
1555
1556* Mon Jun  5 2000 Nalin Dahyabhai <nalin@redhat.com>
1557- ExcludeArch: sparc for now
1558
1559* Sun Jun  4 2000 Nalin Dahyabhai <nalin@redhat.com>
1560- add Obsoletes: phpfi, because their content handler names are the same
1561- add standalone binary, rename module packages to mod_php
1562- FHS fixes
1563
1564* Tue May 23 2000 Nalin Dahyabhai <nalin@redhat.com>
1565- change license from "GPL" to "PHP"
1566- add URL: tag
1567- disable mysql support by default (license not specified)
1568
1569* Mon May 22 2000 Nalin Dahyabhai <nalin@redhat.com>
1570- update to PHP 4.0.0
1571- nuke the -mysql subpackage (php comes with a bundled mysql client lib now)
1572
1573* Tue May 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1574- link IMAP module against GSS-API and PAM to get dependencies right
1575- change most of the Requires to Prereqs, because the post edits config files
1576- move the PHP *Apache* module back to the right directory
1577- fix broken postun trigger that broke the post
1578- change most of the postuns to preuns in case php gets removed before subpkgs
1579
1580* Thu May 11 2000 Trond Eivind Glomsr <teg@redhat.com>
1581- rebuilt against new postgres libraries
1582
1583* Tue May 09 2000 Preston Brown <pbrown@redhat.com>
1584- php3 .so modules moved to /usr/lib/php3 from /usr/lib/apache (was incorrect)
1585
1586* Mon Apr 10 2000 Nalin Dahyabhai <nalin@redhat.com>
1587- make subpackages require php = %{version} (bug #10671)
1588
1589* Thu Apr 06 2000 Nalin Dahyabhai <nalin@redhat.com>
1590- update to 3.0.16
1591
1592* Fri Mar 03 2000 Cristian Gafton <gafton@redhat.com>
1593- fixed the post script to work when upgrading a package
1594- add triggere to fix the older packages
1595
1596* Tue Feb 29 2000 Nalin Dahyabhai <nalin@redhat.com>
1597- update to 3.0.15
1598- add build-time dependency for openldap-devel
1599- enable db,ftp,shm,sem support to fix bug #9648
1600
1601* Fri Feb 25 2000 Nalin Dahyabhai <nalin@redhat.com>
1602- add dependency for imap subpackage
1603- rebuild against Apache 1.3.12
1604
1605* Thu Feb 24 2000 Preston Brown <pbrown@redhat.com>
1606- don't include old, outdated manual.  package one from the php distribution.
1607
1608* Tue Feb 01 2000 Cristian Gafton <gafton@redhat.com>
1609- rebuild to fix dependency problem
1610
1611* Fri Jan 14 2000 Preston Brown <pbrown@redhat.com>
1612- added commented out mysql module, thanks to Jason Duerstock
1613  (jason@sdi.cluephone.com). Uncomment to build if you have mysql installed.
1614
1615* Thu Jan 13 2000 Preston Brown <pbrown@redhat.com>
1616- rely on imap-devel, don't include imap in src.rpm (#5099).
1617- xml enabled (#5393)
1618
1619* Tue Nov 02 1999 Preston Brown <pborwn@redhat.com>
1620- added post/postun sections to modify httpd.conf (#5259)
1621- removed old obsolete faq and gif (#5260)
1622- updated manual.tar.gz package (#5261)
1623
1624* Thu Oct 07 1999 Matt Wilson <msw@redhat.com>
1625- rebuilt for sparc glibc brokenness
1626
1627* Fri Sep 24 1999 Preston Brown <pbrown@redhat.com>
1628- --with-apxs --> --with-apxs=/usr/sbin/apxs (# 5094)
1629- ldap support (# 5097)
1630
1631* Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
1632- fix cmdtuples for postgresql, I had it slightly wrong
1633
1634* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
1635- subpackages must obsolete old stuff...
1636
1637* Sun Aug 29 1999 Preston Brown <pbrown@redhat.com>
1638- added -DHAVE_PGCMDTUPLES for postgresql module (bug # 4767)
1639
1640* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
1641- name change to php to follow real name of package
1642- fix up references to php3 to refer to php
1643- upgrade to 3.0.12
1644- fixed typo in pgsql postun script (bug # 4686)
1645
1646* Mon Jun 14 1999 Preston Brown <pbrown@redhat.com>
1647- upgraded to 3.0.9
1648- fixed postgresql module and made separate package
1649- separated manual into separate documentation package
1650
1651* Mon May 24 1999 Preston Brown <pbrown@redhat.com>
1652- upgraded to 3.0.8, which fixes problems with glibc 2.1.
1653- took some ideas grom Gomez's RPM.
1654
1655* Tue May 04 1999 Preston Brown <pbrown@redhat.com>
1656- hacked in imap support in an ugly way until imap gets an official
1657  shared library implementation
1658
1659* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
1660- pick up php3.ini
1661
1662* Wed Mar 24 1999 Preston Brown <pbrown@redhat.com>
1663- build against apache 1.3.6
1664
1665* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
1666- auto rebuild in the new build environment (release 2)
1667
1668* Mon Mar 08 1999 Preston Brown <pbrown@redhat.com>
1669- upgraded to 3.0.7.
1670
1671* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
1672- Injected new description and group.
1673
1674* Sun Feb 07 1999 Preston Brown <pbrown@redhat.com>
1675- upgrade to php 3.0.6, built against apache 1.3.4
1676
1677* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
1678- rebuild for apache 1.3.3
1679
1680* Thu Oct 08 1998 Preston Brown <pbrown@redhat.com>
1681- updated to 3.0.5, fixes nasty bugs in 3.0.4.
1682
1683* Sun Sep 27 1998 Cristian Gafton <gafton@redhat.com>
1684- updated to 3.0.4 and recompiled for apache 1.3.2
1685
1686* Thu Sep 03 1998 Preston Brown <pbrown@redhat.com>
1687- improvements; builds with apache-devel package installed.
1688
1689* Tue Sep 01 1998 Preston Brown <pbrown@redhat.com>
1690- Made initial cut for PHP3.
Note: See TracBrowser for help on using the repository browser.