aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/compatlib
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-05-22 17:20:44 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-05-22 17:20:44 +0000
commit6fabec242d91e655091ce1428fb717f36b82929b (patch)
treee7663302eb9429c2882b190d1095aa7d310287c5 /src/interfaces/ecpg/compatlib
parentcef0652a3d88baeca25459902657c94c1e360682 (diff)
downloadpostgresql-6fabec242d91e655091ce1428fb717f36b82929b.tar.gz
postgresql-6fabec242d91e655091ce1428fb717f36b82929b.zip
Fix compilation on Cygwin.
Diffstat (limited to 'src/interfaces/ecpg/compatlib')
-rw-r--r--src/interfaces/ecpg/compatlib/Makefile3
-rw-r--r--src/interfaces/ecpg/compatlib/informix.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile
index c7bc8ef84ec..b87275c6f5e 100644
--- a/src/interfaces/ecpg/compatlib/Makefile
+++ b/src/interfaces/ecpg/compatlib/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.3 2003/04/16 05:23:55 tgl Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.4 2003/05/22 17:20:44 petere Exp $
#
#-------------------------------------------------------------------------
@@ -17,6 +17,7 @@ SO_MAJOR_VERSION= 1
SO_MINOR_VERSION= 0.0
override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(top_srcdir)/src/include/utils $(CPPFLAGS)
+SHLIB_LINK = -L../pgtypeslib -lpgtypes
OBJS= informix.o
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c
index 27d2f9acd79..078cc1b2959 100644
--- a/src/interfaces/ecpg/compatlib/informix.c
+++ b/src/interfaces/ecpg/compatlib/informix.c
@@ -55,7 +55,7 @@ deccopy(Numeric *src, Numeric *target)
}
static char *
-strndup(char *str, int len)
+strndup(const char *str, size_t len)
{
int real_len = strlen(str);
int use_len = (real_len > len) ? len : real_len;