Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 614fcbe

Browse files
committed
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.
1 parent 1c14db5 commit 614fcbe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/port/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# for use only by the backend binaries
1616
#
1717
# IDENTIFICATION
18-
# $PostgreSQL: pgsql/src/port/Makefile,v 1.21 2004/10/27 11:51:40 neilc Exp $
18+
# $PostgreSQL: pgsql/src/port/Makefile,v 1.22 2005/03/20 02:39:33 momjian Exp $
1919
#
2020
#-------------------------------------------------------------------------
2121

@@ -31,6 +31,7 @@ LIBOBJS_SRV := $(LIBOBJS)
3131
LIBOBJS_SRV := $(patsubst dirmod.o,dirmod_srv.o, $(LIBOBJS_SRV))
3232
LIBOBJS_SRV := $(patsubst exec.o,exec_srv.o, $(LIBOBJS_SRV))
3333
LIBOBJS_SRV := $(patsubst getaddrinfo.o,getaddrinfo_srv.o, $(LIBOBJS_SRV))
34+
LIBOBJS_SRV := $(patsubst snprintf.o,snpritnf_srv.o, $(LIBOBJS_SRV))
3435
LIBOBJS_SRV := $(patsubst thread.o,thread_srv.o, $(LIBOBJS_SRV))
3536

3637
all: libpgport.a libpgport_srv.a

0 commit comments

Comments
 (0)