Обсуждение: Missing header files in psqlODBC

Поиск
Список
Период
Сортировка

Missing header files in psqlODBC

От
"Johann Zuschlag"
Дата:
Hi,

the headerfiles below are missing in psqlODBC cvs.
I guess there are the same like in PostgreSQL.

(md5.c)
#ifndef MD5_ODBC
#include "postgres.h"
#include "libpq/crypt.h"
#else
#include "md5.h"
#endif

regards


Johann Zuschlag
zuschlag2@online.de



Re: Missing header files in psqlODBC

От
Bruce Momjian
Дата:
> Hi,
>
> the headerfiles below are missing in psqlODBC cvs.
> I guess there are the same like in PostgreSQL.
>
> (md5.c)
> #ifndef MD5_ODBC
> #include "postgres.h"
> #include "libpq/crypt.h"
> #else
> #include "md5.h"
> #endif

I am confused.  Is there a separate odbc-only CVS?  How do they get
sync'ed up?

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@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

Re: Missing header files in psqlODBC

От
"Hiroshi Inoue"
Дата:
> -----Original Message-----
> From: Johann Zuschlag
>
> Hi,
>
> the headerfiles below are missing in psqlODBC cvs.
> I guess there are the same like in PostgreSQL.
>
> (md5.c)
> #ifndef MD5_ODBC
> #include "postgres.h"
> #include "libpq/crypt.h"
> #else
> #include "md5.h"
> #endif

md5.c is used in many places i.e backend, libpq frontend ...
FRONTEND and/or MD5_ODBC must be defined as
occasion demands. In order to compile md5.c for psqlodbc
driver, both FRONTEND and MD5_ODBC must be defined.
If you are using your own project, please use win_md5.c
instead of md5.c.

regards,
Hiroshi Inoue