I have been getting a compile error when compiling with interbase /home/kevin/php5-200309100330/ext/interbase/interbase.c:328: parse error before "ISC_LONG" make: *** [ext/interbase/interbase.lo] Error 1
line 328 is.. qd->gds_quad_low = (unsigned ISC_LONG) (res & 0xFFFFFFFF); */ removing the unsigned fixes it for me qd->gds_quad_low = (ISC_LONG) (res & 0xFFFFFFFF); using firebird 1.5.0 Kind regards Kevin -- ______ (_____ \ _____) ) ____ ____ ____ ____ | ____/ / _ ) / _ | / ___) / _ ) | | ( (/ / ( ( | |( (___ ( (/ / |_| \____) \_||_| \____) \____) Kevin Waterson Port Macquarie, Australia -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php