Did this (to make sure I started from scratch):<br><br>rm -rf /usr/src/freeswitch.trunk<br>rm -rf /usr/local/freeswitch<br>svn checkout <a href="http://svn.freeswitch.org/svn/freeswitch/trunk">http://svn.freeswitch.org/svn/freeswitch/trunk</a> freeswitch.trunk<br>
cd freeswitch.trunk/<br>./bootstrap.sh<br>./configure<br>make<br><br>... and then it pukes all over the place with errors compiling odbc support ... but I thought that odbc was disabled by default.<br><br>Errors look like this:<br>
<br>Compiling src/switch_odbc.c ...<br>In file included from src/switch_odbc.c:33:<br>./src/include/switch_odbc.h:36:17: error: sql.h: No such file or directory<br>./src/include/switch_odbc.h:43:20: error: sqlext.h: No such file or directory<br>
./src/include/switch_odbc.h:45:22: error: sqltypes.h: No such file or directory<br>In file included from src/switch_odbc.c:33:<br>./src/include/switch_odbc.h:66: error: expected declaration specifiers or '...' before 'SQLHSTMT'<br>
./src/include/switch_odbc.h:96: error: expected declaration specifiers or '...' before 'SQLHSTMT'<br>src/switch_odbc.c:43: error: expected specifier-qualifier-list before 'SQLHENV'<br>src/switch_odbc.c: In function 'switch_odbc_handle_new':<br>
src/switch_odbc.c:76: error: 'switch_odbc_handle_t' has no member named 'env'<br>src/switch_odbc.c:76: error: 'SQL_NULL_HANDLE' undeclared (first use in this function)<br>src/switch_odbc.c:76: error: (Each undeclared identifier is reported only once<br>
src/switch_odbc.c:76: error: for each function it appears in.)<br>src/switch_odbc.c:77: error: 'switch_odbc_handle_t' has no member named 'state'<br>src/switch_odbc.c: In function 'switch_odbc_handle_disconnect':<br>
src/switch_odbc.c:96: error: 'switch_odbc_handle_t' has no member named 'state'<br>cc1: warnings being treated as errors<br>src/switch_odbc.c:97: warning: implicit declaration of function 'SQLDisconnect'<br>
src/switch_odbc.c:97: error: 'switch_odbc_handle_t' has no member named 'con'<br>src/switch_odbc.c:105: error: 'switch_odbc_handle_t' has no member named 'state'<br>src/switch_odbc.c: In function 'switch_odbc_handle_connect':<br>
src/switch_odbc.c:113: error: 'SQLINTEGER' undeclared (first use in this function)<br>src/switch_odbc.c:113: error: expected ';' before 'err'<br>src/switch_odbc.c:116: error: 'SQLSMALLINT' undeclared (first use in this function)<br>
src/switch_odbc.c:116: error: expected ';' before 'valueLength'<br><br><br>SDR<br>