[PHP-DEV] Bug #954: datetime.c uses a struct member that doesn't exist From: tsillan <email protected>
Date: 11/26/98

From: tsillan <email protected>
Operating system: SunOS 5.5.1 + gcc 2.7.2
PHP version: 3.0.5
PHP Bug Type: Compile Failure
Bug description: datetime.c uses a struct member that doesn't exist

gcc -g -O2 -O2 -I. -I. -I/opt/home/viinitupa/vt2/utils/apache_1.3.1/src/include -I/opt/home/viinitupa/vt2/utils/apache_1.3.1/src/os/unix -I/opt/home/viinitupa/vt2/solid/include -c functions/datetime.c -o functions/datetime.o
functions/datetime.c: In function `_php3_mktime':
functions/datetime.c:105: structure has no member named `tm_gmtoff'
make: *** [functions/datetime.o] Error 1

The code there looks like the following:
#if HAVE_TZSET
                tzset();
#if HAVE_TM_ZONE
                gmadjust=(tn->tm_gmtoff)/3600;
#else
                gmadjust=timezone/3600;
#endif

My do-conf look like the following:
./configure --with-apache=/opt/home/viinitupa/vt2/utils/apache_1.3.1 --with-gd=n
o --with-solid=/opt/home/viinitupa/vt2/solid --with-config-file-path=/opt/home/v
iinitupa/vt2/web/conf --enable-debug=no --with-exec-dir=/opt/home/viinitupa/vt2/
web/cgi-bin --enable-url-fopen-wrapper=no

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>