| 17 | |
| 18 | |
| 19 | Anyway the ultimate problem seems to me as strk suggested is that SQL preprocessor is not being picked up which would suggest something wrong with you cpp configuration. |
| 20 | |
| 21 | |
| 22 | Note how my configure on Ubuntu returns this: |
| 23 | |
| 24 | |
| 25 | {{{ |
| 26 | -------------- Compiler Info ------------- |
| 27 | C compiler: gcc -g -O2 |
| 28 | SQL preprocessor: /usr/bin/cpp -traditional-cpp -w -P |
| 29 | |
| 30 | -------------- Dependencies -------------- |
| 31 | |
| 32 | }}} |
| 33 | |
| 34 | And your SQL preprocessor line reads: |
| 35 | |
| 36 | |
| 37 | {{{ |
| 38 | -------------- Compiler Info ------------- |
| 39 | C compiler: gcc -g -O2 |
| 40 | SQL preprocessor: |
| 41 | }}} |
| 42 | |
| 43 | so you got to figure out what's up with your cpp. |