|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-08-19 17:13 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Feb 16 23:00:01 2026 UTC |
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"