ID:               25155
 Updated by:       [EMAIL PROTECTED]
 Reported By:      andrew at designtek1 dot com
-Status:           Assigned
+Status:           Closed
 Bug Type:         Compile Failure
 Operating System: FreeBSD
 PHP Version:      4.3.3RC4
 Assigned To:      iliaa
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

The fix for this problem is present in PHP5 and will be a part of the
4.3.X release after 4.3.3.


Previous Comments:
------------------------------------------------------------------------

[2003-08-19 14:24:27] andrew at designtek1 dot com

Description:
------------
compiling fails when configured with both of the options
--with-mime-magic
--with-mssql

compiler error:
In file included from /usr/local/include/sybfront.h:23,
                 from /usr/local/include/sqlfront.h:23,
                 from
/usr/ports/lang/php4/work/php-4.3.3RC4/ext/mssql/php_mssql.h:36,
                 from main/internal_functions.c:57:
/usr/local/include/sybdb.h:103: syntax error before `2'
/usr/local/include/sybdb.h:150: syntax error before `1'
/usr/local/include/sybdb.h:177: syntax error before `1'
/usr/local/include/sybdb.h:204: syntax error before `1'
/usr/local/include/sybdb.h:210: syntax error before `1'
/usr/local/include/sybdb.h:281: syntax error before `1'
/usr/local/include/sybdb.h:285: syntax error before `1'
/usr/local/include/sybdb.h:339: syntax error before `1'
/usr/local/include/sybdb.h:453: syntax error before `1'
cpp0: output pipe has been closed


i have traced this error to the fact that
"ext/mime_magic/php_mime_magic.h" has lines 61 & 62:
#define BYTE    1
#define SHORT    2

the errors from the freetds headers above refer to lines:
103:typedef short    SHORT;
150:typedef unsigned char BYTE;
177:        BYTE    *terminator;
204:        BYTE    *data;
and so on....

i was able to compile successfully by changing the order of the
following 2 lines in main/internal_functions.c:

#include "ext/mime_magic/php_mime_magic.h"
#include "ext/mssql/php_mssql.h"

to

#include "ext/mssql/php_mssql.h"
#include "ext/mime_magic/php_mime_magic.h"




------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=25155&edit=1

Reply via email to