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-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=fb29cccf6d256b8266cb630b7ba5ab8fba540a86;p=users%2Fbernd%2Fpostgres.git 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 d6b35eb434..bdf7bb998a 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -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