aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-10-04 20:54:08 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-10-04 20:54:08 +0000
commit8dfca24b6b55ddba58d3e4d32916ea5a2c8e744e (patch)
treefca37806ac5b0d0494a7928b74354225f9b278dc
parent89db887b1edbeac7d7070e566606bbea4792f7f6 (diff)
downloadpostgresql-8dfca24b6b55ddba58d3e4d32916ea5a2c8e744e.tar.gz
postgresql-8dfca24b6b55ddba58d3e4d32916ea5a2c8e744e.zip
Results from buildfarm show that ecpglib was depending on pg_strcasecmp,
which evidently it got as an unofficial export from pgtypeslib.
-rw-r--r--src/interfaces/ecpg/ecpglib/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/interfaces/ecpg/ecpglib/Makefile b/src/interfaces/ecpg/ecpglib/Makefile
index 087f656dd3c..5b019aead47 100644
--- a/src/interfaces/ecpg/ecpglib/Makefile
+++ b/src/interfaces/ecpg/ecpglib/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.51 2007/10/04 18:32:07 tgl Exp $
+# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.52 2007/10/04 20:54:08 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -25,7 +25,7 @@ override CFLAGS += $(PTHREAD_CFLAGS)
LIBS := $(filter-out -lpgport, $(LIBS))
OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
- connect.o misc.o path.o \
+ connect.o misc.o path.o pgstrcasecmp.o \
$(filter snprintf.o strlcpy.o, $(LIBOBJS))
# thread.c is needed only for non-WIN32 implementation of path.c
@@ -51,7 +51,7 @@ include $(top_srcdir)/src/Makefile.shlib
# necessarily use the same object files as the backend uses. Instead,
# symlink the source files in here and build our own object file.
-path.c snprintf.c strlcpy.c thread.c: % : $(top_srcdir)/src/port/%
+path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c: % : $(top_srcdir)/src/port/%
rm -f $@ && $(LN_S) $< .
path.o: path.c $(top_builddir)/src/port/pg_config_paths.h
@@ -113,4 +113,5 @@ installdirs:
uninstall: uninstall-lib
clean distclean maintainer-clean: clean-lib
- rm -f $(OBJS) path.c snprintf.c strlcpy.c thread.c exports.list
+ rm -f $(OBJS)
+ rm -f path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c exports.list