ID: 9364
Updated by: sas
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: Compile Failure
Assigned To:
Comments:
Thanks, I've fixed the first problem. The second one had already been addressed
earlier.
Previous Comments:
---------------------------------------------------------------------------
[2001-02-20 17:41:07] [EMAIL PROTECTED]
When trying to compile sapi/cgi/getopt.c and sapi/cgi/cgi_main.c, I get the following
errors:
---------- begin [getopt..c] ----------
ERROR :15 The redeclaration cannot specify a different storage class.
ERROR :16 The redeclaration cannot specify a different storage class.
---------- end [getopt.c] ----------
I got rid of above error by removing static from
static int ap_php_opterr = 1;
static int ap_php_optopt;
---------- begin [cgi_main.c] ----------
ERROR :204 The redeclaration cannot specify a different storage class.
---------- end [cgi_main.c] ----------
I got rid of above error by removing static from
static sapi_module_struct sapi_module = {
I believe the errors are due to the conflicting declarations in sapi/cgi/php_getopt.h:
extern int ap_php_opterr;
extern int ap_php_optopt;
and the conflictng declaration in main/SAPI.h:
extern sapi_module_struct sapi_module;
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9364&edit=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]