diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-10-26 11:23:29 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-10-26 11:23:29 +0000 |
commit | 38591db0fde6c9ad95abd65f10d82b8f62d39740 (patch) | |
tree | 9034a46b0945ec6819f240280d772c65317ff677 /ext/collators | |
parent | 466e7ade5c5c996802b5eb5d1624d9357afbcb5c (diff) | |
download | mongo-38591db0fde6c9ad95abd65f10d82b8f62d39740.tar.gz |
Rename the WiredTiger installed libraries to libwiredtiger_XXX.
Quit installing the nop and reverse_collator libraries.
Rename the session.create block_compressor configuration strings
"bzip2_compress" to "bzip2", and "snappy_compress" to "snappy".
Add documentation for configuring the built-in bzip2 and snappy
configuration in applications.
Diffstat (limited to 'ext/collators')
-rw-r--r-- | ext/collators/reverse/Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/collators/reverse/Makefile.am b/ext/collators/reverse/Makefile.am index 4221d6fa4e3..5cfde94d847 100644 --- a/ext/collators/reverse/Makefile.am +++ b/ext/collators/reverse/Makefile.am @@ -1,4 +1,10 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir)/src/include -lib_LTLIBRARIES = reverse_collator.la -reverse_collator_la_LDFLAGS = -avoid-version -module +noinst_LTLIBRARIES = libwiredtiger_reverse_collator.la +libwiredtiger_reverse_collator_la_SOURCES = reverse_collator.c + +# libtool hack: noinst_LTLIBRARIES turns off building shared libraries as well +# as installation, it will only build static libraries. As far as I can tell, +# the "approved" libtool way to turn them back on is by adding -rpath. +libwiredtiger_reverse_collator_la_LDFLAGS = \ + -avoid-version -module -rpath /nowhere |