[PHP-CVS] cvs: php4 /ext/wddx php_wddx.h

2001-01-11 Thread Jani Taskinen
sniper Thu Jan 11 08:19:20 2001 EDT Modified files: /php4/ext/wddx php_wddx.h Log: If external expat is used, header file is expat.h Index: php4/ext/wddx/php_wddx.h diff -u php4/ext/wddx/php_wddx.h:1.5 php4/ext/wddx/php_wddx.h:1.6 ---

[PHP-CVS] cvs: php4 /ext/domxml php_domxml.c

2001-01-12 Thread Jani Taskinen
sniper Fri Jan 12 08:49:07 2001 EDT Modified files: /php4/ext/domxmlphp_domxml.c Log: - Fixed a possible crash bug in xmltree(). # PR: #7052 Index: php4/ext/domxml/php_domxml.c diff -u php4/ext/domxml/php_domxml.c:1.24

Re: [PHP] PDFLIB 3.0 PHP 4.04

2001-01-15 Thread Jani Taskinen
On Mon, 15 Jan 2001, Cal Evans wrote: But when I ./configure php, I use: ./configure --with-pdflib=/usr/local/lib Leave the /lib part out..ie. use --with-pdflib=/usr/local instead. --Jani -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP-CVS] cvs: php4 /ext/gd gd.c

2001-01-16 Thread Jani Taskinen
sniper Tue Jan 16 14:34:19 2001 EDT Modified files: /php4/ext/gdgd.c Log: Fixed bug #8733 Index: php4/ext/gd/gd.c diff -u php4/ext/gd/gd.c:1.105 php4/ext/gd/gd.c:1.106 --- php4/ext/gd/gd.c:1.105 Wed Nov 29 07:25:42 2000 +++ php4/ext/gd/gd.c

Re: [PHP] Strange pdf function error?

2001-01-17 Thread Jani Taskinen
On Wed, 17 Jan 2001, Leonard T. Harris wrote: I get this error: br bFatal error/b: Internal pdflib error: Wrong order of function calls (PDF_open_mem) in b/home/httpd/html/test/test.pdftest2.php/b on line b5/bbr There was a bug in PDFLIB 3.03. You can find the patch for this from

[PHP-CVS] cvs: php4 /ext/sablot config.m4

2001-01-18 Thread Jani Taskinen
sniper Thu Jan 18 07:09:35 2001 EDT Modified files: /php4/ext/sablotconfig.m4 Log: Fixed a typo. Index: php4/ext/sablot/config.m4 diff -u php4/ext/sablot/config.m4:1.12 php4/ext/sablot/config.m4:1.13 --- php4/ext/sablot/config.m4:1.12 Thu Jan 11

Re: [PHP-CVS] cvs: php4 / EXTENSIONS

2001-01-19 Thread Jani Taskinen
On Fri, 19 Jan 2001, Sam Liddicott wrote: --- +EXTENSION: muscat +PRIMARY MAINTAINER: Sam Liddicott [EMAIL PROTECTED] +MAINTENANCE: Maintained +STATUS: Working +SINCE: 4.0.5

[PHP-CVS] cvs: php4 /ext/standard image.c

2001-01-19 Thread Jani Taskinen
sniper Fri Jan 19 08:52:41 2001 EDT Modified files: /php4/ext/standard image.c Log: @- Added URL support for getimagesize() function (Jani) # tested with all imagetypes. Also the iptc works. Index: php4/ext/standard/image.c diff -u

[PHP-CVS] cvs: php4 /ext/bz2 config.m4

2001-01-19 Thread Jani Taskinen
sniper Fri Jan 19 21:09:01 2001 EDT Modified files: /php4/ext/bz2 config.m4 Log: Check that libbz2.(a|so) is = 0.95 (has BZ2_bzerror) Index: php4/ext/bz2/config.m4 diff -u php4/ext/bz2/config.m4:1.1 php4/ext/bz2/config.m4:1.2 ---

[PHP-CVS] cvs: php4 /ext/bz2 config.m4

2001-01-20 Thread Jani Taskinen
sniper Sat Jan 20 20:00:32 2001 EDT Modified files: /php4/ext/bz2 config.m4 Log: Remove double 'yes' output. Index: php4/ext/bz2/config.m4 diff -u php4/ext/bz2/config.m4:1.2 php4/ext/bz2/config.m4:1.3 --- php4/ext/bz2/config.m4:1.2 Fri Jan 19

Re: [PHP] php.ini

2001-01-23 Thread Jani Taskinen
On Wed, 24 Jan 2001, Rasmus Resen Amossen wrote: Everybody talks about this nice configuration file, but where is it?! I have compiled php4 with apache, but even a find . -name "php.ini gives anything. Do I really need to recompile php to change its configuration? No. Please read the INSTALL

[PHP-CVS] cvs: php4 /ext/zziplib .cvsignore

2001-01-29 Thread Jani Taskinen
sniper Mon Jan 29 14:13:38 2001 EDT Modified files: /php4/ext/zziplib .cvsignore Log: a little cleanup.. Index: php4/ext/zziplib/.cvsignore diff -u php4/ext/zziplib/.cvsignore:1.1 php4/ext/zziplib/.cvsignore:1.2 --- php4/ext/zziplib/.cvsignore:1.1 Tue

Re: [PHP] [NEWBIE] PHP.INI

2001-01-29 Thread Jani Taskinen
On Mon, 29 Jan 2001, Steve Haemelinck wrote: I want to put the php.ini in /etc/php Which argument do I have to attach to ./configure --?=/etc/php to accomplish this ? Try running ./configure --help sometimes.. :) Anyway, the right argument is --with-config-file-path --Jani -- PHP General

[PHP-CVS] cvs: php4 /ext/domxml config.m4

2001-01-29 Thread Jani Taskinen
sniper Mon Jan 29 15:15:12 2001 EDT Modified files: /php4/ext/domxmlconfig.m4 Log: Fixed bug #8946. In some systems the libxml.* is actually libxml2.* Index: php4/ext/domxml/config.m4 diff -u php4/ext/domxml/config.m4:1.19

[PHP-CVS] cvs: php4 /sapi/cgi cgi_main.c

2001-03-04 Thread Jani Taskinen
sniper Sun Mar 4 17:26:36 2001 EDT Modified files: /php4/sapi/cgi cgi_main.c Log: Can't output any error messages if there isn't any function initialized to do it.. # Bug report: #7650 Index: php4/sapi/cgi/cgi_main.c diff -u

[PHP-CVS] cvs: php4 /sapi/cgi cgi_main.c

2001-03-05 Thread Jani Taskinen
sniper Mon Mar 5 07:08:36 2001 EDT Modified files: /php4/sapi/cgi cgi_main.c Log: Fix help text for -f Index: php4/sapi/cgi/cgi_main.c diff -u php4/sapi/cgi/cgi_main.c:1.97 php4/sapi/cgi/cgi_main.c:1.98 --- php4/sapi/cgi/cgi_main.c:1.97 Sun Mar 4

[PHP-CVS] cvs: php4 /sapi/cgi cgi_main.c

2001-03-07 Thread Jani Taskinen
sniper Wed Mar 7 05:24:12 2001 EDT Modified files: /php4/sapi/cgi cgi_main.c Log: Fixed the help for other options too. Index: php4/sapi/cgi/cgi_main.c diff -u php4/sapi/cgi/cgi_main.c:1.98 php4/sapi/cgi/cgi_main.c:1.99 ---

[PHP-CVS] cvs: php4 /ext/curl config.m4

2001-03-10 Thread Jani Taskinen
sniper Sat Mar 10 16:49:16 2001 EDT Modified files: /php4/ext/curl config.m4 Log: If AC_CHECK_LIB fails, assume that --with-openssl is needed Index: php4/ext/curl/config.m4 diff -u php4/ext/curl/config.m4:1.3 php4/ext/curl/config.m4:1.4 ---

[PHP-CVS] cvs: php4 / configure.in

2001-03-10 Thread Jani Taskinen
sniper Sat Mar 10 19:46:25 2001 EDT Modified files: /php4 configure.in Log: Check for inet_aton only if libbind is not found (or inet_aton is not in libbind). Fixes bug: #8814 Index: php4/configure.in diff -u php4/configure.in:1.220

[PHP-CVS] cvs: php4 /ext/standard basic_functions.c dns.c dns.h /main config.w32.h

2001-03-10 Thread Jani Taskinen
sniper Sat Mar 10 19:49:21 2001 EDT Modified files: /php4/ext/standard basic_functions.c dns.c dns.h /php4/main config.w32.h Log: HAVE_BINDLIB -- HAVE_LIBBIND Index: php4/ext/standard/basic_functions.c diff -u

[PHP-CVS] cvs: php4 /ext/sybase_ct php_sybase_ct.c

2001-03-10 Thread Jani Taskinen
sniper Sat Mar 10 20:13:53 2001 EDT Modified files: /php4/ext/sybase_ct php_sybase_ct.c Log: Added missing alias. PR: #9550 Index: php4/ext/sybase_ct/php_sybase_ct.c diff -u php4/ext/sybase_ct/php_sybase_ct.c:1.42 php4/ext/sybase_ct/php_sybase_ct.c:1.43 ---

[PHP-CVS] cvs: php4 /ext/muscat config.m4

2001-03-11 Thread Jani Taskinen
sniper Sun Mar 11 16:46:15 2001 EDT Modified files: /php4/ext/muscatconfig.m4 Log: ws fix. Index: php4/ext/muscat/config.m4 diff -u php4/ext/muscat/config.m4:1.1 php4/ext/muscat/config.m4:1.2 --- php4/ext/muscat/config.m4:1.1 Thu Jan 18 05:21:33

[PHP-CVS] cvs: php4 /ext/pdf config.m4

2001-03-11 Thread Jani Taskinen
sniper Sun Mar 11 17:20:14 2001 EDT Modified files: /php4/ext/pdf config.m4 Log: ws fixes. Plus removed unnecessary AC_MSG_ calls. Index: php4/ext/pdf/config.m4 diff -u php4/ext/pdf/config.m4:1.14 php4/ext/pdf/config.m4:1.15 ---

[PHP-CVS] cvs: php4 /ext/ldap config.m4

2001-03-11 Thread Jani Taskinen
sniper Sun Mar 11 18:06:07 2001 EDT Modified files: /php4/ext/ldap config.m4 Log: Cleaning this a little bit. Index: php4/ext/ldap/config.m4 diff -u php4/ext/ldap/config.m4:1.13 php4/ext/ldap/config.m4:1.14 --- php4/ext/ldap/config.m4:1.13Sun Oct

[PHP-CVS] cvs: php4 /ext/fbsql config.m4

2001-03-13 Thread Jani Taskinen
sniper Tue Mar 13 14:33:53 2001 EDT Modified files: /php4/ext/fbsql config.m4 Log: Extension was enabled by default.. Index: php4/ext/fbsql/config.m4 diff -u php4/ext/fbsql/config.m4:1.1 php4/ext/fbsql/config.m4:1.2 --- php4/ext/fbsql/config.m4:1.1

[PHP-CVS] cvs: php4 /ext/fbsql config.m4

2001-03-13 Thread Jani Taskinen
sniper Tue Mar 13 14:50:02 2001 EDT Modified files: /php4/ext/fbsql config.m4 Log: cleanup. Index: php4/ext/fbsql/config.m4 diff -u php4/ext/fbsql/config.m4:1.3 php4/ext/fbsql/config.m4:1.4 --- php4/ext/fbsql/config.m4:1.3Tue Mar 13 14:44:49 2001

[PHP-CVS] cvs: php4 /ext/zziplib zziplib.c

2001-03-13 Thread Jani Taskinen
sniper Tue Mar 13 15:41:26 2001 EDT Modified files: /php4/ext/zziplib zziplib.c Log: Make phpinfo() output prettier + kill some compile warnings. Index: php4/ext/zziplib/zziplib.c diff -u php4/ext/zziplib/zziplib.c:1.4 php4/ext/zziplib/zziplib.c:1.5 ---

[PHP-CVS] cvs: php4 /ext/fbsql EXPERIMENTAL

2001-03-14 Thread Jani Taskinen
sniper Wed Mar 14 05:42:33 2001 EDT Added files: /php4/ext/fbsql EXPERIMENTAL Log: Missing. -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

[PHP-CVS] cvs: php4 /ext/fbsql CREDITS

2001-03-14 Thread Jani Taskinen
sniper Wed Mar 14 05:43:58 2001 EDT Added files: /php4/ext/fbsql CREDITS Log: Forgot this one.. -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

[PHP-CVS] cvs: php4 /ext/ming config.m4

2001-03-15 Thread Jani Taskinen
sniper Thu Mar 15 16:36:30 2001 EDT Modified files: /php4/ext/ming config.m4 Log: Beutify + fix some errors in finding libs and header files. Index: php4/ext/ming/config.m4 diff -u php4/ext/ming/config.m4:1.2 php4/ext/ming/config.m4:1.3 ---

[PHP-CVS] cvs: php4 /ext/ming .cvsignore CREDITS

2001-03-15 Thread Jani Taskinen
sniper Thu Mar 15 16:36:47 2001 EDT Added files: /php4/ext/ming CREDITS .cvsignore Log: Missing files. Index: php4/ext/ming/.cvsignore +++ php4/ext/ming/.cvsignore Makefile *.lo *.la libs deps libs.mk -- PHP CVS Mailing List (http://www.php.net/)

[PHP-CVS] cvs: php4 /ext/ming ming.c

2001-03-15 Thread Jani Taskinen
sniper Thu Mar 15 16:37:34 2001 EDT Modified files: /php4/ext/ming ming.c Log: Killed a compile warning + made ming extension compile with the older ming libs. Index: php4/ext/ming/ming.c diff -u php4/ext/ming/ming.c:1.3 php4/ext/ming/ming.c:1.4 ---

[PHP-CVS] cvs: php4 /ext/bz2 bz2.c

2001-03-15 Thread Jani Taskinen
sniper Thu Mar 15 17:21:24 2001 EDT Modified files: /php4/ext/bz2 bz2.c Log: Make this extension compile again.. Index: php4/ext/bz2/bz2.c diff -u php4/ext/bz2/bz2.c:1.10 php4/ext/bz2/bz2.c:1.11 --- php4/ext/bz2/bz2.c:1.10 Wed Mar 14 23:03:28 2001

[PHP-CVS] cvs: php4 /ext/ming config.m4

2001-03-15 Thread Jani Taskinen
sniper Thu Mar 15 18:06:33 2001 EDT Modified files: /php4/ext/ming config.m4 Log: Added a check for the one function missing in = 0.1.0 versions of ming lib. Index: php4/ext/ming/config.m4 diff -u php4/ext/ming/config.m4:1.3 php4/ext/ming/config.m4:1.4

[PHP-CVS] cvs: php4 /ext/imap php_imap.c

2001-03-16 Thread Jani Taskinen
sniper Fri Mar 16 05:17:55 2001 EDT Modified files: /php4/ext/imap php_imap.c Log: Make compile again when ZTS is enabled and imap-2000 is used. Bug #9762 Index: php4/ext/imap/php_imap.c diff -u php4/ext/imap/php_imap.c:1.62 php4/ext/imap/php_imap.c:1.63

[PHP-CVS] cvs: php4 /ext/standard dns.h

2001-03-16 Thread Jani Taskinen
sniper Fri Mar 16 06:45:46 2001 EDT Modified files: /php4/ext/standard dns.h Log: Missed this one. Index: php4/ext/standard/dns.h diff -u php4/ext/standard/dns.h:1.8 php4/ext/standard/dns.h:1.9 --- php4/ext/standard/dns.h:1.8 Sat Mar 10 19:49:21 2001 +++

[PHP-CVS] cvs: php4 /tests .cvsignore

2001-03-16 Thread Jani Taskinen
sniper Fri Mar 16 09:10:46 2001 EDT Modified files: /php4/tests .cvsignore Log: .php files should not be ignored. Typo? Index: php4/tests/.cvsignore diff -u php4/tests/.cvsignore:1.1 php4/tests/.cvsignore:1.2 --- php4/tests/.cvsignore:1.1 Tue Nov 21

[PHP-CVS] cvs: php4 /ext/standard basic_functions.c

2001-03-16 Thread Jani Taskinen
sniper Fri Mar 16 10:18:02 2001 EDT Modified files: /php4/ext/standard basic_functions.c Log: This has got to be the last one.. Index: php4/ext/standard/basic_functions.c diff -u php4/ext/standard/basic_functions.c:1.315

[PHP-CVS] cvs: php4 /ext/fdf fdf.c

2001-03-17 Thread Jani Taskinen
sniper Sat Mar 17 21:52:41 2001 EDT Modified files: /php4/ext/fdf fdf.c Log: Fix the fix. Plus killed some compile warnings. Index: php4/ext/fdf/fdf.c diff -u php4/ext/fdf/fdf.c:1.40 php4/ext/fdf/fdf.c:1.41 --- php4/ext/fdf/fdf.c:1.40 Sat Mar 17

[PHP-CVS] cvs: php4 /main SAPI.c

2001-03-17 Thread Jani Taskinen
sniper Sun Mar 18 00:00:10 2001 EDT Modified files: /php4/main SAPI.c Log: Fix possible crash if content-type is not set. Index: php4/main/SAPI.c diff -u php4/main/SAPI.c:1.101 php4/main/SAPI.c:1.102 --- php4/main/SAPI.c:1.101 Sat Mar 17 18:32:04 2001

[PHP-CVS] cvs: php4 /ext/fdf fdf.c

2001-03-18 Thread Jani Taskinen
sniper Sun Mar 18 01:25:40 2001 EDT Modified files: /php4/ext/fdf fdf.c Log: Prevent mem leak Index: php4/ext/fdf/fdf.c diff -u php4/ext/fdf/fdf.c:1.41 php4/ext/fdf/fdf.c:1.42 --- php4/ext/fdf/fdf.c:1.41 Sat Mar 17 21:52:40 2001 +++

[PHP-CVS] cvs: php4 /ext/midgard config.m4

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 10:38:09 2001 EDT Modified files: /php4/ext/midgard config.m4 Log: Fix the build. Again. # Read README.CVS-RULES # And TEST before commit. Index: php4/ext/midgard/config.m4 diff -u php4/ext/midgard/config.m4:1.18

Re: [PHP-CVS] cvs: php4 /ext/midgard config.m4

2001-03-19 Thread Jani Taskinen
On Mon, 19 Mar 2001, Alexander Bokovoy wrote: On Mon, Mar 19, 2001 at 01:19:06PM -0600, Andrei Zmievski wrote: On Mon, 19 Mar 2001, Alexander Bokovoy wrote: This fix does not work because @MIDCONFIG_FILE@ in php_midgard.h does not substituted by PHP_OUTPUT using template file

Re: [PHP-CVS] cvs: php4 /ext/midgard config.m4

2001-03-19 Thread Jani Taskinen
On Mon, 19 Mar 2001, Alexander Bokovoy wrote: fi PHP_SUBST(MIDCONFIG_FILE) - AC_SUBST(MIDCONFIG_FILE) - AC_OUTPUT(php_midgard.h, [], []) + PHP_OUTPUT(php_midgard.h, [], []) AC_DEFINE(HAVE_MIDGARD, 1, [ ]) PHP_EXTENSION(midgard, $ext_shared) fi This fix does not work

Re: [PHP-CVS] cvs: php4 /ext/midgard config.m4

2001-03-19 Thread Jani Taskinen
On Tue, 20 Mar 2001, Zeev Suraski wrote: Not a problem for me. But how is PEAR being made available, then? We still don't have a good framework for having PEAR extensions that contain PHP extensions written in C in them. That was always the goal, it just hasn't been done yet. And yes, I

[PHP-CVS] cvs: php4 /ext/cybermut libs.mk

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 17:06:25 2001 EDT Removed files: /php4/ext/cybermut libs.mk Log: Removed unnessary file. -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP-CVS] cvs: php4 /ext/xml/tests 004.phpt 006.phpt skipif.php

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 17:22:07 2001 EDT Removed files: /php4/ext/xml/tests skipif.php Modified files: /php4/ext/xml/tests 004.phpt 006.phpt Log: Removed skipif.php + Fixed tests to use skipif.inc instead. Index: php4/ext/xml/tests/004.phpt

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/fdf fdf.c

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 17:32:28 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/fdf fdf.c Log: MFH Index: php4/ext/fdf/fdf.c diff -u php4/ext/fdf/fdf.c:1.39 php4/ext/fdf/fdf.c:1.39.2.1 --- php4/ext/fdf/fdf.c:1.39 Sun Feb 25 22:06:54 2001 +++

[PHP-CVS] cvs: php4(PHP_4_0_5) / configure.in

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 17:38:28 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4 configure.in Log: MFH Index: php4/configure.in diff -u php4/configure.in:1.221.4.1 php4/configure.in:1.221.4.2 --- php4/configure.in:1.221.4.1 Tue Mar 13 08:23:52 2001 +++

[PHP-CVS] cvs: php4(PHP_4_0_5) /main SAPI.c

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 17:42:40 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/main SAPI.c Log: MFH Index: php4/main/SAPI.c diff -u php4/main/SAPI.c:1.100.2.1 php4/main/SAPI.c:1.100.2.2 --- php4/main/SAPI.c:1.100.2.1 Sat Mar 17 18:36:27 2001 +++

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/standard basic_functions.c dns.c dns.h

2001-03-19 Thread Jani Taskinen
sniper Mon Mar 19 17:49:56 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/standard basic_functions.c dns.c dns.h Log: MFH Index: php4/ext/standard/basic_functions.c diff -u php4/ext/standard/basic_functions.c:1.315

Re: [PHP-CVS] cvs: php4(PHP_4_0_5) /sapi/fastcgi CREDITS Makefile.inREADME.FastCGI config.m4 fastcgi.c php.sym php_fastcgi.h

2001-03-20 Thread Jani Taskinen
On Tue, 20 Mar 2001, Andi Gutmans wrote: andi Tue Mar 20 10:13:21 2001 EDT Added files: (Branch: PHP_4_0_5) /php4/sapi/fastcgi CREDITS Makefile.in README.FastCGI config.m4 fastcgi.c php.sym php_fastcgi.h Log: - MFH Are you sure you

Re: [PHP-CVS] cvs: php4 /ext/domxml php_domxml.c

2001-03-22 Thread Jani Taskinen
When I still remember..I'm getting a lot of error messages into my error_log, e.g.: Unknown(0) : Warning - Constant xpath_boolean already defined And I think you have PHP_MINIT and PHP_RINIT mixed.. ie. Index: php_domxml.c ===

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/sockets sockets.c

2001-03-22 Thread Jani Taskinen
sniper Thu Mar 22 05:20:35 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/sockets sockets.c Log: MFH Index: php4/ext/sockets/sockets.c diff -u php4/ext/sockets/sockets.c:1.32 php4/ext/sockets/sockets.c:1.32.2.1 --- php4/ext/sockets/sockets.c:1.32

[PHP-CVS] cvs: php4 /ext/ldap config.m4

2001-03-26 Thread Jani Taskinen
sniper Mon Mar 26 02:30:48 2001 EDT Modified files: /php4/ext/ldap config.m4 Log: Support Solaris 8 ldap. Index: php4/ext/ldap/config.m4 diff -u php4/ext/ldap/config.m4:1.14 php4/ext/ldap/config.m4:1.15 --- php4/ext/ldap/config.m4:1.14Sun Mar 11

[PHP-CVS] cvs: php4 / configure.in

2001-03-26 Thread Jani Taskinen
sniper Mon Mar 26 13:34:59 2001 EDT Modified files: /php4 configure.in Log: Fixed the problem with libbind (again). Index: php4/configure.in diff -u php4/configure.in:1.224 php4/configure.in:1.225 --- php4/configure.in:1.224 Thu Mar 22 20:56:51 2001

[PHP-CVS] cvs: php4 /ext/domxml php_domxml.c

2001-03-26 Thread Jani Taskinen
sniper Mon Mar 26 13:42:02 2001 EDT Modified files: /php4/ext/domxmlphp_domxml.c Log: Fixed a typo. Index: php4/ext/domxml/php_domxml.c diff -u php4/ext/domxml/php_domxml.c:1.33 php4/ext/domxml/php_domxml.c:1.34 --- php4/ext/domxml/php_domxml.c:1.33 Wed

[PHP-CVS] cvs: php4 /main php_variables.c

2001-03-27 Thread Jani Taskinen
sniper Tue Mar 27 03:34:51 2001 EDT Modified files: /php4/main php_variables.c Log: Fix the arg_separator behaviour. Only or ; is allowed as separators so no need to use the ini setting here. Index: php4/main/php_variables.c diff -u

[PHP-CVS] cvs: php4(PHP_4_0_5) /main php_variables.c

2001-03-27 Thread Jani Taskinen
sniper Tue Mar 27 06:03:03 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/main php_variables.c Log: MFH Index: php4/main/php_variables.c diff -u php4/main/php_variables.c:1.21 php4/main/php_variables.c:1.21.2.1 --- php4/main/php_variables.c:1.21 Sun

[PHP-CVS] cvs: php4 / acinclude.m4 configure.in /ext/aspell config.m4 /ext/bz2 config.m4 /ext/ccvs config.m4 /ext/cpdf config.m4 /ext/crack config.m4 /ext/curl config.m4 /ext/cybercash config.m4 /ext/cybermut config.m4 /ext/dba config.m4 /ext/domxml config.m4 /ext/fbsql config.m4 /ext/fdf config.m4 /ext/fribidi config.m4 /ext/gd config.m4 /ext/gettext config.m4 /ext/gmp config.m4 /ext/icap config.m4 /ext/iconv config.m4 /ext/imap config.m4 /ext/informix config.m4 /ext/ingres_ii config.m4 /ext/interbase config.m4 /ext/ircg config.m4 /ext/java config.m4 /ext/ldap config.m4 /ext/mcal config.m4 /ext/mcrypt config.m4 /ext/mhash config.m4 /ext/midgard config.m4 config.m4.session /ext/ming config.m4 /ext/mnogosearch config.m4 /ext/msql config.m4 /ext/muscat config.m4 /ext/mysql config.m4 /ext/oci8 config.m4 /ext/odbc config.m4 /ext/oracle config.m4 /ext/ovrimos config.m4 /ext/pcre config.m4 /ext/pdf config.m4 /ext/pfpro config.m4 /ext/pgsql config.m4 /ext/pspell config.m4 /ext/qtdom config.m4 /ext/readline config.m4 /ext/recode config.m4 /ext/sablot config.m4 /ext/session config.m4 /ext/snmp config.m4 /ext/swf config.m4 /ext/sybase config.m4 /ext/sybase_ct config.m4 /ext/vpopmail config.m4 /ext/xml config.m4 /ext/zlib config.m4 /ext/zziplib config.m4 /sapi/aolserver config.m4 /sapi/apache config.m4 /sapi/apache2filter config.m4 /sapi/caudium config.m4 /sapi/fastcgi config.m4 /sapi/isapi config.m4 /sapi/nsapi config.m4 /sapi/phttpd config.m4 /sapi/pi3web config.m4 /sapi/roxen config.m4 /sapi/thttpd config.m4

2001-03-27 Thread Jani Taskinen
sniper Tue Mar 27 12:34:51 2001 EDT Modified files: /php4 acinclude.m4 configure.in /php4/ext/aspellconfig.m4 /php4/ext/bz2 config.m4 /php4/ext/ccvs config.m4 /php4/ext/cpdf config.m4 /php4/ext/crack config.m4

[PHP-CVS] cvs: php4 / configure.in

2001-03-28 Thread Jani Taskinen
sniper Wed Mar 28 14:30:22 2001 EDT Modified files: /php4 configure.in Log: Make file() work again. # For some reason if libbind is linked with PHP the file() function # won't work with URLs. Do we even need libbind? Index: php4/configure.in

[PHP-CVS] cvs: php4(PHP_4_0_5) / configure.in /ext/ming config.m4 ming.c

2001-03-28 Thread Jani Taskinen
sniper Wed Mar 28 15:19:45 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4 configure.in /php4/ext/ming ming.c config.m4 Log: MFH Index: php4/configure.in diff -u php4/configure.in:1.221.4.5 php4/configure.in:1.221.4.6 ---

[PHP-CVS] cvs: php4 /ext/domxml php_domxml.c

2001-03-28 Thread Jani Taskinen
sniper Wed Mar 28 16:22:45 2001 EDT Modified files: /php4/ext/domxmlphp_domxml.c Log: Fixed bug: #10040. Index: php4/ext/domxml/php_domxml.c diff -u php4/ext/domxml/php_domxml.c:1.34 php4/ext/domxml/php_domxml.c:1.35 --- php4/ext/domxml/php_domxml.c:1.34

[PHP-CVS] cvs: php4 /ext/gd gd.c gd_ctx.c php_gd.h

2001-03-31 Thread Jani Taskinen
sniper Sat Mar 31 21:42:07 2001 EDT Modified files: /php4/ext/gdgd.c gd_ctx.c php_gd.h Log: Fixed bug #8137 and killed some compile warnings. Index: php4/ext/gd/gd.c diff -u php4/ext/gd/gd.c:1.118 php4/ext/gd/gd.c:1.119 --- php4/ext/gd/gd.c:1.118

[PHP-CVS] cvs: php4 /ext/informix ifx.ec

2001-03-31 Thread Jani Taskinen
sniper Sat Mar 31 21:55:22 2001 EDT Modified files: /php4/ext/informix ifx.ec Log: Fixed bug #10095. Index: php4/ext/informix/ifx.ec diff -u php4/ext/informix/ifx.ec:1.52 php4/ext/informix/ifx.ec:1.53 --- php4/ext/informix/ifx.ec:1.52 Sun Feb 25

[PHP-CVS] cvs: php4 /ext/gd gd.c gd_ctx.c

2001-03-31 Thread Jani Taskinen
sniper Sat Mar 31 22:20:45 2001 EDT Modified files: /php4/ext/gdgd.c gd_ctx.c Log: According to GD documentation the macros should be used instead.. Index: php4/ext/gd/gd.c diff -u php4/ext/gd/gd.c:1.119 php4/ext/gd/gd.c:1.120 ---

[PHP-CVS] cvs: php4 /ext/aspell config.m4

2001-04-02 Thread Jani Taskinen
sniper Mon Apr 2 02:06:33 2001 EDT Modified files: /php4/ext/aspellconfig.m4 Log: Fixed a typo. Bug: #10103 Index: php4/ext/aspell/config.m4 diff -u php4/ext/aspell/config.m4:1.4 php4/ext/aspell/config.m4:1.5 --- php4/ext/aspell/config.m4:1.4 Tue

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/aspell config.m4

2001-04-02 Thread Jani Taskinen
sniper Mon Apr 2 02:07:22 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/aspellconfig.m4 Log: MFH Index: php4/ext/aspell/config.m4 diff -u php4/ext/aspell/config.m4:1.3 php4/ext/aspell/config.m4:1.3.4.1 --- php4/ext/aspell/config.m4:1.3 Wed

[PHP-CVS] cvs: php4 /ext/standard filestat.c

2001-04-03 Thread Jani Taskinen
sniper Tue Apr 3 03:51:16 2001 EDT Modified files: /php4/ext/standard filestat.c Log: SCO (and maybe others) do not have this defined. Index: php4/ext/standard/filestat.c diff -u php4/ext/standard/filestat.c:1.56 php4/ext/standard/filestat.c:1.57 ---

[PHP] Question: Should exit() print out the integer exit-status?

2001-12-18 Thread Jani Taskinen
background information: http://bugs.php.net/bug.php?edit=1id=11008 http://bugs.php.net/bug.php?edit=1id=14574 exit() function is broken. Fixing the broken behaviour is the only real solution, IMO. One solution: - When passed argument is string: print out this string - When passed argument is

[PHP-CVS] cvs: php4 /ext/oci8 config.m4 /ext/oracle config.m4

2001-02-14 Thread Jani Taskinen
sniper Wed Feb 14 13:41:40 2001 EDT Modified files: /php4/ext/oci8 config.m4 /php4/ext/oracleconfig.m4 Log: This should make detecting the version of Oracle libs a bit more accurate to avoid the 'missing libcore4' errors. (e.g. on AIX) Bug

[PHP-CVS] cvs: php4 /ext/curl curl.c

2001-02-16 Thread Jani Taskinen
sniper Fri Feb 16 06:31:37 2001 EDT Modified files: /php4/ext/curl curl.c Log: Fixed a typo in constant definitions and a possible crash in curl_setopt(). # pr: #9181 Index: php4/ext/curl/curl.c diff -u php4/ext/curl/curl.c:1.36

[PHP-CVS] cvs: php4 /ext/standard html.c

2001-03-01 Thread Jani Taskinen
sniper Thu Mar 1 16:15:49 2001 EDT Modified files: /php4/ext/standard html.c Log: ws fix Index: php4/ext/standard/html.c diff -u php4/ext/standard/html.c:1.23 php4/ext/standard/html.c:1.24 --- php4/ext/standard/html.c:1.23 Sun Feb 25 22:07:17 2001 +++

[PHP-CVS] cvs: php4 /ext/sockets config.m4

2001-04-03 Thread Jani Taskinen
sniper Tue Apr 3 17:06:49 2001 EDT Modified files: /php4/ext/sockets config.m4 Log: Cleaned up a bit. Removed some checks for header files that are already checked in configure.in Index: php4/ext/sockets/config.m4 diff -u

[PHP-CVS] cvs: php4 /main php_variables.c

2001-04-03 Thread Jani Taskinen
sniper Tue Apr 3 17:37:06 2001 EDT Modified files: /php4/main php_variables.c Log: Cookies use ; as argument separator. # And also the first step for the possible configure option Index: php4/main/php_variables.c diff -u

[PHP-CVS] cvs: php4 /ext/crack crack.c

2001-04-04 Thread Jani Taskinen
sniper Wed Apr 4 10:13:41 2001 EDT Modified files: /php4/ext/crack crack.c Log: Killed 2 compile warnings. Index: php4/ext/crack/crack.c diff -u php4/ext/crack/crack.c:1.1 php4/ext/crack/crack.c:1.2 --- php4/ext/crack/crack.c:1.1 Sat Dec 2 03:59:20

[PHP-CVS] cvs: php4 / NEWS php.ini-dist php.ini-optimized /ext/standard url_scanner.c url_scanner_ex.c url_scanner_ex.re /main main.c php_globals.h php_variables.c

2001-04-04 Thread Jani Taskinen
sniper Wed Apr 4 13:46:27 2001 EDT Modified files: /php4 php.ini-dist php.ini-optimized NEWS /php4/ext/standard url_scanner.c url_scanner_ex.re url_scanner_ex.c /php4/main main.c php_globals.h php_variables.c Log: Added new configuration

[PHP-CVS] cvs: php4 / configure.in /main php_version.h

2001-04-04 Thread Jani Taskinen
sniper Wed Apr 4 13:52:44 2001 EDT Modified files: /php4 configure.in /php4/main php_version.h Log: This branch is 4.0.6-dev.. Index: php4/configure.in diff -u php4/configure.in:1.228 php4/configure.in:1.229 --- php4/configure.in:1.228 Tue

[PHP-CVS] cvs: php4 /ext/fdf fdf.c

2001-04-04 Thread Jani Taskinen
sniper Wed Apr 4 22:38:19 2001 EDT Modified files: /php4/ext/fdf fdf.c Log: Fix bugs: #10157, #7549 Index: php4/ext/fdf/fdf.c diff -u php4/ext/fdf/fdf.c:1.42 php4/ext/fdf/fdf.c:1.43 --- php4/ext/fdf/fdf.c:1.42 Sun Mar 18 01:25:40 2001 +++

[PHP-CVS] cvs: php4 /main php_variables.c

2001-04-05 Thread Jani Taskinen
sniper Thu Apr 5 18:50:41 2001 EDT Modified files: /php4/main php_variables.c Log: fixed typo in CVS id Index: php4/main/php_variables.c diff -u php4/main/php_variables.c:1.24 php4/main/php_variables.c:1.25 --- php4/main/php_variables.c:1.24 Wed Apr 4

[PHP-CVS] cvs: php4(PHP_4_0_5) / NEWS php.ini-dist php.ini-optimized /ext/standard url_scanner.c url_scanner_ex.c url_scanner_ex.re /main main.c php_globals.h php_variables.c

2001-04-05 Thread Jani Taskinen
sniper Thu Apr 5 19:09:44 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4 NEWS php.ini-dist php.ini-optimized /php4/ext/standard url_scanner.c url_scanner_ex.c url_scanner_ex.re /php4/main main.c php_globals.h php_variables.c Log: MFH

[PHP-CVS] cvs: php4(PHP_4_0_5) /main main.c

2001-04-06 Thread Jani Taskinen
sniper Fri Apr 6 08:18:52 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/main main.c Log: Support also old arg_separator directive. Index: php4/main/main.c diff -u php4/main/main.c:1.356.2.2 php4/main/main.c:1.356.2.3 --- php4/main/main.c:1.356.2.2 Thu

[PHP-CVS] cvs: php4 /ext/gd gd.c php_gd.h

2001-04-06 Thread Jani Taskinen
sniper Fri Apr 6 11:01:52 2001 EDT Modified files: /php4/ext/gdgd.c php_gd.h Log: Killed some compile warnings. Index: php4/ext/gd/gd.c diff -u php4/ext/gd/gd.c:1.120 php4/ext/gd/gd.c:1.121 --- php4/ext/gd/gd.c:1.120 Sat Mar 31 22:20:45 2001 +++

[PHP-CVS] cvs: php4 /ext/fdf fdf.c php_fdf.h

2001-04-06 Thread Jani Taskinen
sniper Fri Apr 6 16:17:32 2001 EDT Modified files: /php4/ext/fdf fdf.c php_fdf.h Log: Fixed some bugs. Index: php4/ext/fdf/fdf.c diff -u php4/ext/fdf/fdf.c:1.43 php4/ext/fdf/fdf.c:1.44 --- php4/ext/fdf/fdf.c:1.43 Wed Apr 4 22:38:18 2001 +++

Re: [PHP-CVS] cvs: php4 /ext/fdf fdf.c php_fdf.h

2001-04-06 Thread Jani Taskinen
On Sat, 7 Apr 2001 [EMAIL PROTECTED] wrote: Why are you changing in the describtions of protos "Sets" to "Set", "Adds" to "Add" and so on? I think the former was the right english description. Please look into CODING_STANDARDS at php.net and phpdoc/funcsummary.txt. hmm..well, I checked the

[PHP-CVS] cvs: php4 /ext/fdf fdf.c

2001-04-06 Thread Jani Taskinen
sniper Fri Apr 6 19:48:20 2001 EDT Modified files: /php4/ext/fdf fdf.c Log: fixed protos Index: php4/ext/fdf/fdf.c diff -u php4/ext/fdf/fdf.c:1.44 php4/ext/fdf/fdf.c:1.45 --- php4/ext/fdf/fdf.c:1.44 Fri Apr 6 16:17:31 2001 +++ php4/ext/fdf/fdf.c

Re: [PHP-CVS] cvs: php4 /ext/fdf fdf.c

2001-04-06 Thread Jani Taskinen
On Fri, 6 Apr 2001, Sterling Hughes wrote: On Sat, 7 Apr 2001, Jani Taskinen wrote: sniper Fri Apr 6 19:48:20 2001 EDT Modified files: /php4/ext/fdffdf.c Log: fixed protos Yikes, it seems like you moved the grammar backwards... From what I remember

[PHP-CVS] cvs: php4 /ext/standard file.c

2001-04-07 Thread Jani Taskinen
sniper Sat Apr 7 14:46:43 2001 EDT Modified files: /php4/ext/standard file.c Log: ws pollution removed. Index: php4/ext/standard/file.c diff -u php4/ext/standard/file.c:1.149 php4/ext/standard/file.c:1.150 --- php4/ext/standard/file.c:1.149 Fri Mar 23

Re: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-04-10 Thread Jani Taskinen
Have you tested it on Linux, FreeBSD, OpenBSD... ? :) If you know for sure it will work on these, go ahead. --Jani On Mon, 9 Apr 2001, Jason Greene wrote: Everyone, Can I merge this into the current RC? This should not cause any problems. -Jason - Original Message - From: "Jason

Re: [PHP-CVS] cvs: php4 /ext/odbc php_odbc.c

2001-04-16 Thread Jani Taskinen
On Mon, 16 Apr 2001, Sterling Hughes wrote: -#ifndef HAVE_DBMAKER -if ((*pv_onoff)) { -#else if (pv_onoff (*pv_onoff)) { -#endif convert_to_long_ex(pv_onoff); rc = SQLSetConnectOption(conn-hdbc, SQL_AUTOCOMMIT,

[PHP-CVS] cvs: php4 / configure.in

2001-04-23 Thread Jani Taskinen
sniper Mon Apr 23 00:32:36 2001 EDT Modified files: /php4 configure.in Log: Fixed bugs: #10194, #9177. Index: php4/configure.in diff -u php4/configure.in:1.237 php4/configure.in:1.238 --- php4/configure.in:1.237 Sun Apr 22 23:00:43 2001 +++

[PHP] PHP 4.3.2 released

2003-05-29 Thread Jani Taskinen
*php-4.3.2.tar.gz e1afea6341d97e8160bd7d93712721ec *php-4.3.2-Win32.zip cb55d0d9df6a2bf4ba666c27886d12cb *php-4.3.2-installer.exe kippis, Jani Taskinen [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org

[PHP] PHP 4.3.3RC1 released.

2003-06-18 Thread Jani Taskinen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This is the first release candidate of the upcoming maintenance release of PHP 4.3.3. Please download and test it as much as possible on real-life applications to uncover any remaining issues. Sources:

[PHP] PHP Security Advisory: CGI vulnerability in PHP version 4.3.0

2003-02-17 Thread Jani Taskinen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 PHP Security Advisory: CGI vulnerability in PHP version 4.3.0 Issued on: February 17, 2003 Software: PHP/CGI version 4.3.0 Platforms: All The PHP Group has learned of a serious security vulnerability in the CGI SAPI of PHP version

[PHP] PHP 4.3.2RC1 released.

2003-03-13 Thread Jani Taskinen
This is the first release candidate of the upcoming maintenance release of PHP 4.3.2. Please download and test it as much as possible on real-life applications to uncover any remaining issues. Sources: http://www.php.net/~jani/RC/php-4.3.2RC1.tar.gz