diff options
author | Neil Conway <neilc@samurai.com> | 2004-09-27 04:18:28 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-09-27 04:18:28 +0000 |
commit | cb7fc63d3e3f985049a88239eb3b1d7393b3e552 (patch) | |
tree | 45e337482f2a55f65da415dac09ea210779efa35 /src/backend | |
parent | 64a60590ba5da8026abb65a7abe8fce9e573c476 (diff) | |
download | postgresql-cb7fc63d3e3f985049a88239eb3b1d7393b3e552.tar.gz postgresql-cb7fc63d3e3f985049a88239eb3b1d7393b3e552.zip |
Remove references to the ODBC driver from the main source tree. From Kris
Jurka.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/libpq/md5.c | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/src/backend/libpq/md5.c b/src/backend/libpq/md5.c index 56844994bd2..f67dca9f006 100644 --- a/src/backend/libpq/md5.c +++ b/src/backend/libpq/md5.c @@ -14,19 +14,11 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/md5.c,v 1.25 2004/08/29 04:12:32 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/md5.c,v 1.26 2004/09/27 04:18:28 neilc Exp $ */ -/* - * NOTE: - * - * There are two copies of this file, one in backend/libpq and another - * in interfaces/odbc. They should be identical. This is done so ODBC - * can be compiled stand-alone. - */ - -#if ! defined(MD5_ODBC) && ! defined(FRONTEND) +#if ! defined(FRONTEND) #include "postgres.h" #include "libpq/crypt.h" #endif @@ -34,18 +26,12 @@ #ifdef FRONTEND #include "postgres_fe.h" #include "libpq/crypt.h" -#endif /* FRONTEND */ -#ifdef MD5_ODBC -#include "md5.h" -#endif - -#ifdef FRONTEND #undef palloc #define palloc malloc #undef pfree #define pfree free -#endif +#endif /* FRONTEND */ /* |