Index: Makefile =================================================================== RCS file: /cvs/maptools/cvsroot/chameleon/ext/Makefile,v retrieving revision 1.1 diff -u -8 -r1.1 Makefile --- Makefile 12 Apr 2005 15:13:14 -0000 1.1 +++ Makefile 6 Mar 2006 12:04:03 -0000 @@ -1,12 +1,12 @@ default: cd src/ ; make ; cd ../ cd port/ ; make ; cd ../ cd wmsparse/ ; make ; cd ../ - cd php/ ; make ; cd ../ + cd php/ ; ./configure ; make ; cd ../ clean: cd src/ ; make clean ; cd ../ cd port/ ; make clean ; cd ../ cd wmsparse/ ; make clean ; cd ../ cd php/ ; make clean ; cd ../ Index: port/cpl_config.h =================================================================== RCS file: /cvs/maptools/cvsroot/chameleon/ext/port/cpl_config.h,v retrieving revision 1.2 diff -u -8 -r1.2 cpl_config.h --- port/cpl_config.h 12 Apr 2005 17:06:34 -0000 1.2 +++ port/cpl_config.h 6 Mar 2006 12:04:03 -0000 @@ -95,17 +95,17 @@ /* Define to 1 if you have the header file. */ #define HAVE_VALUES_H 1 /* Define to 1 if you have the `vprintf' function. */ #define HAVE_VPRINTF 1 /* Define to 1 if you have the `vsnprintf' function. */ #ifndef WIN32 -define HAVE_VSNPRINTF 1 +#define HAVE_VSNPRINTF 1 #endif /* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */ #define HOST_FILLORDER FILLORDER_LSB2MSB /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "" Index: src/wmsparselib.c =================================================================== RCS file: /cvs/maptools/cvsroot/chameleon/ext/src/wmsparselib.c,v retrieving revision 1.3 diff -u -8 -r1.3 wmsparselib.c --- src/wmsparselib.c 12 Apr 2005 17:07:48 -0000 1.3 +++ src/wmsparselib.c 6 Mar 2006 12:04:05 -0000 @@ -1441,17 +1441,17 @@ //printf( "service title is %s\n", pszServiceTitle ); //that worked, put the info into the server dbf //first find the server record nServerIDFld = DBFGetFieldIndex( hServerDB, "server_id" ); nCapabURLFld = DBFGetFieldIndex( hServerDB, "capab_url" ); nMapURLFld = DBFGetFieldIndex( hServerDB, "map_url" ); nFormatsFld = DBFGetFieldIndex( hServerDB, "formats" ); - nNameFld = DBFGetFieldIndex( hServerDB, "svc_title" ); + nNameFld = DBFGetFieldIndex( hServerDB, "title" ); nVersionFld = DBFGetFieldIndex( hServerDB, "version" ); if ( nServerID == -1 ) { //add a server record (mostly for testing) nServerRec = DBFGetRecordCount( hServerDB ); nServerID = DBFReadIntegerAttribute( hServerDB, \ nServerRec-1, nServerIDFld) + 1;