4d27560758
- unbreak modules; when any module was enabled pdns_server was failing to start up(!). Brad traced this to a LINK_SPEC problem and came up with the workaround in patch-configure_in, thanks very much! - set SHARED_ONLY and merge PFRAG.shared into PLISTs; PowerDNS itself can work static-only, but you need to compile-in the relevant modules, which doesn't mix well with MULTI_PACKAGES. mysql backend is tested; other backends not yet, but this is a big improvement on what's there at the moment.
16 lines
561 B
Plaintext
16 lines
561 B
Plaintext
$OpenBSD: patch-modules_gpgsqlbackend_Makefile_in,v 1.2 2009/06/23 22:59:57 sthen Exp $
|
|
|
|
libcrypt doesn't exist on OpenBSD.
|
|
|
|
--- modules/gpgsqlbackend/Makefile.in.orig Sun Jan 25 20:24:46 2009
|
|
+++ modules/gpgsqlbackend/Makefile.in Mon Jun 22 23:52:31 2009
|
|
@@ -224,7 +224,7 @@ libgpgsqlbackend_la_SOURCES = gpgsqlbackend.cc gpgsqlb
|
|
libgpgsqlbackend_la_LDFLAGS = -module -avoid-version @PGSQL_lib@ -Wl,-Bstatic -lpq \
|
|
-Wl,-Bdynamic
|
|
|
|
-libgpgsqlbackend_la_LIBADD = -lssl -lcrypt -lcrypto
|
|
+libgpgsqlbackend_la_LIBADD = -lssl -lcrypto
|
|
all: all-am
|
|
|
|
.SUFFIXES:
|