1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Make libpgport be front-end only and make libpgport_srv be a backend

library that uses palloc, ereport, etc.  This simplifies the makefiles
for client applications.
This commit is contained in:
Bruce Momjian
2004-10-04 13:43:59 +00:00
parent 3da69bd18c
commit 24201b4bc6
12 changed files with 109 additions and 95 deletions

View File

@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.104 2004/08/01 18:07:42 tgl Exp $
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.105 2004/10/04 13:43:54 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -26,6 +26,8 @@ ifeq ($(PORTNAME), qnx4)
OBJS+= bootstrap/bootstrap.o
endif
# Use server version of port library
LIBS := $(patsubst -lpgport,-lpgport_srv, $(LIBS))
##########################################################################