In article <[EMAIL PROTECTED]>, David Masure <[EMAIL PROTECTED]> wrote: > > I want to use the cdr to record the call log to my Microsoft SQL Server > using unixodbc and freetds.... > > but when I compile, I've got this message.... > > Does anyone have the same problem and/or know how to solve it ?
Looks like you probably have version 0.63 of FreeTDS. That version is incompatible with cdr_tds, but if you're using ODBC you should be fine. However, you will need to tell the Makefile not to compile cdr_tds, by commenting out the following two lines in cdr/Makefile: MODS+=$(shell if [ -f "/usr/include/tds.h" ]; then echo "cdr_tds.so"; fi) MODS+=$(shell if [ -f "/usr/local/include/tds.h" ]; then echo "cdr_tds.so"; fi) Cheers Tony -- Tony Mountifield Work: [EMAIL PROTECTED] - http://www.softins.co.uk Play: [EMAIL PROTECTED] - http://tony.mountifield.org _______________________________________________ Asterisk-Users mailing list [email protected] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
