Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
More build script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjgdev committed Aug 14, 2014
1 parent 377a2e9 commit 5d0fc29
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.am
Expand Up @@ -6,7 +6,7 @@ AM_CPPFLAGS = -I${top_srcdir}/src

# Build rules for riemannpp library
pkginclude_HEADERS = \
src/riemannpp/riemannpp.hpp
src/riemannpp/riemannpp.hpp

lib_LTLIBRARIES = \
src/riemannpp/libriemannpp.la
Expand Down Expand Up @@ -53,8 +53,8 @@ test_riemannpp_test_SOURCES = \
test/message_test.cpp
test_riemannpp_test_CPPFLAGS = -I$(top_srcdir)/src $(RIEMANN_CLIENT_CPPFLAGS)
test_riemannpp_test_CXXFLAGS = $(RIEMANN_CLIENT_CXXFLAGS)
test_riemannpp_test_LDFLAGS = $(RIEMANN_CLIENT_LDFLAGS)
test_riemannpp_test_LDADD = $(top_builddir)/src/riemannpp/libriemannpp.la
test_riemannpp_test_LDFLAGS = $(RIEMANN_LDFLAGS)
test_riemannpp_test_LDADD = $(top_builddir)/src/riemannpp/libriemannpp.la $(RIEMANN_CLIENT_LIBS)

TESTS += $(UNIT_TESTS)

Expand Down
7 changes: 7 additions & 0 deletions configure.ac
Expand Up @@ -23,6 +23,13 @@ m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
# Initialise libtool
LT_INIT

# Debian resets this to no, but this break both Spot and the libtool
# test suite itself. Instead of requiring developer to install a
# non-patched version of Libtool on any Debian they use, we just
# cancel the effect of Debian's patch here.
link_all_deplibs=yes
link_all_deplibs_CXX=yes

# Check for a C compiler
AC_PROG_CC

Expand Down

0 comments on commit 5d0fc29

Please sign in to comment.