Re: [PHP-DEV] gd/config.m4 - some issues left

2001-05-20 Thread Jani Taskinen
I'm just testing some changes I made. Will commit soon. --Jani On Sun, 20 May 2001, Sascha Schumann wrote: >These three lines contain the and operator (-a) which is not >followed by an expression: > >if test "$PHP_JPEG_DIR" != "no" -a "$PHP_JPEG_DIR"; then >if test "$PHP_PNG_D

Re: [PHP-DEV] gd/config.m4 - some issues left

2001-05-20 Thread Andi Gutmans
Please don't forget the 4.0.6 branch when you address this. Andi At 01:45 PM 5/20/2001 +0200, Sascha Schumann wrote: > These three lines contain the and operator (-a) which is not > followed by an expression: > > if test "$PHP_JPEG_DIR" != "no" -a "$PHP_JPEG_DIR"; then > if test

[PHP-DEV] gd/config.m4 - some issues left

2001-05-20 Thread Sascha Schumann
These three lines contain the and operator (-a) which is not followed by an expression: if test "$PHP_JPEG_DIR" != "no" -a "$PHP_JPEG_DIR"; then if test "$PHP_PNG_DIR" != "no" -a "$PHP_PNG_DIR"; then if test "$PHP_XPM_DIR" != "no" -a "$PHP_XPM_DIR"; then I don't see the r