openbox/configure.ac

407 lines
9.7 KiB
Text
Raw Normal View History

AC_INIT([src/main.cc])
AM_CONFIG_HEADER(config.h)
2002-11-01 11:19:47 +00:00
AM_INIT_AUTOMAKE([openbox], [2.90.0cvs])
2002-10-31 09:20:19 +00:00
AC_PREREQ([2.50])
2002-10-31 09:20:19 +00:00
test "$prefix" = "NONE" && prefix="$ac_default_prefix"
AC_PATH_PROG([regex_cmd], [sed])
2002-12-19 20:54:58 +00:00
test "$regex_cmd" || AC_MSG_ERROR([sed not found])
2002-10-31 09:20:19 +00:00
2002-10-31 19:48:50 +00:00
AC_PROG_CC
2002-10-31 09:20:19 +00:00
AC_PROG_CXX
2002-11-01 03:33:33 +00:00
AC_PROG_LIBTOOL
LIBTOOL="$LIBTOOL --silent"
AC_PROG_INSTALL
2002-10-31 09:20:19 +00:00
ALL_LINGUAS=""
2002-12-26 11:58:57 +00:00
AM_GNU_GETTEXT_VERSION(0.11.5)
AM_GNU_GETTEXT([external])
2002-10-31 09:20:19 +00:00
2002-12-25 20:28:12 +00:00
AC_LANG(C++)
2002-12-24 23:31:38 +00:00
# Check what compiler we are using
2002-11-01 04:20:11 +00:00
AC_MSG_CHECKING([for GCC])
2002-10-31 09:20:19 +00:00
if test "$GCC" = "yes"; then
AC_MSG_RESULT([yes])
2002-12-26 11:58:57 +00:00
CXXFLAGS="$CXXFLAGS -Wall -W"
# -pedantic"
2002-10-31 09:20:19 +00:00
else
AC_MSG_RESULT([no, trying other compilers])
AC_MSG_CHECKING(for MIPSpro)
mips_pro_ver=`$CXX -version 2>&1 | grep -i mipspro | cut -f4 -d ' '`
if test -z "$mips_pro_ver"; then
AC_MSG_RESULT([no])
else
AC_MSG_RESULT([yes, version $mips_pro_ver.])
2002-12-25 20:28:12 +00:00
AC_MSG_CHECKING(for -LANG:std in CXXFLAGS)
lang_std_not_set=`echo $CXXFLAGS | grep "\-LANG:std"`
2002-10-31 09:20:19 +00:00
if test "x$lang_std_not_set" = "x"; then
AC_MSG_RESULT([not set, setting.])
2002-12-25 20:28:12 +00:00
CXXFLAGS="${CXXFLAGS} -LANG:std"
2002-10-31 09:20:19 +00:00
else
AC_MSG_RESULT([already set.])
fi
fi
fi
2002-12-24 23:31:38 +00:00
# Determine if maintainer portions of the Makefiles should be included.
2002-10-31 09:20:19 +00:00
AM_MAINTAINER_MODE
2002-12-24 23:31:38 +00:00
# Check for system header files
2002-10-31 09:20:19 +00:00
AC_CHECK_HEADERS(ctype.h dirent.h fcntl.h libgen.h locale.h nl_types.h process.h signal.h stdarg.h stdio.h stdlib.h string.h time.h unistd.h sys/param.h sys/select.h sys/signal.h sys/stat.h sys/time.h sys/types.h sys/wait.h)
AC_HEADER_TIME
2002-12-24 23:31:38 +00:00
# Determine the return type of signal handlers
2002-12-25 20:35:50 +00:00
# AC_TYPE_SIGNAL
2002-10-31 09:20:19 +00:00
2002-12-24 23:31:38 +00:00
# Check whether to include debugging code
2002-10-31 09:20:19 +00:00
DEBUG=""
AC_MSG_CHECKING([whether to include verbose debugging code])
2002-11-01 04:20:11 +00:00
AC_ARG_ENABLE([debug],
[ --enable-debug include verbose debugging code @<:@default=no@:>@],
2002-10-31 09:20:19 +00:00
if test "$enableval" = "yes"; then
AC_MSG_RESULT([yes])
if test "$GCC" = "yes"; then
DEBUG="-DDEBUG -fno-inline -g"
else
DEBUG="-DDEBUG"
fi
else
AC_MSG_RESULT([no])
DEBUG="-DNDEBUG"
fi,
AC_MSG_RESULT([no])
DEBUG="-DNDEBUG"
)
2002-12-25 20:28:12 +00:00
CXXFLAGS="$CXXFLAGS $DEBUG"
2002-12-19 20:54:58 +00:00
2002-12-24 23:31:38 +00:00
# Check for Python
AC_ARG_WITH([python],
2003-01-04 09:30:04 +00:00
[ --with-python=path Set location of Python executable],
2002-12-24 23:31:38 +00:00
[PYTHON="$withval"],
[PYTHON=])
# Find the python bin
if ! test "$PYTHON"; then
AC_CHECK_PROGS(PYTHON, $prefix/bin/python python python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 python1.4)
fi
if ! test "$PYTHON"; then
AC_MSG_ERROR([Openbox requires the use of Python. This is its secret special formula for extreme sexiness.
2002-12-19 20:54:58 +00:00
See http://www.python.org
2002-12-24 23:31:38 +00:00
])
fi
# Find our python paths
AC_MSG_CHECKING([for Python version])
# Need to do this hack since autoconf replaces __file__ with the name of the configure file
filehack="file__"
PYVERSION=`($PYTHON -c "import string,operator; print operator.getitem(string.split(string.__$filehack,'/'),-2)")`
AC_MSG_RESULT([$PYVERSION])
AC_MSG_CHECKING([for Python prefix])
PYPREFIX=`($PYTHON -c "import sys; print sys.prefix") 2>/dev/null`
AC_MSG_RESULT([$PYPREFIX])
AC_MSG_CHECKING([for Python exec-prefix])
PYEPREFIX=`($PYTHON -c "import sys; print sys.exec_prefix") 2>/dev/null`
AC_MSG_RESULT([$PYEPREFIX])
2002-10-31 09:20:19 +00:00
2002-12-24 23:31:38 +00:00
# Find the include directory
AC_MSG_CHECKING([for Python header files])
if test -r "$PYPREFIX/include/$PYVERSION/Python.h"; then
PYTHON_CFLAGS="-I$PYPREFIX/include/$PYVERSION"
fi
if test -z "$PYTHON_CFLAGS"; then
if test -r "$PYPREFIX/include/Py/Python.h"; then
PYTHON_CFLAGS="-I$PYPREFIX/include/Py"
fi
fi
if ! test "$PYTHON_CFLAGS"; then
AC_MSG_ERROR([Not found])
else
AC_MSG_RESULT([$PYTHON_CFLAGS])
fi
# Find the python library
PYTHON_LIBS=""
2002-12-24 23:31:38 +00:00
AC_MSG_CHECKING([for Python library])
dirs="$PYEPREFIX/lib $PYEPREFIX/lib/$PYVERSION/config \
$PYEPREFIX/lib/$PYVERSION/lib $PYEPREFIX/lib/python/lib"
2002-12-24 23:31:38 +00:00
for i in $dirs; do
# look for really old versions
if test -r "$i/lib$PYVERSION.so"; then
PYLIB="$i"
PYTHON_LIBS="-L$PYLIB -l$PYVERSION"
break
else
if test -r "$i/libPython.a"; then
PYLIB="$i"
PYTHON_LIBS="-L$PYLIB -lModules -lPython -lObjects -lParser"
break
else
if test -r "$i/lib$PYVERSION.a"; then
PYLIB="$i"
PYTHON_LIBS="-L$PYLIB -l$PYVERSION -lpthread -ldl -lutil -lm"
break
fi
fi
2002-12-24 23:31:38 +00:00
fi
done
2002-12-24 23:31:38 +00:00
if ! test "$PYLIB"; then
AC_MSG_ERROR([Not found])
else
AC_MSG_RESULT([$PYLIB])
fi
AC_SUBST([PYTHON_CFLAGS])
AC_SUBST([PYTHON_LIBS])
2002-12-23 00:04:32 +00:00
2002-12-24 23:31:38 +00:00
# Check for X headers and libraries
2002-10-31 09:20:19 +00:00
AC_PATH_X
AC_PATH_XTRA
test "$no_x" = "yes" && AC_MSG_ERROR([No Xlibs found.])
test -z "$x_includes" && x_includes="/usr/include"
test -z "$x_libraries" && x_libraries="/usr/lib"
2002-12-25 20:28:12 +00:00
CXXFLAGS="$CXXFLAGS $X_CFLAGS"
2002-10-31 09:20:19 +00:00
LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS"
LDFLAGS="$LDFLAGS $X_PRE_LIBS $LIBS $X_EXTRA_LIBS"
2002-12-24 23:31:38 +00:00
# Check for required functions in -lX11
2002-11-01 04:20:11 +00:00
AC_CHECK_LIB([X11], [XOpenDisplay],
2002-10-31 09:20:19 +00:00
,
AC_MSG_ERROR([Could not find XOpenDisplay in -lX11.])
)
2002-11-11 07:56:30 +00:00
2002-12-24 23:31:38 +00:00
# Check for Xft >= 2
XFT_MIN_MAJOR=2
XFT_MIN_MINOR=0
XFT_MIN_REVISION=0
XFT_MIN=$XFT_MIN_MAJOR.$XFT_MIN_MINOR.$XFT_MIN_REVISION
AC_MSG_CHECKING([for Xft version >= $XFT_MIN])
if ! pkg-config --atleast-version $XFT_MIN xft; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([Openbox requires the Xft version >= $XFT_MIN font library.
See http://www.fontconfig.org/
])
fi
AC_MSG_RESULT([yes])
2002-12-24 23:31:38 +00:00
# Store these
2002-11-11 08:33:43 +00:00
OLDLIBS=$LIBS
2002-12-25 20:28:12 +00:00
OLDCXXFLAGS=$CXXFLAGS
2002-11-11 08:33:43 +00:00
XFT_CFLAGS="`pkg-config --cflags xft`"
XFT_LIBS="`pkg-config --libs xft`"
2002-12-24 23:31:38 +00:00
# Set these for checking with the tests below. They'll be restored after
LIBS="$LIBS $XFT_LIBS"
2002-12-25 20:28:12 +00:00
CXXFLAGS="$XFT_CFLAGS $CXXFLAGS"
AC_CHECK_LIB([Xft], [XftFontOpenName],
AC_MSG_CHECKING([for X11/Xft/Xft.h for Xft >= $XFT_MIN])
AC_TRY_COMPILE(
[
#include <X11/Xlib.h>
#include <X11/Xft/Xft.h>
],
[
#if !defined(XFT_MAJOR)
# error Xft.h is too old
#endif
#if XFT_MAJOR < $XFT_MIN_MAJOR
# error Xft.h is too old
#endif
#if XFT_MAJOR == $XFT_MIN_MAJOR
# if XFT_MINOR < $XFT_MIN_MINOR
# error Xft.h is too old
# endif
#endif
#if XFT_MAJOR == $XFT_MIN_MAJOR
# if XFT_MAJOR == $XFT_MIN_MINOR
# if XFT_REVISION < $XFT_MIN_REVISION
# error Xft.h is too old
# endif
# endif
#endif
int i = XFT_MAJOR;
XftFont foo;
],
[
AC_MSG_RESULT([yes])
],
[
AC_MSG_RESULT([no])
AC_MSG_ERROR([Openbox requires the Xft version >= $XFT_MIN font library.
See http://www.fontconfig.org/
])
]
)
2002-11-11 07:56:30 +00:00
AC_MSG_CHECKING([if we can compile with Xft])
2002-11-11 07:56:30 +00:00
AC_TRY_LINK(
[
#include <X11/Xlib.h>
#include <X11/Xft/Xft.h>
],
[
int i = XFT_MAJOR;
2002-11-11 07:56:30 +00:00
XftFont foo
],
[
AC_MSG_RESULT([yes])
],
[
AC_MSG_RESULT([no])
AC_MSG_ERROR([Unable to compile with the Xft library.
2002-11-11 07:56:30 +00:00
])
]
)
)
2002-12-24 23:31:38 +00:00
# Restore the old values. Use XFT_CFLAGS and XFT_LIBS in the Makefile.am's
2002-11-11 08:33:43 +00:00
LIBS=$OLDLIBS
2002-12-25 20:28:12 +00:00
CXXFLAGS=$OLDCXXFLAGS
2002-11-11 08:33:43 +00:00
AC_SUBST([XFT_CFLAGS])
AC_SUBST([XFT_LIBS])
2002-11-11 07:56:30 +00:00
2003-01-04 03:38:56 +00:00
# Check for XKB extension support
AC_CHECK_LIB([X11], [XkbBell],
AC_MSG_CHECKING([for X11/XKBlib.h])
AC_TRY_LINK(
[
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/XKBlib.h>
],
[
Display *d;
Window w;
XkbBell(d, w, 0, 0);
],
[
AC_MSG_RESULT([yes])
XKB="yes"
AC_DEFINE([XKB], [1], [Found the XKB extension])
],
[
AC_MSG_RESULT([no])
XKB="no"
]
)
)
AC_MSG_CHECKING([for the XKB extension])
if test "$XKB" = "yes"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
2002-12-24 23:31:38 +00:00
# Check for XShape extension support
2002-11-01 04:20:11 +00:00
AC_CHECK_LIB([Xext], [XShapeCombineShape],
2002-10-31 09:20:19 +00:00
AC_MSG_CHECKING([for X11/extensions/shape.h])
AC_TRY_LINK(
2002-11-01 04:20:11 +00:00
[
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/shape.h>
],
[
long foo = ShapeSet
],
[
AC_MSG_RESULT([yes])
SHAPE="yes"
2002-11-10 05:54:12 +00:00
AC_DEFINE([SHAPE], [1], [Found the XShape extension])
2002-11-01 04:20:11 +00:00
LIBS="$LIBS -lXext"
],
[
AC_MSG_RESULT([no])
SHAPE="no"
]
2002-10-31 09:20:19 +00:00
)
)
AC_MSG_CHECKING([for the XShape extension])
if test "$SHAPE" = "yes"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
2002-12-24 23:31:38 +00:00
# Check for Xinerama extension support
2002-10-31 09:20:19 +00:00
AC_MSG_CHECKING([whether to build support for the Xinerama extension])
XINERAMA="no"
2002-11-01 04:20:11 +00:00
AC_ARG_ENABLE([xinerama],
[ --enable-xinerama enable support of the Xinerama extension @<:@default=no@:>@],
2002-10-31 09:20:19 +00:00
if test "$enableval" = "yes"; then
AC_MSG_RESULT([yes])
2002-11-01 04:20:11 +00:00
AC_CHECK_LIB([Xinerama], [XineramaQueryExtension],
[
AC_MSG_CHECKING([for X11/extensions/Xinerama.h])
AC_TRY_LINK(
[
#include <X11/Xlib.h>
#include <X11/extensions/Xinerama.h>
],
[
XineramaScreenInfo foo
],
[
AC_MSG_RESULT([yes])
XINERAMA="yes"
AC_DEFINE([XINERAMA], [1],
[Enable support of the Xinerama extension])
LIBS="$LIBS -lXinerama"
],
[
AC_MSG_RESULT([no])
]
)
]
2002-10-31 09:20:19 +00:00
)
AC_MSG_CHECKING([for the Xinerama extension])
if test "$XINRERAMA" = "yes"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
else
AC_MSG_RESULT([no])
fi,
AC_MSG_RESULT([no])
)
2002-12-26 11:58:57 +00:00
AC_CONFIG_FILES([Makefile po/Makefile.in
otk/Makefile
src/Makefile
scripts/Makefile
util/Makefile
util/epist/Makefile
doc/Makefile
doc/doxygen/Makefile
data/Makefile
data/buttons/Makefile
data/styles/Makefile
version.h
])
AC_OUTPUT
AC_MSG_RESULT
AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.])
AC_MSG_RESULT
AC_MSG_RESULT([Using '$prefix' for installation.])
AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
2002-12-25 20:28:12 +00:00
AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
AC_MSG_RESULT
AC_MSG_RESULT([configure complete, now type \"make\"])
2002-12-18 15:49:41 +00:00
AC_MSG_RESULT