]> granicus.if.org Git - postgresql/commitdiff
Results from buildfarm show that ecpglib was depending on pg_strcasecmp,
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 4 Oct 2007 20:54:08 +0000 (20:54 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 4 Oct 2007 20:54:08 +0000 (20:54 +0000)
which evidently it got as an unofficial export from pgtypeslib.

src/interfaces/ecpg/ecpglib/Makefile

index 087f656dd3c2e5e1e343e3ece860e566c146c383..5b019aead47708f4da0aa891884e914f7faf83b0 100644 (file)
@@ -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