We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent8df6b2b commit3eb9b73Copy full SHA for 3eb9b73
src/interfaces/odbc/GNUmakefile
@@ -2,7 +2,7 @@
2
#
3
# GNUMakefile for psqlodbc (Postgres ODBC driver)
4
5
-# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.6 2000/10/23 21:43:58 petere Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.7 2000/10/28 15:10:36 petere Exp $
6
7
#-------------------------------------------------------------------------
8
@@ -23,7 +23,7 @@ OBJS = info.o bind.o columninfo.o connection.o convert.o drvconn.o \
23
pgtypes.o psqlodbc.o qresult.o results.o socket.o parse.o statement.o\
24
gpps.o tuple.o tuplelist.o dlg_specific.o$(OBJX)
25
26
-SHLIB_LINK=-lm
+SHLIB_LINK =$(filter-lm,$(LIBS))
27
28
all: all-lib
29
src/interfaces/odbc/bind.c
@@ -24,6 +24,7 @@
#include"pgtypes.h"
#include<stdlib.h>
#include<malloc.h>
+#include<string.h>
#ifndefWIN32
30
#include"iodbc.h"
src/interfaces/odbc/environ.c
@@ -18,6 +18,7 @@
18
#include"statement.h"
19
20
21
22
/* The one instance of the handles */
ConnectionClass*conns[MAX_CONNECTIONS];
src/interfaces/odbc/options.c
#endif
#include"psqlodbc.h"