diff options
author | Martin Szulecki | 2013-02-16 18:08:02 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-02-16 18:08:02 +0100 |
commit | 0b45fc36f7816a1f4eae19d3355b728a4354dc5d (patch) | |
tree | c1fb708d0c15e26bc43d552010bc9dad2b5a52e5 | |
parent | 44dd2a115e84c2ec2890c10be5455689800f38ee (diff) | |
download | axis2c-0b45fc36f7816a1f4eae19d3355b728a4354dc5d.tar.gz axis2c-0b45fc36f7816a1f4eae19d3355b728a4354dc5d.tar.bz2 |
Fix undefined references for axium xpath module
-rw-r--r-- | axiom/src/xpath/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/axiom/src/xpath/Makefile.am b/axiom/src/xpath/Makefile.am index 23c42ba..0fd3152 100644 --- a/axiom/src/xpath/Makefile.am +++ b/axiom/src/xpath/Makefile.am @@ -23,7 +23,8 @@ libaxis2_xpath_la_SOURCES = xpath.c \ libaxis2_xpath_la_LDFLAGS = -version-info $(VERSION_NO) -libaxis2_xpath_la_LIBADD = +libaxis2_xpath_la_LIBADD = $(top_builddir)/../util/src/libaxutil.la \ + $(top_builddir)/src/om/libaxis2_axiom.la INCLUDES = -I$(top_builddir)/include \ -I$(top_builddir)/src/parser \ -I$(top_builddir)/src/om \ |