You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2012/03/30 02:19:41 UTC

git commit: Fix tsconfig library to have a version #.

Updated Branches:
  refs/heads/master e4dcba3ba -> 965c3e629


Fix tsconfig library to have a version #.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/965c3e62
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/965c3e62
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/965c3e62

Branch: refs/heads/master
Commit: 965c3e629e98c1678b25b888f6af45de5b9b9c85
Parents: e4dcba3
Author: Alan M. Carroll <am...@network-geographics.com>
Authored: Thu Mar 29 19:19:12 2012 -0500
Committer: Alan M. Carroll <am...@network-geographics.com>
Committed: Thu Mar 29 19:19:12 2012 -0500

----------------------------------------------------------------------
 lib/tsconfig/Makefile.am |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/965c3e62/lib/tsconfig/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/tsconfig/Makefile.am b/lib/tsconfig/Makefile.am
index 622d411..dde3ec0 100644
--- a/lib/tsconfig/Makefile.am
+++ b/lib/tsconfig/Makefile.am
@@ -18,13 +18,13 @@
 
 lib_LTLIBRARIES = libtsconfig.la
 noinst_PROGRAMS = test-tsconfig
+libtsconfig_la_LDFLAGS = -no-undefined -version-info @TS_LIBTOOL_VERSION@
 
 AM_YFLAGS = -d -p tsconfig
 
 AM_CPPFLAGS = \
   -I$(top_srcdir)/lib
 
-
 BUILT_SOURCES = \
   TsConfigGrammar.c TsConfigGrammar.h TsConfigGrammar.hpp \
   TsConfigSyntax.c 
@@ -47,7 +47,7 @@ libtsconfig_la_SOURCES = \
 
 test_tsconfig_SOURCES = test-tsconfig.cc
 
-test_tsconfig_LDADD = libtsconfig.la
+test_tsconfig_LDADD = libtsconfig.la ../ts/libtsutil.la
 
 # Strip to just the enum in the ts::config namespace so we can use
 # it more easily in C++.