mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-12 10:10:00 -04:00
Using libtool to get runpath for tap library
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1325 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
1c229b2c45
commit
dc35902e30
3 changed files with 4 additions and 5 deletions
|
|
@ -23,7 +23,7 @@ gl_USE_SYSTEM_EXTENSIONS
|
|||
AC_PROG_CC
|
||||
AC_PROG_CPP
|
||||
AC_PROG_GCC_TRADITIONAL
|
||||
AC_PROG_RANLIB
|
||||
AC_PROG_LIBTOOL
|
||||
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_AWK
|
||||
|
|
@ -168,10 +168,8 @@ AC_SUBST(MATHLIBS)
|
|||
|
||||
dnl Check for libtap, to run perl-like tests
|
||||
AC_CHECK_LIB(tap, plan_tests,
|
||||
TAPLIBS="-ltap"
|
||||
EXTRA_TEST=test_utils
|
||||
AC_SUBST(EXTRA_TEST)
|
||||
AC_SUBST(TAPLIBS)
|
||||
)
|
||||
|
||||
dnl Check for PostgreSQL libraries
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@ LIBS = @LIBINTL@
|
|||
|
||||
test_utils_SOURCES = test_utils.c
|
||||
test_utils_CFLAGS = -g -I..
|
||||
test_utils_LDFLAGS = -L..
|
||||
test_utils_LDADD = ../utils.o $(TAPLIBS)
|
||||
test_utils_LDFLAGS = -rpath /usr/local/lib -ltap
|
||||
test_utils_LDADD = ../utils.o
|
||||
|
||||
test: ${noinst_PROGRAMS}
|
||||
perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS)
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ fi
|
|||
|
||||
autopoint --force
|
||||
aclocal -I m4
|
||||
libtoolize --force --copy
|
||||
autoheader
|
||||
automake --add-missing --force-missing --copy
|
||||
autoconf
|
||||
|
|
|
|||
Loading…
Reference in a new issue