Re: freeTDS make error
"James K. Lowden" <[email protected]>
| Newsgroups | gmane.comp.db.tds.freetds |
|---|---|
| Message-ID | <[email protected]> |
nitin sayare wrote: > > ./configure --with-tdsver=8.0 --disable-debug --withodbc-nodm=<DIR>. > Here, <DIR> is the path of the directory containing the header files > (e.g sql.h, sqltypes.h, etc fron the unixODBC package.) > > The configure works well and doesn't give any error, but > when I > try the make utility, it give errors > as "No such file or directory" for sql.h and other files. $ ./configure --help | grep nodm --with-odbc-nodm=DIR build odbc using headers in DIR/include The DIR argument should be the directory holding the include directory, not the files themselves. For /usr/local/include/sql.h, use --with-odbdc-nodm=/usr/local. HTH. --jkl