--with-mssql uses a lot of undeclared functions
| Bug #21544 | --with-mssql uses a lot of undeclared functions | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2003-01-09 06:37 UTC | Modified: | 2004-04-14 22:23 UTC |
|
||||||||||
| From: | php at dark-id dot de | Assigned: | ||||||||||||
| Status: | Closed | Package: | MSSQL related | |||||||||||
| PHP Version: | 4.3.0 | OS: | ANY | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2003-01-09 06:37 UTC] php at dark-id dot de
compiling of php 4.3.0 terminates with ../php-4.3.0/ext/mssql/php_mssql.c: In function `zm_activate_mssql': ../php-4.3.0/ext/mssql/php_mssql.c:334: `SHORT' undeclared (first use in this function) ../php-4.3.0/ext/mssql/php_mssql.c:334: (Each undeclared identifier is reported only once ../php-4.3.0/ext/mssql/php_mssql.c:334: for each function it appears in.) when configured with --with-mssql. Any hints?
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2003-01-09 08:25 UTC] nicos@php.net
[2003-01-09 08:42 UTC] nicos@php.net
[2003-01-09 16:37 UTC] fmk@php.net
[2004-04-14 11:21 UTC] sean@php.net
re-opened. This is still happening (or again happening) for me. 4.3.6RC3 (and CVS HEAD (4_3)). Attached is a patch to fix this. I'm not a c guy, though, so please verify. S --- Index: ext/mssql/php_mssql.c =================================================================== RCS file: /repository/php-src/ext/mssql/php_mssql.c,v retrieving revision 1.86.2.31 diff -u -r1.86.2.31 php_mssql.c --- ext/mssql/php_mssql.c 30 Mar 2004 17:54:38 -0000 1.86.2.31 +++ ext/mssql/php_mssql.c 14 Apr 2004 15:18:18 -0000 @@ -336,7 +336,7 @@ dbsetlogintime(MS_SQL_G(connect_timeout)); if (MS_SQL_G(timeout) < 0) MS_SQL_G(timeout) = 60; dbsettime(MS_SQL_G(timeout)); - dbsetmaxprocs((SHORT)MS_SQL_G(max_procs)); + dbsetmaxprocs((int)MS_SQL_G(max_procs)); return SUCCESS; }[2004-04-14 22:23 UTC] sniper@php.net