diff options
author | Michael Meskes <meskes@postgresql.org> | 2012-12-04 16:35:18 +0100 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2012-12-04 16:44:22 +0100 |
commit | ac99ca68d76947f438fb7e4b98d7c4ef32b1a4af (patch) | |
tree | 773815b619fdec885b9b6182cc739cea1c277e03 /src/interfaces | |
parent | 90991c40ebb4f05800a7a3e4da2df7732a1ebe62 (diff) | |
download | postgresql-ac99ca68d76947f438fb7e4b98d7c4ef32b1a4af.tar.gz postgresql-ac99ca68d76947f438fb7e4b98d7c4ef32b1a4af.zip |
Include isinf.o in libecpg if isinf() is not available on the system.
Patch done by Jiang Guiqing <jianggq@cn.fujitsu.com>.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ecpglib/Makefile b/src/interfaces/ecpg/ecpglib/Makefile index 565df3c7357..daac615c1a2 100644 --- a/src/interfaces/ecpg/ecpglib/Makefile +++ b/src/interfaces/ecpg/ecpglib/Makefile @@ -26,7 +26,7 @@ LIBS := $(filter-out -lpgport, $(LIBS)) OBJS= execute.o typename.o descriptor.o sqlda.o data.o error.o prepare.o memory.o \ connect.o misc.o path.o pgstrcasecmp.o \ - $(filter snprintf.o strlcpy.o win32setlocale.o, $(LIBOBJS)) + $(filter snprintf.o strlcpy.o win32setlocale.o isinf.o, $(LIBOBJS)) # thread.c is needed only for non-WIN32 implementation of path.c ifneq ($(PORTNAME), win32) @@ -57,7 +57,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 pgstrcasecmp.c snprintf.c strlcpy.c thread.c win32setlocale.c: % : $(top_srcdir)/src/port/% +path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c win32setlocale.c isinf.c: % : $(top_srcdir)/src/port/% rm -f $@ && $(LN_S) $< . misc.o: misc.c $(top_builddir)/src/port/pg_config_paths.h |