[PHP-DEV] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

Are you sure your system isn't a bit broken here?
Nobody else has reported this problem but you.

--Jani


Previous Comments:


[2001-08-20 13:16:24] [EMAIL PROTECTED]

The file config.log contains the following block regarding locale.h:

configure:6312: checking for locale.h
configure:6322: gcc -E  -DHPUX11 -DUSE_HSREGEX -DUSE_EXPAT -DSHARED_CORE conftest.c 
/dev/null 2conftest.out
In file included from /usr/include/locale.h:157,
 from configure:6318:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: 
`__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition
configure: failed program was:
#line 6317 configure
#include confdefs.h
#include locale.h




[2001-08-20 12:53:53] [EMAIL PROTECTED]

What is in config.log about locale.h ?

--Jani




[2001-08-20 12:21:08] [EMAIL PROTECTED]

I pulled the latest snapshot and ran the same configure command. I still see the 
following in main/php_config.h:

/* #undef HAVE_LOCALE_H */

It appears the problem still exists...



[2001-08-18 15:34:20] [EMAIL PROTECTED]

Does this happen with latest CVS snapshot:

http://snaps.php.net/

--Jani




[2001-07-02 11:19:03] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread unix-guy

ID: 11761
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Feedback
Status: Open
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

I haven't tried this on another system, but it was freshly installed and patched at 
the time I first encountered this problem. All associated software (gcc, flex, bison, 
etc) was installed just prior to building PHP.

What's even more confusing is that the config.log shows that it FOUND 
/usr/include/locale.h:

In file included from /usr/include/locale.h:157

So how is it that configure thinks locale.h can't be found?

I don't really have time to pursue the issue on another system at this time. Since I 
was able to successfully build PHP by simply adding the #define to php_config.h, I 
wasn't overly concerned.

I'm sure it's possible that the problem is compiler related - maybe nobody else has 
used gcc 2.95.3 on HP-UX 11 to build PHP4, but I doubt it.

Previous Comments:


[2001-08-22 04:15:51] [EMAIL PROTECTED]

Are you sure your system isn't a bit broken here?
Nobody else has reported this problem but you.

--Jani




[2001-08-20 13:16:24] [EMAIL PROTECTED]

The file config.log contains the following block regarding locale.h:

configure:6312: checking for locale.h
configure:6322: gcc -E  -DHPUX11 -DUSE_HSREGEX -DUSE_EXPAT -DSHARED_CORE conftest.c 
/dev/null 2conftest.out
In file included from /usr/include/locale.h:157,
 from configure:6318:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: 
`__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition
configure: failed program was:
#line 6317 configure
#include confdefs.h
#include locale.h




[2001-08-20 12:53:53] [EMAIL PROTECTED]

What is in config.log about locale.h ?

--Jani




[2001-08-20 12:21:08] [EMAIL PROTECTED]

I pulled the latest snapshot and ran the same configure command. I still see the 
following in main/php_config.h:

/* #undef HAVE_LOCALE_H */

It appears the problem still exists...



[2001-08-18 15:34:20] [EMAIL PROTECTED]

Does this happen with latest CVS snapshot:

http://snaps.php.net/

--Jani




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

Reason for the HAVE_LOCALE_H to get set to 0 is this:

In file included from /usr/include/locale.h:157,
 from configure:6318:
  /opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: 
warning:
  `__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition

Now, we could discuss whether it's a bug in autoconf or
in gcc (on HP-UX)..but I'd rather not. :)

Anyway, not a bug in PHP.

--Jani


Previous Comments:


[2001-08-22 11:21:45] [EMAIL PROTECTED]

I haven't tried this on another system, but it was freshly installed and patched at 
the time I first encountered this problem. All associated software (gcc, flex, bison, 
etc) was installed just prior to building PHP.

What's even more confusing is that the config.log shows that it FOUND 
/usr/include/locale.h:

In file included from /usr/include/locale.h:157

So how is it that configure thinks locale.h can't be found?

I don't really have time to pursue the issue on another system at this time. Since I 
was able to successfully build PHP by simply adding the #define to php_config.h, I 
wasn't overly concerned.

I'm sure it's possible that the problem is compiler related - maybe nobody else has 
used gcc 2.95.3 on HP-UX 11 to build PHP4, but I doubt it.



[2001-08-22 04:15:51] [EMAIL PROTECTED]

Are you sure your system isn't a bit broken here?
Nobody else has reported this problem but you.

--Jani




[2001-08-20 13:16:24] [EMAIL PROTECTED]

The file config.log contains the following block regarding locale.h:

configure:6312: checking for locale.h
configure:6322: gcc -E  -DHPUX11 -DUSE_HSREGEX -DUSE_EXPAT -DSHARED_CORE conftest.c 
/dev/null 2conftest.out
In file included from /usr/include/locale.h:157,
 from configure:6318:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: 
`__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition
configure: failed program was:
#line 6317 configure
#include confdefs.h
#include locale.h




[2001-08-20 12:53:53] [EMAIL PROTECTED]

What is in config.log about locale.h ?

--Jani




[2001-08-20 12:21:08] [EMAIL PROTECTED]

I pulled the latest snapshot and ran the same configure command. I still see the 
following in main/php_config.h:

/* #undef HAVE_LOCALE_H */

It appears the problem still exists...



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Status: Closed
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

I forgot to add this: I found couple of mentions
about this same problem. You could try with different
version of GCC.

--Jani


Previous Comments:


[2001-08-22 12:53:58] [EMAIL PROTECTED]

Reason for the HAVE_LOCALE_H to get set to 0 is this:

In file included from /usr/include/locale.h:157,
 from configure:6318:
  /opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: 
warning:
  `__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition

Now, we could discuss whether it's a bug in autoconf or
in gcc (on HP-UX)..but I'd rather not. :)

Anyway, not a bug in PHP.

--Jani




[2001-08-22 11:21:45] [EMAIL PROTECTED]

I haven't tried this on another system, but it was freshly installed and patched at 
the time I first encountered this problem. All associated software (gcc, flex, bison, 
etc) was installed just prior to building PHP.

What's even more confusing is that the config.log shows that it FOUND 
/usr/include/locale.h:

In file included from /usr/include/locale.h:157

So how is it that configure thinks locale.h can't be found?

I don't really have time to pursue the issue on another system at this time. Since I 
was able to successfully build PHP by simply adding the #define to php_config.h, I 
wasn't overly concerned.

I'm sure it's possible that the problem is compiler related - maybe nobody else has 
used gcc 2.95.3 on HP-UX 11 to build PHP4, but I doubt it.



[2001-08-22 04:15:51] [EMAIL PROTECTED]

Are you sure your system isn't a bit broken here?
Nobody else has reported this problem but you.

--Jani




[2001-08-20 13:16:24] [EMAIL PROTECTED]

The file config.log contains the following block regarding locale.h:

configure:6312: checking for locale.h
configure:6322: gcc -E  -DHPUX11 -DUSE_HSREGEX -DUSE_EXPAT -DSHARED_CORE conftest.c 
/dev/null 2conftest.out
In file included from /usr/include/locale.h:157,
 from configure:6318:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: 
`__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition
configure: failed program was:
#line 6317 configure
#include confdefs.h
#include locale.h




[2001-08-20 12:53:53] [EMAIL PROTECTED]

What is in config.log about locale.h ?

--Jani




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread unix-guy

ID: 11761
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Closed
Status: Open
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

I'll try a newer version of GCC and see what happens...

Previous Comments:


[2001-08-22 12:55:42] [EMAIL PROTECTED]

I forgot to add this: I found couple of mentions
about this same problem. You could try with different
version of GCC.

--Jani




[2001-08-22 12:53:58] [EMAIL PROTECTED]

Reason for the HAVE_LOCALE_H to get set to 0 is this:

In file included from /usr/include/locale.h:157,
 from configure:6318:
  /opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: 
warning:
  `__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition

Now, we could discuss whether it's a bug in autoconf or
in gcc (on HP-UX)..but I'd rather not. :)

Anyway, not a bug in PHP.

--Jani




[2001-08-22 11:21:45] [EMAIL PROTECTED]

I haven't tried this on another system, but it was freshly installed and patched at 
the time I first encountered this problem. All associated software (gcc, flex, bison, 
etc) was installed just prior to building PHP.

What's even more confusing is that the config.log shows that it FOUND 
/usr/include/locale.h:

In file included from /usr/include/locale.h:157

So how is it that configure thinks locale.h can't be found?

I don't really have time to pursue the issue on another system at this time. Since I 
was able to successfully build PHP by simply adding the #define to php_config.h, I 
wasn't overly concerned.

I'm sure it's possible that the problem is compiler related - maybe nobody else has 
used gcc 2.95.3 on HP-UX 11 to build PHP4, but I doubt it.



[2001-08-22 04:15:51] [EMAIL PROTECTED]

Are you sure your system isn't a bit broken here?
Nobody else has reported this problem but you.

--Jani




[2001-08-20 13:16:24] [EMAIL PROTECTED]

The file config.log contains the following block regarding locale.h:

configure:6312: checking for locale.h
configure:6322: gcc -E  -DHPUX11 -DUSE_HSREGEX -DUSE_EXPAT -DSHARED_CORE conftest.c 
/dev/null 2conftest.out
In file included from /usr/include/locale.h:157,
 from configure:6318:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: 
`__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition
configure: failed program was:
#line 6317 configure
#include confdefs.h
#include locale.h




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

Great. Anyway, this is _not_ a bug in PHP so please
submit further reports to the correct places.

(Either to autoconf or GCC bug systems :)


Previous Comments:


[2001-08-22 13:21:13] [EMAIL PROTECTED]

I'll try a newer version of GCC and see what happens...



[2001-08-22 12:55:42] [EMAIL PROTECTED]

I forgot to add this: I found couple of mentions
about this same problem. You could try with different
version of GCC.

--Jani




[2001-08-22 12:53:58] [EMAIL PROTECTED]

Reason for the HAVE_LOCALE_H to get set to 0 is this:

In file included from /usr/include/locale.h:157,
 from configure:6318:
  /opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: 
warning:
  `__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition

Now, we could discuss whether it's a bug in autoconf or
in gcc (on HP-UX)..but I'd rather not. :)

Anyway, not a bug in PHP.

--Jani




[2001-08-22 11:21:45] [EMAIL PROTECTED]

I haven't tried this on another system, but it was freshly installed and patched at 
the time I first encountered this problem. All associated software (gcc, flex, bison, 
etc) was installed just prior to building PHP.

What's even more confusing is that the config.log shows that it FOUND 
/usr/include/locale.h:

In file included from /usr/include/locale.h:157

So how is it that configure thinks locale.h can't be found?

I don't really have time to pursue the issue on another system at this time. Since I 
was able to successfully build PHP by simply adding the #define to php_config.h, I 
wasn't overly concerned.

I'm sure it's possible that the problem is compiler related - maybe nobody else has 
used gcc 2.95.3 on HP-UX 11 to build PHP4, but I doubt it.



[2001-08-22 04:15:51] [EMAIL PROTECTED]

Are you sure your system isn't a bit broken here?
Nobody else has reported this problem but you.

--Jani




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread unix-guy

ID: 11761
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Bogus
Status: Open
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

If I find a solution, do you NOT want it noted in the PHP Bug database? I would think 
at least a bug ID # from the other database for future reference?

Previous Comments:


[2001-08-22 13:24:59] [EMAIL PROTECTED]

Great. Anyway, this is _not_ a bug in PHP so please
submit further reports to the correct places.

(Either to autoconf or GCC bug systems :)




[2001-08-22 13:21:13] [EMAIL PROTECTED]

I'll try a newer version of GCC and see what happens...



[2001-08-22 12:55:42] [EMAIL PROTECTED]

I forgot to add this: I found couple of mentions
about this same problem. You could try with different
version of GCC.

--Jani




[2001-08-22 12:53:58] [EMAIL PROTECTED]

Reason for the HAVE_LOCALE_H to get set to 0 is this:

In file included from /usr/include/locale.h:157,
 from configure:6318:
  /opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: 
warning:
  `__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition

Now, we could discuss whether it's a bug in autoconf or
in gcc (on HP-UX)..but I'd rather not. :)

Anyway, not a bug in PHP.

--Jani




[2001-08-22 11:21:45] [EMAIL PROTECTED]

I haven't tried this on another system, but it was freshly installed and patched at 
the time I first encountered this problem. All associated software (gcc, flex, bison, 
etc) was installed just prior to building PHP.

What's even more confusing is that the config.log shows that it FOUND 
/usr/include/locale.h:

In file included from /usr/include/locale.h:157

So how is it that configure thinks locale.h can't be found?

I don't really have time to pursue the issue on another system at this time. Since I 
was able to successfully build PHP by simply adding the #define to php_config.h, I 
wasn't overly concerned.

I'm sure it's possible that the problem is compiler related - maybe nobody else has 
used gcc 2.95.3 on HP-UX 11 to build PHP4, but I doubt it.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

Of course. If you find the solution, please add it here.
But keep this bug 'closed'.


Previous Comments:


[2001-08-22 14:08:14] [EMAIL PROTECTED]

If I find a solution, do you NOT want it noted in the PHP Bug database? I would think 
at least a bug ID # from the other database for future reference?



[2001-08-22 13:24:59] [EMAIL PROTECTED]

Great. Anyway, this is _not_ a bug in PHP so please
submit further reports to the correct places.

(Either to autoconf or GCC bug systems :)




[2001-08-22 13:21:13] [EMAIL PROTECTED]

I'll try a newer version of GCC and see what happens...



[2001-08-22 12:55:42] [EMAIL PROTECTED]

I forgot to add this: I found couple of mentions
about this same problem. You could try with different
version of GCC.

--Jani




[2001-08-22 12:53:58] [EMAIL PROTECTED]

Reason for the HAVE_LOCALE_H to get set to 0 is this:

In file included from /usr/include/locale.h:157,
 from configure:6318:
  /opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: 
warning:
  `__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition

Now, we could discuss whether it's a bug in autoconf or
in gcc (on HP-UX)..but I'd rather not. :)

Anyway, not a bug in PHP.

--Jani




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread unix-guy

ID: 11761
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Closed
Status: Open
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

I've installed GCC 3.0 and no longer see the problem with locale.h. However, now I do 
see the problem in Bug id #12842.



Previous Comments:


[2001-08-22 15:23:28] [EMAIL PROTECTED]

Of course. If you find the solution, please add it here.
But keep this bug 'closed'.




[2001-08-22 14:08:14] [EMAIL PROTECTED]

If I find a solution, do you NOT want it noted in the PHP Bug database? I would think 
at least a bug ID # from the other database for future reference?



[2001-08-22 13:24:59] [EMAIL PROTECTED]

Great. Anyway, this is _not_ a bug in PHP so please
submit further reports to the correct places.

(Either to autoconf or GCC bug systems :)




[2001-08-22 13:21:13] [EMAIL PROTECTED]

I'll try a newer version of GCC and see what happens...



[2001-08-22 12:55:42] [EMAIL PROTECTED]

I forgot to add this: I found couple of mentions
about this same problem. You could try with different
version of GCC.

--Jani




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-22 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

Note added to #12842. 



Previous Comments:


[2001-08-22 16:52:13] [EMAIL PROTECTED]

I've installed GCC 3.0 and no longer see the problem with locale.h. However, now I do 
see the problem in Bug id #12842.





[2001-08-22 15:23:28] [EMAIL PROTECTED]

Of course. If you find the solution, please add it here.
But keep this bug 'closed'.




[2001-08-22 14:08:14] [EMAIL PROTECTED]

If I find a solution, do you NOT want it noted in the PHP Bug database? I would think 
at least a bug ID # from the other database for future reference?



[2001-08-22 13:24:59] [EMAIL PROTECTED]

Great. Anyway, this is _not_ a bug in PHP so please
submit further reports to the correct places.

(Either to autoconf or GCC bug systems :)




[2001-08-22 13:21:13] [EMAIL PROTECTED]

I'll try a newer version of GCC and see what happens...



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-20 Thread unix-guy

ID: 11761
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Feedback
Status: Open
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

I pulled the latest snapshot and ran the same configure command. I still see the 
following in main/php_config.h:

/* #undef HAVE_LOCALE_H */

It appears the problem still exists...

Previous Comments:


[2001-08-18 15:34:20] [EMAIL PROTECTED]

Does this happen with latest CVS snapshot:

http://snaps.php.net/

--Jani




[2001-07-02 11:19:03] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 20:40:11] [EMAIL PROTECTED]

User feedback (next time, use the WEB interface to answer):
---
I do have /usr/include/locale.h. In the php_config.h file, the only line
matching 'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?
---





[2001-06-29 17:48:56] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 17:14:05] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-20 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

What is in config.log about locale.h ?

--Jani


Previous Comments:


[2001-08-20 12:21:08] [EMAIL PROTECTED]

I pulled the latest snapshot and ran the same configure command. I still see the 
following in main/php_config.h:

/* #undef HAVE_LOCALE_H */

It appears the problem still exists...



[2001-08-18 15:34:20] [EMAIL PROTECTED]

Does this happen with latest CVS snapshot:

http://snaps.php.net/

--Jani




[2001-07-02 11:19:03] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 20:40:11] [EMAIL PROTECTED]

User feedback (next time, use the WEB interface to answer):
---
I do have /usr/include/locale.h. In the php_config.h file, the only line
matching 'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?
---





[2001-06-29 17:48:56] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-20 Thread unix-guy

ID: 11761
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Feedback
Status: Open
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

The file config.log contains the following block regarding locale.h:

configure:6312: checking for locale.h
configure:6322: gcc -E  -DHPUX11 -DUSE_HSREGEX -DUSE_EXPAT -DSHARED_CORE conftest.c 
/dev/null 2conftest.out
In file included from /usr/include/locale.h:157,
 from configure:6318:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: 
`__va__list' redefined
/usr/include/locale.h:26: warning: this is the location of the previous definition
configure: failed program was:
#line 6317 configure
#include confdefs.h
#include locale.h


Previous Comments:


[2001-08-20 12:53:53] [EMAIL PROTECTED]

What is in config.log about locale.h ?

--Jani




[2001-08-20 12:21:08] [EMAIL PROTECTED]

I pulled the latest snapshot and ran the same configure command. I still see the 
following in main/php_config.h:

/* #undef HAVE_LOCALE_H */

It appears the problem still exists...



[2001-08-18 15:34:20] [EMAIL PROTECTED]

Does this happen with latest CVS snapshot:

http://snaps.php.net/

--Jani




[2001-07-02 11:19:03] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 20:40:11] [EMAIL PROTECTED]

User feedback (next time, use the WEB interface to answer):
---
I do have /usr/include/locale.h. In the php_config.h file, the only line
matching 'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?
---





The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-08-18 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Compile Failure
Operating System: HP-UX 11.00
PHP Version: 4.0.6
New Comment:

Does this happen with latest CVS snapshot:

http://snaps.php.net/

--Jani


Previous Comments:


[2001-07-02 11:19:03] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 20:40:11] [EMAIL PROTECTED]

User feedback (next time, use the WEB interface to answer):
---
I do have /usr/include/locale.h. In the php_config.h file, the only line
matching 'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?
---





[2001-06-29 17:48:56] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 17:14:05] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.



[2001-06-29 17:12:30] [EMAIL PROTECTED]

I do have /usr/include/locale.h. In the php_config.h file, the only line matching 
'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?






The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/?id=11761


Edit this bug report at http://bugs.php.net/?id=11761edit=1


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-07-02 Thread unix-guy

ID: 11761
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: Compile Failure
Operating system: HP-UX 11.00
PHP Version: 4.0.6
Description: LC_CTYPE undeclared

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

Previous Comments:
---

[2001-06-29 20:40:11] [EMAIL PROTECTED]

User feedback (next time, use the WEB interface to answer):
---
I do have /usr/include/locale.h. In the php_config.h file, the only line
matching 'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?
---



---

[2001-06-29 17:48:56] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

---

[2001-06-29 17:14:05] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

---

[2001-06-29 17:12:30] [EMAIL PROTECTED]

I do have /usr/include/locale.h. In the php_config.h file, the only line matching 
'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?




---

[2001-06-28 11:33:59] [EMAIL PROTECTED]

Do you have /usr/include/locale.h ?
Can you find this line in php4/main/php_config.h:

#define HAVE_LOCALE_H 1



---

The remainder of the comments for this report are too long.
To view the rest of the comments, please
view the bug report online.

Full Bug description available at: http://bugs.php.net/?id=11761


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-06-30 Thread unix-guy

ID: 11761
User Update by: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Open
Bug Type: Compile Failure
Operating system: HP-UX 11.00
PHP Version: 4.0.6
Description: LC_CTYPE undeclared

I do have /usr/include/locale.h. In the php_config.h file, the only line matching 
'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?




Previous Comments:
---

[2001-06-28 11:33:59] [EMAIL PROTECTED]

Do you have /usr/include/locale.h ?
Can you find this line in php4/main/php_config.h:

#define HAVE_LOCALE_H 1



---

[2001-06-27 20:44:14] [EMAIL PROTECTED]

Compile with either that static or DSO method fails on HP-UX 11.00.

Config command (from static):

./configure --prefix=/opt/php4 --with-apache=../apache_1.3.19 --disable-debug 
--enable-inline-optimization --with-exec-dir=/opt/php4/bin --with-d
bm --enable-debugger --enable-magic-quotes --enable-safe-mode --enable-sockets 
--enable-track-vars --enable-yp --enable-ftp --without-mysql --without-oracle 
--without-oci8

End of make output:

gcc  -I. -I/tmp/php-4.0.6/ext/pcre -I/tmp/php-4.0.6/main -I/tmp/php-4.0.6 
-I/tmp/apache_1.3.19/src/include -I/tmp/apache_1.3.19/src/os/unix 
-I/tmp/php-4.0.6/Zend -I/tmp/php-4.0.6/ext/xml/expat/xmltok 
-I/tmp/php-4.0.6/ext/xml/expat/xmlparse -I/tmp/php-4.0.6/TSRM  -DSUPPORT_UTF8 
-DXML_BYTE_ORDER=21 -g -O2  -c php_pcre.c  touch php_pcre.lo
In file included from /tmp/php-4.0.6/Zend/../main/php_config.h:1931,
 from /tmp/php-4.0.6/Zend/zend_config.h:1,
 from /tmp/php-4.0.6/Zend/zend.h:44,
 from /tmp/php-4.0.6/main/php.h:34,
 from php_pcre.c:25:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/string.h:26: warning: 
`__va__list' redefined
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: this is 
the location of the previous definition
php_pcre.c: In function `pcre_get_compiled_regex':
php_pcre.c:158: `LC_CTYPE' undeclared (first use in this function)
php_pcre.c:158: (Each undeclared identifier is reported only once
php_pcre.c:158: for each function it appears in.)
php_pcre.c:158: warning: initialization makes pointer from integer without a cast
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.

Tried with LANG=C and LANG undefined - no difference...

---


Full Bug description available at: http://bugs.php.net/?id=11761


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-06-30 Thread unix-guy

ID: 11761
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: Compile Failure
Operating system: HP-UX 11.00
PHP Version: 4.0.6
Description: LC_CTYPE undeclared

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

Previous Comments:
---

[2001-06-29 17:12:30] [EMAIL PROTECTED]

I do have /usr/include/locale.h. In the php_config.h file, the only line matching 
'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?




---

[2001-06-28 11:33:59] [EMAIL PROTECTED]

Do you have /usr/include/locale.h ?
Can you find this line in php4/main/php_config.h:

#define HAVE_LOCALE_H 1



---

[2001-06-27 20:44:14] [EMAIL PROTECTED]

Compile with either that static or DSO method fails on HP-UX 11.00.

Config command (from static):

./configure --prefix=/opt/php4 --with-apache=../apache_1.3.19 --disable-debug 
--enable-inline-optimization --with-exec-dir=/opt/php4/bin --with-d
bm --enable-debugger --enable-magic-quotes --enable-safe-mode --enable-sockets 
--enable-track-vars --enable-yp --enable-ftp --without-mysql --without-oracle 
--without-oci8

End of make output:

gcc  -I. -I/tmp/php-4.0.6/ext/pcre -I/tmp/php-4.0.6/main -I/tmp/php-4.0.6 
-I/tmp/apache_1.3.19/src/include -I/tmp/apache_1.3.19/src/os/unix 
-I/tmp/php-4.0.6/Zend -I/tmp/php-4.0.6/ext/xml/expat/xmltok 
-I/tmp/php-4.0.6/ext/xml/expat/xmlparse -I/tmp/php-4.0.6/TSRM  -DSUPPORT_UTF8 
-DXML_BYTE_ORDER=21 -g -O2  -c php_pcre.c  touch php_pcre.lo
In file included from /tmp/php-4.0.6/Zend/../main/php_config.h:1931,
 from /tmp/php-4.0.6/Zend/zend_config.h:1,
 from /tmp/php-4.0.6/Zend/zend.h:44,
 from /tmp/php-4.0.6/main/php.h:34,
 from php_pcre.c:25:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/string.h:26: warning: 
`__va__list' redefined
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: this is 
the location of the previous definition
php_pcre.c: In function `pcre_get_compiled_regex':
php_pcre.c:158: `LC_CTYPE' undeclared (first use in this function)
php_pcre.c:158: (Each undeclared identifier is reported only once
php_pcre.c:158: for each function it appears in.)
php_pcre.c:158: warning: initialization makes pointer from integer without a cast
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.

Tried with LANG=C and LANG undefined - no difference...

---


Full Bug description available at: http://bugs.php.net/?id=11761


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-06-30 Thread unix-guy

ID: 11761
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: Compile Failure
Operating system: HP-UX 11.00
PHP Version: 4.0.6
Description: LC_CTYPE undeclared

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

Previous Comments:
---

[2001-06-29 17:14:05] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

---

[2001-06-29 17:12:30] [EMAIL PROTECTED]

I do have /usr/include/locale.h. In the php_config.h file, the only line matching 
'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?




---

[2001-06-28 11:33:59] [EMAIL PROTECTED]

Do you have /usr/include/locale.h ?
Can you find this line in php4/main/php_config.h:

#define HAVE_LOCALE_H 1



---

[2001-06-27 20:44:14] [EMAIL PROTECTED]

Compile with either that static or DSO method fails on HP-UX 11.00.

Config command (from static):

./configure --prefix=/opt/php4 --with-apache=../apache_1.3.19 --disable-debug 
--enable-inline-optimization --with-exec-dir=/opt/php4/bin --with-d
bm --enable-debugger --enable-magic-quotes --enable-safe-mode --enable-sockets 
--enable-track-vars --enable-yp --enable-ftp --without-mysql --without-oracle 
--without-oci8

End of make output:

gcc  -I. -I/tmp/php-4.0.6/ext/pcre -I/tmp/php-4.0.6/main -I/tmp/php-4.0.6 
-I/tmp/apache_1.3.19/src/include -I/tmp/apache_1.3.19/src/os/unix 
-I/tmp/php-4.0.6/Zend -I/tmp/php-4.0.6/ext/xml/expat/xmltok 
-I/tmp/php-4.0.6/ext/xml/expat/xmlparse -I/tmp/php-4.0.6/TSRM  -DSUPPORT_UTF8 
-DXML_BYTE_ORDER=21 -g -O2  -c php_pcre.c  touch php_pcre.lo
In file included from /tmp/php-4.0.6/Zend/../main/php_config.h:1931,
 from /tmp/php-4.0.6/Zend/zend_config.h:1,
 from /tmp/php-4.0.6/Zend/zend.h:44,
 from /tmp/php-4.0.6/main/php.h:34,
 from php_pcre.c:25:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/string.h:26: warning: 
`__va__list' redefined
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: this is 
the location of the previous definition
php_pcre.c: In function `pcre_get_compiled_regex':
php_pcre.c:158: `LC_CTYPE' undeclared (first use in this function)
php_pcre.c:158: (Each undeclared identifier is reported only once
php_pcre.c:158: for each function it appears in.)
php_pcre.c:158: warning: initialization makes pointer from integer without a cast
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.

Tried with LANG=C and LANG undefined - no difference...

---


Full Bug description available at: http://bugs.php.net/?id=11761


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-06-30 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Compile Failure
Operating system: 
PHP Version: 4.0.6
Assigned To: 
Comments:

User feedback (next time, use the WEB interface to answer):
---
I do have /usr/include/locale.h. In the php_config.h file, the only line
matching 'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?
---



Previous Comments:
---

[2001-06-29 17:48:56] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

---

[2001-06-29 17:14:05] [EMAIL PROTECTED]

I was able to work around the problem by adding:

#define HAVE_LOCALE_H 1

in main/php_config.h

However, I am still concerned at why that particular header file was not found.

---

[2001-06-29 17:12:30] [EMAIL PROTECTED]

I do have /usr/include/locale.h. In the php_config.h file, the only line matching 
'HAVE_LOCALE_H' is:

/* #undef HAVE_LOCALE_H */

Is configure not finding my header file?




---

[2001-06-28 11:33:59] [EMAIL PROTECTED]

Do you have /usr/include/locale.h ?
Can you find this line in php4/main/php_config.h:

#define HAVE_LOCALE_H 1



---

[2001-06-27 20:44:14] [EMAIL PROTECTED]

Compile with either that static or DSO method fails on HP-UX 11.00.

Config command (from static):

./configure --prefix=/opt/php4 --with-apache=../apache_1.3.19 --disable-debug 
--enable-inline-optimization --with-exec-dir=/opt/php4/bin --with-d
bm --enable-debugger --enable-magic-quotes --enable-safe-mode --enable-sockets 
--enable-track-vars --enable-yp --enable-ftp --without-mysql --without-oracle 
--without-oci8

End of make output:

gcc  -I. -I/tmp/php-4.0.6/ext/pcre -I/tmp/php-4.0.6/main -I/tmp/php-4.0.6 
-I/tmp/apache_1.3.19/src/include -I/tmp/apache_1.3.19/src/os/unix 
-I/tmp/php-4.0.6/Zend -I/tmp/php-4.0.6/ext/xml/expat/xmltok 
-I/tmp/php-4.0.6/ext/xml/expat/xmlparse -I/tmp/php-4.0.6/TSRM  -DSUPPORT_UTF8 
-DXML_BYTE_ORDER=21 -g -O2  -c php_pcre.c  touch php_pcre.lo
In file included from /tmp/php-4.0.6/Zend/../main/php_config.h:1931,
 from /tmp/php-4.0.6/Zend/zend_config.h:1,
 from /tmp/php-4.0.6/Zend/zend.h:44,
 from /tmp/php-4.0.6/main/php.h:34,
 from php_pcre.c:25:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/string.h:26: warning: 
`__va__list' redefined
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: this is 
the location of the previous definition
php_pcre.c: In function `pcre_get_compiled_regex':
php_pcre.c:158: `LC_CTYPE' undeclared (first use in this function)
php_pcre.c:158: (Each undeclared identifier is reported only once
php_pcre.c:158: for each function it appears in.)
php_pcre.c:158: warning: initialization makes pointer from integer without a cast
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.

Tried with LANG=C and LANG undefined - no difference...

---

The remainder of the comments for this report are too long.
To view the rest of the comments, please
view the bug report online.


ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=11761edit=2


-- 
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] Bug #11761 Updated: LC_CTYPE undeclared

2001-06-29 Thread sniper

ID: 11761
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Feedback
Bug Type: Compile Failure
Operating system: 
PHP Version: 4.0.6
Assigned To: 
Comments:

Do you have /usr/include/locale.h ?
Can you find this line in php4/main/php_config.h:

#define HAVE_LOCALE_H 1



Previous Comments:
---

[2001-06-27 20:44:14] [EMAIL PROTECTED]
Compile with either that static or DSO method fails on HP-UX 11.00.

Config command (from static):

./configure --prefix=/opt/php4 --with-apache=../apache_1.3.19 --disable-debug 
--enable-inline-optimization --with-exec-dir=/opt/php4/bin --with-d
bm --enable-debugger --enable-magic-quotes --enable-safe-mode --enable-sockets 
--enable-track-vars --enable-yp --enable-ftp --without-mysql --without-oracle 
--without-oci8

End of make output:

gcc  -I. -I/tmp/php-4.0.6/ext/pcre -I/tmp/php-4.0.6/main -I/tmp/php-4.0.6 
-I/tmp/apache_1.3.19/src/include -I/tmp/apache_1.3.19/src/os/unix 
-I/tmp/php-4.0.6/Zend -I/tmp/php-4.0.6/ext/xml/expat/xmltok 
-I/tmp/php-4.0.6/ext/xml/expat/xmlparse -I/tmp/php-4.0.6/TSRM  -DSUPPORT_UTF8 
-DXML_BYTE_ORDER=21 -g -O2  -c php_pcre.c  touch php_pcre.lo
In file included from /tmp/php-4.0.6/Zend/../main/php_config.h:1931,
 from /tmp/php-4.0.6/Zend/zend_config.h:1,
 from /tmp/php-4.0.6/Zend/zend.h:44,
 from /tmp/php-4.0.6/main/php.h:34,
 from php_pcre.c:25:
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/string.h:26: warning: 
`__va__list' redefined
/opt/gcc/lib/gcc-lib/hppa2.0n-hp-hpux11.00/2.95.3/include/stdio.h:30: warning: this is 
the location of the previous definition
php_pcre.c: In function `pcre_get_compiled_regex':
php_pcre.c:158: `LC_CTYPE' undeclared (first use in this function)
php_pcre.c:158: (Each undeclared identifier is reported only once
php_pcre.c:158: for each function it appears in.)
php_pcre.c:158: warning: initialization makes pointer from integer without a cast
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.

Tried with LANG=C and LANG undefined - no difference...

---



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=11761edit=2


-- 
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]