diff options
| author | Gergely Nagy <algernon@balabit.hu> | 2012-04-13 14:38:26 +0200 |
|---|---|---|
| committer | Gergely Nagy <algernon@balabit.hu> | 2012-04-13 14:38:26 +0200 |
| commit | a6314787aba77b94ec4d33d72678a66d31bce0c8 (patch) | |
| tree | f593804f728af760cf7de6bf9b73fbae3ee40b6b | |
| parent | 61ddecc3147ac6f2438995f215211fa84f7962a9 (diff) | |
| download | libumberlog-a6314787aba77b94ec4d33d72678a66d31bce0c8.tar.gz libumberlog-a6314787aba77b94ec4d33d72678a66d31bce0c8.tar.xz libumberlog-a6314787aba77b94ec4d33d72678a66d31bce0c8.zip | |
Do use the library version
We had the LUL_* variables set in lib/Makefile.am, but they weren't
used. Now they are.
While there, bumped LUL_CURRENT to 1, because of the dropped JSON
dependency.
Signed-off-by: Gergely Nagy <algernon@balabit.hu>
| -rw-r--r-- | lib/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 672ebf6..169b0b2 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,9 +1,10 @@ -LUL_CURRENT = 0 +LUL_CURRENT = 1 LUL_REVISION = 0 LUL_AGE = 0 lib_LTLIBRARIES = libumberlog.la -libumberlog_la_LDFLAGS = -Wl,--version-script,${srcdir}/libumberlog.ld +libumberlog_la_LDFLAGS = -Wl,--version-script,${srcdir}/libumberlog.ld \ + -version-info ${LUL_CURRENT}:${LUL_REVISION}:${LUL_AGE} libumberlog_la_SOURCES = umberlog.c umberlog.h buffer.c buffer.h |
