lnav/configure.ac

150 lines
3.7 KiB
Plaintext
Raw Normal View History

2009-09-14 03:07:32 +02:00
AC_INIT(lnav, 0.6.2, lnav@googlegroups.com)
2009-09-14 03:07:32 +02:00
AC_CONFIG_SRCDIR([src/lnav.cc])
2013-07-23 14:55:08 +02:00
AM_INIT_AUTOMAKE([foreign subdir-objects])
AM_SILENT_RULES([yes])
2009-09-14 03:07:32 +02:00
AC_PREFIX_DEFAULT(/usr/)
AC_CANONICAL_HOST
for defdir in /opt/local /usr/local /usr; do
if test -d "$defdir/include"; then
2013-06-10 15:55:39 +02:00
CPPFLAGS="$CPPFLAGS -I$defdir/include"
fi
if test -d "$defdir/lib"; then
2013-06-10 15:55:39 +02:00
LDFLAGS="$LDFLAGS -L$defdir/lib"
fi
2011-07-21 05:16:47 +02:00
if test -d "$defdir/lib64"; then
2013-06-10 15:55:39 +02:00
LDFLAGS="$LDFLAGS -L$defdir/lib64"
2011-07-21 05:16:47 +02:00
fi
done
2009-12-24 19:36:01 +01:00
2009-09-14 03:07:32 +02:00
dnl abssrcdir is the absolute path to the source base (regardless of where
dnl you are building it)
case x$srcdir in
x/*)
abssrcdir=$srcdir
;;
*)
abssrcdir=`pwd`/$srcdir
;;
esac
AC_SUBST(abssrcdir)
AC_PROG_CXX
2013-08-29 06:22:04 +02:00
CPPFLAGS="$CPPFLAGS -D_ISOC99_SOURCE"
2013-07-28 20:43:33 +02:00
# CFLAGS=`echo $CFLAGS | sed 's/-O2//g'`
# CXXFLAGS=`echo $CXXFLAGS | sed 's/-O2//g'`
2009-09-14 03:07:32 +02:00
AC_ARG_ENABLE([profiling],
AS_HELP_STRING([--enable-profiling],
[Compile with gprof(1) profiling support]))
AC_MSG_CHECKING(gprof(4) profiling support)
if test x"${enable_profiling}" = x"yes" ; then
CFLAGS="$CFLAGS -pg -gstabs"
CXXFLAGS="$CXXFLAGS -pg -gstabs"
LDFLAGS="$LDFLAGS -pg"
else
enable_profiling=no
fi
AC_MSG_RESULT($enable_profiling)
AC_SUBST(CFLAGS_PG)
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_LN_S
AC_PROG_MAKE_SET
AM_PATH_PYTHON([2.4])
AC_PATH_PROG(SQLITE3_CMD, [sqlite3])
2013-06-10 15:55:39 +02:00
if test x"$SQLITE3_CMD" = x""; then
AC_MSG_ERROR([The sqlite3 command is required])
fi
2009-09-14 03:07:32 +02:00
AC_CHECK_SIZEOF(off_t)
AC_CHECK_SIZEOF(size_t)
AC_SEARCH_LIBS(openpty, util)
2009-12-24 19:36:01 +01:00
AC_SEARCH_LIBS(gzseek, z, [], [AC_MSG_ERROR([libz required to build])])
AC_SEARCH_LIBS(BZ2_bzopen, bz2)
2009-12-24 19:36:01 +01:00
AC_SEARCH_LIBS(dlopen, dl)
# Sometimes, curses depends on these libraries being linked in...
AC_SEARCH_LIBS(cur_term, tinfo)
AC_SEARCH_LIBS(Gpm_Open, gpm)
AC_CHECK_HEADERS(pty.h util.h zlib.h bzlib.h libutil.h)
2009-09-14 03:07:32 +02:00
AX_WITH_CURSES
2009-09-14 03:07:32 +02:00
AX_PATH_LIB_PCRE([], [AC_MSG_ERROR([pcre required to build])])
AX_PATH_LIB_READLINE([], [AC_MSG_ERROR([readline required to build])])
AX_LIB_SQLITE3("3.0.0")
2013-06-10 15:55:39 +02:00
if test x"$SQLITE3_LIBS" = x""; then
AC_MSG_ERROR([The sqlite3 developement package must be installed.])
fi
2009-09-14 03:07:32 +02:00
case "$host_os" in
*)
2009-12-24 19:36:01 +01:00
# AC_DEFINE([_XOPEN_SOURCE], [500], [Need pread])
AC_DEFINE([_BSD_SOURCE], [1], [Need pread])
2009-09-14 03:07:32 +02:00
;;
esac
2013-08-28 16:28:31 +02:00
ALL_LDFLAGS="$LDFLAGS $SQLITE3_LDFLAGS"
static_lib_list="libncurses.a libreadline.a libsqlite3.a libz.a libcrypto.a"
static_lib_list="$static_lib_list libpcre.a libpcrecpp.a libncursesw.a libbz2.a"
AC_ARG_ENABLE([static],
AS_HELP_STRING([--disable-static],
[Disable static linking]))
if test x"${enable_static}" != x"no"; then
2013-08-28 16:57:21 +02:00
case "$host_os" in
darwin*)
STATIC_LDFLAGS="$STATIC_LDFLAGS -Wl,-search_paths_first"
;;
esac
STATIC_LDFLAGS="$STATIC_LDFLAGS -L`pwd`/src/static-libs"
2013-08-28 16:28:31 +02:00
# This is a hack to link against static libraries instead of shared
2013-08-28 16:57:21 +02:00
# so that we can build a mostly statically link exe that can
# be downloaded and used right away. This is required for OS X and
# will, hopefully, make a static binary that is compatible with
# many different versions of Linux.
2013-08-28 16:28:31 +02:00
mkdir -p src/static-libs
rm -f src/static-libs/*.a
2013-08-28 16:28:31 +02:00
for libflag in $ALL_LDFLAGS; do
2013-08-28 16:57:21 +02:00
case $libflag in
2013-08-28 16:28:31 +02:00
-Lstatic-libs)
;;
-L*)
libdir=`echo $libflag | sed -e 's/-L//'`
for slib in $static_lib_list; do
if test -e "$libdir/$slib"; then
ln -sf "$libdir/$slib" src/static-libs/.
fi
done
;;
2013-08-28 16:57:21 +02:00
esac
2013-08-28 16:28:31 +02:00
done
fi
AC_SUBST(STATIC_LDFLAGS)
AC_CONFIG_HEADERS([src/config.h])
2009-09-14 03:07:32 +02:00
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([TESTS_ENVIRONMENT])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([test/Makefile])
AC_OUTPUT