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.
This commit is contained in:
Bruce Momjian 2005-03-20 02:39:33 +00:00
parent 1c14db5a77
commit 614fcbeba7

View File

@ -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