diff options
author | Frank M. Kromann <fmk@php.net> | 2000-04-23 10:52:49 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2000-04-23 10:52:49 +0000 |
commit | 662280560f0e9287d50a1ca0235846405896c991 (patch) | |
tree | 424c145fb5b50ce99acb6f2bb2ca58cdb5c718ed /ext/mssql/php_mssql.h | |
parent | ed699b4263041bf1331781335967d0bda650a90b (diff) | |
download | php-git-662280560f0e9287d50a1ca0235846405896c991.tar.gz |
moving pointers to header and library files to match php_build structure
Diffstat (limited to 'ext/mssql/php_mssql.h')
-rw-r--r-- | ext/mssql/php_mssql.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/mssql/php_mssql.h b/ext/mssql/php_mssql.h index bb4bdf46e3..5b62dfecbd 100644 --- a/ext/mssql/php_mssql.h +++ b/ext/mssql/php_mssql.h @@ -24,19 +24,21 @@ #if HAVE_MSSQL -#include "sqlfront.h" -#include "sqldb.h" - #ifdef PHP_WIN32 #define PHP_MSSQL_API __declspec(dllexport) #else #define PHP_MSSQL_API #endif + #if MSSQL65 #define MSSQL_VERSION "6.5" +#include "../../../php_build/mssql-65/include/sqlfront.h" +#include "../../../php_build/mssql-65/include/sqldb.h" #elif MSSQL70 #define MSSQL_VERSION "7.0" +#include "../../../php_build/mssql-70/include/sqlfront.h" +#include "../../../php_build/mssql-70/include/sqldb.h" #else #define MSSQL_VERSION "Unknown" #endif |