2003-01-11 04:06:25 +00:00
|
|
|
AC_PREREQ([2.50])
|
2002-11-01 10:50:57 +00:00
|
|
|
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
|
|
|
|
2003-01-09 03:43:06 +00:00
|
|
|
test "$prefix" = "NONE" && prefix="$ac_default_prefix"
|
2003-01-11 04:06:25 +00:00
|
|
|
|
2002-11-01 10:50:57 +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
|
2002-11-01 10:50:57 +00:00
|
|
|
LIBTOOL="$LIBTOOL --silent"
|
|
|
|
AC_PROG_INSTALL
|
2002-10-31 09:20:19 +00:00
|
|
|
|
2002-11-01 10:50:57 +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
|
2002-11-01 10:50:57 +00:00
|
|
|
otk/Makefile
|
|
|
|
src/Makefile
|
2002-12-25 04:54:44 +00:00
|
|
|
scripts/Makefile
|
2002-11-01 10:50:57 +00:00
|
|
|
util/Makefile
|
|
|
|
util/epist/Makefile
|
|
|
|
doc/Makefile
|
2002-11-04 01:20:02 +00:00
|
|
|
doc/doxygen/Makefile
|
2002-11-01 10:50:57 +00:00
|
|
|
data/Makefile
|
2003-01-04 18:42:25 +00:00
|
|
|
data/buttons/Makefile
|
2002-11-01 10:50:57 +00:00
|
|
|
data/styles/Makefile
|
|
|
|
])
|
2002-11-01 10:08:32 +00:00
|
|
|
AC_OUTPUT
|
|
|
|
|
2002-11-01 10:50:57 +00:00
|
|
|
AC_MSG_RESULT
|
|
|
|
AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.])
|
|
|
|
|
|
|
|
AC_MSG_RESULT
|
2002-11-01 10:08:32 +00:00
|
|
|
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.])
|
2002-11-01 10:08:32 +00:00
|
|
|
AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
|
2002-11-01 10:50:57 +00:00
|
|
|
AC_MSG_RESULT
|
|
|
|
AC_MSG_RESULT([configure complete, now type \"make\"])
|
2002-12-18 15:49:41 +00:00
|
|
|
AC_MSG_RESULT
|