ID: 41029
User updated by: dgrimes at scvl dot com
Reported By: dgrimes at scvl dot com
-Status: Feedback
+Status: Open
Bug Type: Compile Failure
Operating System: Tru64 V5.1
PHP Version: 5.2.1
New Comment:
I'll have to work on getting an SSH account. Usually what we do is use
Cisco VPN client. Our Operations group has been discussing allowing SSH
but their concern is they don't have as much control over access as they
do with Cisco VPN.
The main thing you probably aren't going to like about it is that it
isn't going to allow you access to your network while you're connected
to ours. It'll make it harder for you to troubleshoot because you won't
have access to your regular development utilities. Are you open to using
the Cisco VPN client?
At any rate, I probably won't have access for you until Thursday. I'm
going to be out of the office on Tuesday and Wednesday. I have to put in
a request and justification for your access and then await a response.
So if there is any other way for me to provide you with any information
to help you troubleshoot, I'm only too happy to do so.
Thanks,
Dean
Previous Comments:
------------------------------------------------------------------------
[2007-04-09 19:25:49] [EMAIL PROTECTED]
Please provide an SSH account on this machine.
------------------------------------------------------------------------
[2007-04-09 19:16:57] dgrimes at scvl dot com
I guess I'm not exactly sure what you mean. Are you asking if it's
included in any of the php.[hc] files? If so, then here is the list of
files that reference varargs:
./ext/mbstring/oniguruma/regerror.c
./ext/sqlite/libsqlite/src/printf.c
./ext/standard/formatted_print.c
./main/php.h
./main/php_config.h
However, they all reference <sys/varargs.h>. I checked
/usr/sys/include/varargs.h and it is there too and it's the same version
as that in /usr/include.
Is there an easy way to see if it's being used?
Thanks,
Dean
------------------------------------------------------------------------
[2007-04-09 19:01:00] [EMAIL PROTECTED]
Is /usr/include/varargs.h used?
------------------------------------------------------------------------
[2007-04-09 18:56:15] dgrimes at scvl dot com
Here is the text by line numer:
5546 static int php_ini_get_option(zend_ini_entry *ini_entry, int
num_args, v
a_list args, zend_hash_key *hash_key)
5547 {
5548 zval *ini_array = va_arg(args, zval *);
5549 int module_number = va_arg(args, int);
5550 zval *option;
5551
5552 if (module_number != 0 && ini_entry->module_number !=
module_number) {
5553 return 0;
5554 }
5555
5556 if (hash_key->nKeyLength == 0 || hash_key->arKey[0] != 0) {
5557
5558 MAKE_STD_ZVAL(option);
5559 array_init(option);
5560
5561 if (ini_entry->orig_value) {
5562 add_assoc_stringl(option, "global_value",
ini_entry->orig_value,
ini_entry->orig_value_length, 1);
5563 } else if (ini_entry->value) {
5564 add_assoc_stringl(option, "global_value",
ini_entry->value, ini_e
ntry->value_length, 1);
5565 } else {
5566 dd_assoc_null(option, "global_value");
------------------------------------------------------------------------
[2007-04-09 18:41:11] [EMAIL PROTECTED]
That's good, but is /usr/include/varargs.h included?
What exactly is on line 5548 before zval?
>From what I can see, there is nothing before zval, so the error message
is quite mislading.
------------------------------------------------------------------------
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/41029
--
Edit this bug report at http://bugs.php.net/?id=41029&edit=1