80477122a0
PostgreSQL 9.2 will ship with native JSON support, covering indexes, replication and performance improvements, and many more features. We are eagerly awaiting this release and will make it available in Early Access as soon as it’s released by the PostgreSQL community," said Ines Sombra, Lead Data Engineer, Engine Yard.
15 lines
549 B
Text
15 lines
549 B
Text
$NetBSD: patch-src_backend_Makefile,v 1.1 2012/10/05 21:03:10 adam Exp $
|
|
|
|
--- src/backend/Makefile.orig 2010-07-05 18:54:37.000000000 +0000
|
|
+++ src/backend/Makefile
|
|
@@ -17,6 +17,10 @@ subdir = src/backend
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
+CFLAGS+= $(DL_CFLAGS)
|
|
+LDFLAGS+= $(DL_LDFLAGS)
|
|
+LIBS+= $(DL_LIBS)
|
|
+
|
|
SUBDIRS = access bootstrap catalog parser commands executor foreign lib libpq \
|
|
main nodes optimizer port postmaster regex replication rewrite \
|
|
storage tcop tsearch utils $(top_builddir)/src/timezone
|