Displaying 5 results from an estimated 5 matches for "pkglib_ltlibrari".
Did you mean:
pkglib_ltlibraries
2012 Feb 24
3
Dovecot 2.1 with custom OpenSSL fails to build
Hello Dovecot users!
There seems to be a new dependency in some modules (eg, lib-storage,
libdovecot-lda, libdovecot-ssl) on OpenSSL. In Dovecot 2.0, those
modules didn't require OpenSSL, but 2.1 does.
For the linking process the path to the OpenSSL library isn't
specified properly (SSL_LIBS). Dovecot fails to build if OpenSSL
is in a non-standard path. (Haven't checked if SSL_CFLAGS
2020 Feb 16
0
[nbdkit PATCH v4 1/4] server: Export nbdkit_set_dlopen_prefix function
..._parse_size (const char *str);
extern int nbdkit_parse_bool (const char *str);
diff --git a/server/Makefile.am b/server/Makefile.am
index 9351fefc..b6728511 100644
--- a/server/Makefile.am
+++ b/server/Makefile.am
@@ -33,6 +33,7 @@ include $(top_srcdir)/common-rules.mk
EXTRA_DIST = nbdkit.syms
+pkglib_LTLIBRARIES = nbdkit-shim-dlopen.la
sbin_PROGRAMS = nbdkit
nbdkit_SOURCES = \
@@ -71,6 +72,17 @@ if ENABLE_LIBFUZZER
nbdkit_SOURCES += fuzzer.c
endif
+nbdkit_shim_dlopen_la_SOURCES = shim.c
+nbdkit_shim_dlopen_la_CPPFLAGS = \
+ -I$(top_srcdir)/common/utils \
+ $(NULL)
+nbdkit_shim_dlopen_la_CFLAGS = $(...
2011 Sep 01
15
v2.1.alpha1 released
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz.sig
So it's time for the first alpha version of Dovecot v2.1. There are no
huge intrusive changes, so I expect v2.1.0 to be released this year
(maybe even in a few months?)
The biggest changes are related to full text search handling. I'll
probably still make
2011 Sep 01
15
v2.1.alpha1 released
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz.sig
So it's time for the first alpha version of Dovecot v2.1. There are no
huge intrusive changes, so I expect v2.1.0 to be released this year
(maybe even in a few months?)
The biggest changes are related to full text search handling. I'll
probably still make
2020 Feb 16
6
[nbdkit PATCH v4 0/4] vddk: Drive library loading from libdir parameter.
I'm a lot happier with this version: no mucking with dlmopen(). It
does add a bit more coupling between nbdkit proper and the vddk plugin
(namely, nbdkit now exports a new function that the vddk plugin relies
on), but patch 2 adds testsuite coverage of the new function so we
shouldn't regress.
Patch 1 and 2 are new, patch 3 is unchanged from when Rich posted it
in v2, and patch 4 is