Thread: postgresql-6.5.2/src/interfaces/odbc/gpps.h
All files in the odbc directory contain gcc-style comments (//), which is completely unnecessary and causing work when compiling with a C-compiler. That is, I deleted all comments by applying the following to all files: #!/bin/sh cp $1 /tmp/$1.copy; sed 's/\/\/.*$//g' /tmp/$1.copy > $1 -- Peter Schäfer - mailto:schaefer@cys.de, schaefer@dfu.de
[Charset iso-8859-1 unsupported, filtering to ASCII...] > All files in the odbc directory contain gcc-style comments (//), which > is completely unnecessary and causing work when compiling with a C-compiler. > That is, I deleted all comments by applying the following to all files: > #!/bin/sh > cp $1 /tmp/$1.copy; sed 's/\/\/.*$//g' /tmp/$1.copy > $1 I agree they shouldn't be there, but the ODBC stuff is maintained outside the PostgreSQL development group. See http://www.insightdist.com/psqlodbc and see if you can get them to change it. -- Bruce Momjian | http://www.op.net/~candle maillist@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026