diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-05-23 19:28:45 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-05-23 19:28:45 +0000 |
commit | 5d9062f939784167027b8b3cb75f098750987cfe (patch) | |
tree | a598ee1c8fb277e9d4bb31a5e90be4d8d2c7764f /src/interfaces/libpq/fe-misc.c | |
parent | c8f345024d262fcd3d14ac17fa8644b78c805d4b (diff) | |
download | postgresql-5d9062f939784167027b8b3cb75f098750987cfe.tar.gz postgresql-5d9062f939784167027b8b3cb75f098750987cfe.zip |
Avoid duplicate definition of LOCALEDIR in pg_config.h, already defined
in port/pg_config_paths.h.
Diffstat (limited to 'src/interfaces/libpq/fe-misc.c')
-rw-r--r-- | src/interfaces/libpq/fe-misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-misc.c b/src/interfaces/libpq/fe-misc.c index f2af0e3b949..5c113ae988d 100644 --- a/src/interfaces/libpq/fe-misc.c +++ b/src/interfaces/libpq/fe-misc.c @@ -23,7 +23,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-misc.c,v 1.126 2006/05/18 18:19:47 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-misc.c,v 1.127 2006/05/23 19:28:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -60,6 +60,7 @@ #include "libpq-int.h" #include "pqsignal.h" #include "mb/pg_wchar.h" +#include "pg_config_paths.h" static int pqPutMsgBytes(const void *buf, size_t len, PGconn *conn); |