[PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Branching 4.0.6...

2001-05-06 Thread Sascha Schumann

On Sat, 5 May 2001, Wez Furlong wrote:

 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
 
  Now that the pressing problems have been fixed in the CVS I'd like to
  branch 4.0.6 and release an RC1.
  Any objections?

 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.

 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.

The GD config stuff is also still busted.  On www.php.net,
the config system detected GIF support in GD-1.8.3..

- Sascha Experience IRCG
  http://schumann.cx/http://schumann.cx/ircg


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Branching 4.0.6...

2001-05-06 Thread Wez Furlong

On 2001-05-06 12:04:32, Sascha Schumann [EMAIL PROTECTED] wrote:
 The GD config stuff is also still busted.  On www.php.net,
 the config system detected GIF support in GD-1.8.3..

How can that be?
The gif stuff is detected via AC_CHECK_LIB

(I didn't touch that part!)

--Wez.


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Branching 4.0.6...

2001-05-06 Thread Rasmus Lerdorf

  On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
   Hi,
  
   Now that the pressing problems have been fixed in the CVS I'd like to
   branch 4.0.6 and release an RC1.
   Any objections?
 
  No, but you may want to check that my commit for fsock/network related
  files works for you all before you branch, just in case.
 
  It works for me, and it shouldn't affect you unless you enable the
  streams stuff in configure.

 The GD config stuff is also still busted.  On www.php.net,
 the config system detected GIF support in GD-1.8.3..

That's because the GD-1.8.3 lib on www.php.net does have GIF support.

-Rasmus


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Branching 4.0.6...

2001-05-06 Thread Sascha Schumann

 That's because the GD-1.8.3 lib on www.php.net does have GIF support.

Well, then the mistake is in some other part, because it
complained about gdImageCreateFromGifCtx not being defined in
some #ifdef HAVE_GD_GIF .. #endif area.

- Sascha Experience IRCG
  http://schumann.cx/http://schumann.cx/ircg


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Branching 4.0.6...

2001-05-06 Thread Rasmus Lerdorf

On Sun, 6 May 2001, Sascha Schumann wrote:

  That's because the GD-1.8.3 lib on www.php.net does have GIF support.

 Well, then the mistake is in some other part, because it
 complained about gdImageCreateFromGifCtx not being defined in
 some #ifdef HAVE_GD_GIF .. #endif area.

I am unable to recreate this problem on that same machine.  See my
~rasmus/config.nice file.

-Rasmus


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Branching 4.0.6...

2001-05-06 Thread Sascha Schumann

On Sun, 6 May 2001, Rasmus Lerdorf wrote:

 On Sun, 6 May 2001, Sascha Schumann wrote:

   That's because the GD-1.8.3 lib on www.php.net does have GIF support.

Well, actually it does not have GIF support.

$ nm /home/rasmus/gd-1.8.3/libgd.a|grep -i gif|wc -l
  0

However, the gd lib in /usr/lib has GIF support.  I initially
configured PHP using --with-jpeg-dir=/usr and therefore
-L/usr/lib was erroneously in LDFLAGS (or LIBS) during the
gdCreateImageFromGif test.  This actually should not happen..

During the build, /home/rasmus/gd-1.8.3 was included before
/usr/include and hence a mismatch between the expected
features and the contents of the header file occured, leading
to various error messages.

- Sascha Experience IRCG
  http://schumann.cx/http://schumann.cx/ircg


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Branching 4.0.6...

2001-05-05 Thread Andi Gutmans

Hi,

Now that the pressing problems have been fixed in the CVS I'd like to 
branch 4.0.6 and release an RC1.
Any objections?

Andi


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Branching 4.0.6...

2001-05-05 Thread Wez Furlong

On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.



On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.



On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.



On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.



On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.



On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.



On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
 Hi,
 
 Now that the pressing problems have been fixed in the CVS I'd like to 
 branch 4.0.6 and release an RC1.
 Any objections?

No, but you may want to check that my commit for fsock/network related
files works for you all before you branch, just in case.

It works for me, and it shouldn't affect you unless you enable the
streams stuff in configure.

--Wez.




-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


Re: [PHP-DEV] Branching 4.0.6...

2001-05-05 Thread Wez Furlong

On 2001-05-05 20:02:29, Wez Furlong [EMAIL PROTECTED] wrote:
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 On 2001-05-05 19:02:29, Andi Gutmans [EMAIL PROTECTED] wrote:
  Hi,
  
  Now that the pressing problems have been fixed in the CVS I'd like to 
  branch 4.0.6 and release an RC1.
  Any objections?
 
 No, but you may want to check that my commit for fsock/network related
 files works for you all before you branch, just in case.
 
 It works for me, and it shouldn't affect you unless you enable the
 streams stuff in configure.
 
 --Wez.
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]





On 2001-05-05 20:02:29, Wez Furlong [EMAIL PROTECTED] wrote:
[ Lots of stuff that got stangely repeated many times ]

Sorry about that!

--Wez.




-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


RE: [PHP-DEV] Branching 4.0.6... (mailer problems)

2001-05-05 Thread Wez Furlong

Sorry for the spamming.

--Wez.

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Branching 4.0.6...

2001-05-05 Thread Rui Hirokawa


Hi,

I fixed a compilation problem for ext/mbstring recently.
I think this problem is critical for this module,
it should be applied for php-4.0.6 branch.

hirokawaSat May  5 19:44:12 2001 EDT

   Modified files:
 /php4/ext/mbstring  mbstring.c
   Log:
   fixed a compilation problem without --enable-mbstr-enc-trans.

Index: php4/ext/mbstring/mbstring.c
diff -u php4/ext/mbstring/mbstring.c:1.7 php4/ext/mbstring/mbstring.c:1.8
--- php4/ext/mbstring/mbstring.c:1.7Fri May  4 03:42:54 2001
+++ php4/ext/mbstring/mbstring.cSat May  5 19:44:12 2001
@@ -16,7 +16,7 @@
 +--+
   */

-/* $Id: mbstring.c,v 1.7 2001/05/04 10:42:54 hirokawa Exp $ */
+/* $Id: mbstring.c,v 1.8 2001/05/06 02:44:12 hirokawa Exp $ */

  /*
   * PHP4 Multibyte String module mbstring (currently only for Japanese)
@@ -73,6 +73,7 @@

  static unsigned char third_and_rest_force_ref[] = { 3, BYREF_NONE, 
 BYREF_NONE, BYREF_FORCE_REST };

+#if defined(MBSTR_ENC_TRANS)
  SAPI_POST_HANDLER_FUNC(php_mbstr_post_handler);

  static sapi_post_entry mbstr_post_entries[] = {
@@ -80,6 +81,7 @@
 { 
 MULTIPART_CONTENT_TYPE,   sizeof(MULTIPART_CONTENT_TYPE)-1, 
  sapi_read_standard_form_data,   rfc1867_post_handler },
 { NULL, 0, NULL }
  };
+#endif

  function_entry mbstring_functions[] = {
 PHP_FE(mb_internal_encoding,NULL)





-- 
--
Rui Hirokawa [EMAIL PROTECTED]
maintainer of japanese PHP manual [EMAIL PROTECTED]

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]