openbox/configure.ac

67 lines
1.5 KiB
Text
Raw Normal View History

2003-01-11 04:06:25 +00:00
AC_PREREQ([2.50])
AC_INIT([src/main.cc])
2003-01-11 04:06:25 +00:00
AC_CONFIG_HEADERS(config.h)
AC_LANG(C++)
2002-10-31 09:20:19 +00:00
2003-01-11 04:06:25 +00:00
# Determine build target
OB_DEBUG
2003-01-11 04:39:55 +00:00
AM_INIT_AUTOMAKE([openbox], [2.90.0cvs])
2002-10-31 09:20:19 +00:00
test "$prefix" = "NONE" && prefix="$ac_default_prefix"
2003-01-11 04:06:25 +00:00
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
2003-01-11 04:06:25 +00:00
AM_MAINTAINER_MODE
# Pick compiler specific/build target flags
OB_COMPILER_FLAGS
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
2003-01-11 04:06:25 +00:00
PYTHON_DEVEL
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-25 20:35:50 +00:00
# AC_TYPE_SIGNAL
2002-10-31 09:20:19 +00:00
2003-01-11 04:06:25 +00:00
# Check for Xft2
XFT_DEVEL(2.0.0)
2002-10-31 09:20:19 +00:00
2003-01-11 04:06:25 +00:00
# Check for X11 extensions
X11_EXT_XKB
X11_EXT_SHAPE
X11_EXT_XINERAMA
2002-10-31 09:20:19 +00:00
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
])
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