From: Bruce Momjian Date: Sun, 20 Mar 2005 02:39:33 +0000 (+0000) Subject: Mark snprintf.c as a file that uses FRONTEND and needs to a version in X-Git-Tag: REL8_1_0BETA1~1172 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=614fcbeba76d4ecdb08bf7b963f2e6449722479b;p=postgresql Mark snprintf.c as a file that uses FRONTEND and needs to a version in the server-side port library. Somehow I missed that change when I added memory allocation to snprintf.c. --- diff --git a/src/port/Makefile b/src/port/Makefile index f8748e2a29..85a690fbc2 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -15,7 +15,7 @@ # for use only by the backend binaries # # IDENTIFICATION -# $PostgreSQL: pgsql/src/port/Makefile,v 1.21 2004/10/27 11:51:40 neilc Exp $ +# $PostgreSQL: pgsql/src/port/Makefile,v 1.22 2005/03/20 02:39:33 momjian Exp $ # #------------------------------------------------------------------------- @@ -31,6 +31,7 @@ LIBOBJS_SRV := $(LIBOBJS) LIBOBJS_SRV := $(patsubst dirmod.o,dirmod_srv.o, $(LIBOBJS_SRV)) LIBOBJS_SRV := $(patsubst exec.o,exec_srv.o, $(LIBOBJS_SRV)) LIBOBJS_SRV := $(patsubst getaddrinfo.o,getaddrinfo_srv.o, $(LIBOBJS_SRV)) +LIBOBJS_SRV := $(patsubst snprintf.o,snpritnf_srv.o, $(LIBOBJS_SRV)) LIBOBJS_SRV := $(patsubst thread.o,thread_srv.o, $(LIBOBJS_SRV)) all: libpgport.a libpgport_srv.a