Skip to content

Commit

Permalink
--without-shared-libs was linking libdovecot.so to mail binaries.
Browse files Browse the repository at this point in the history
Broken by e42dd71.
  • Loading branch information
sirainen authored and GitLab committed Aug 1, 2016
1 parent a63cd84 commit 6d38e3f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/lib-storage/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,21 @@ shlibs = \
index/libstorage_index.la \
register/libstorage_register.la \
../lib-index/libindex.la \
../lib-imap-storage/libimap-storage.la \
../lib-dovecot/libdovecot.la
../lib-imap-storage/libimap-storage.la

libstorage_la_LIBADD = $(shlibs)
libstorage_la_DEPENDENCIES = $(shlibs)

pkglib_LTLIBRARIES = libdovecot-storage.la
libdovecot_storage_la_SOURCES =
libdovecot_storage_la_LIBADD = libstorage.la $(LINKED_STORAGE_LDADD)
libdovecot_storage_la_DEPENDENCIES = libstorage.la
libdovecot_storage_la_LIBADD = \
libstorage.la \
../lib-dovecot/libdovecot.la \
$(LINKED_STORAGE_LDADD)
libdovecot_storage_la_DEPENDENCIES = \
libstorage.la \
../lib-dovecot/libdovecot.la \
$(LIBDOVECOT_DEPS)
libdovecot_storage_la_LDFLAGS = -export-dynamic

test_programs = \
Expand Down

0 comments on commit 6d38e3f

Please sign in to comment.