diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-03-26 09:34:17 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-03-26 09:34:17 +0000 |
commit | 80c6843e6ba654fa0dcd7864b5aa8f495e70c032 (patch) | |
tree | c51beb986d87c325566f9cdcd521a408d765df78 | |
parent | 46f4cdeb7adddf270aef3d7222934c9fa512843a (diff) | |
download | postgresql-80c6843e6ba654fa0dcd7864b5aa8f495e70c032.tar.gz postgresql-80c6843e6ba654fa0dcd7864b5aa8f495e70c032.zip |
Add multibyte support
-rw-r--r-- | src/interfaces/odbc/GNUmakefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/interfaces/odbc/GNUmakefile b/src/interfaces/odbc/GNUmakefile index 2fd66c93e78..830dd699c25 100644 --- a/src/interfaces/odbc/GNUmakefile +++ b/src/interfaces/odbc/GNUmakefile @@ -2,7 +2,7 @@ # # GNUMakefile for psqlodbc (Postgres ODBC driver) # -# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.14 2001/02/20 19:20:29 petere Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.15 2001/03/26 09:34:17 inoue Exp $ # #------------------------------------------------------------------------- @@ -23,6 +23,10 @@ OBJS = info.o bind.o columninfo.o connection.o convert.o drvconn.o \ pgtypes.o psqlodbc.o qresult.o results.o socket.o parse.o statement.o \ gpps.o tuple.o tuplelist.o dlg_specific.o $(OBJX) +ifdef MULTIBYTE +OBJS += multibyte.o +endif + SHLIB_LINK = $(filter -lm, $(LIBS)) all: all-lib |