mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
Fix compilation on Cygwin.
This commit is contained in:
@@ -4,15 +4,15 @@ include $(top_builddir)/src/Makefile.global
|
||||
|
||||
all install installdirs uninstall dep depend distprep:
|
||||
$(MAKE) -C include $@
|
||||
$(MAKE) -C ecpglib $@
|
||||
$(MAKE) -C pgtypeslib $@
|
||||
$(MAKE) -C ecpglib $@
|
||||
$(MAKE) -C compatlib $@
|
||||
$(MAKE) -C preproc $@
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
-$(MAKE) -C include $@
|
||||
-$(MAKE) -C ecpglib $@
|
||||
-$(MAKE) -C pgtypeslib $@
|
||||
-$(MAKE) -C ecpglib $@
|
||||
-$(MAKE) -C compatlib $@
|
||||
-$(MAKE) -C preproc $@
|
||||
-$(MAKE) -C test clean
|
||||
|
@@ -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
|
||||
|
||||
|
@@ -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;
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#
|
||||
# Copyright (c) 1994, Regents of the University of California
|
||||
#
|
||||
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.2 2003/04/08 17:09:01 tgl Exp $
|
||||
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.3 2003/05/22 17:20:44 petere Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
@@ -21,7 +21,7 @@ override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(libpq_srcdi
|
||||
OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
|
||||
connect.o misc.o
|
||||
|
||||
SHLIB_LINK= $(libpq)
|
||||
SHLIB_LINK = -L../pgtypeslib -lpgtypes $(libpq)
|
||||
|
||||
all: all-lib
|
||||
|
||||
|
Reference in New Issue
Block a user