Skip to content
Snippets Groups Projects
configure.ac 1.43 KiB
Newer Older
Benedikt Meurer's avatar
Benedikt Meurer committed
dnl configure.ac
dnl
dnl xfwm4 - window manager for the XFce4 desktop environment
dnl

AC_INIT(src/main.c)

AC_PREREQ(2.52)

AM_INIT_AUTOMAKE(xfwm4, [0.90])
Benedikt Meurer's avatar
Benedikt Meurer committed

AM_CONFIG_HEADER(config.h)

AM_MAINTAINER_MODE

dnl check for UNIX variants
AC_AIX
AC_ISC_POSIX
AC_MINIX

dnl check for basic programs
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL

dnl Check C Compiler Characteristics
AC_C_CONST
AC_C_INLINE

dnl check for standard header files
AC_HEADER_STDC

dnl Check for i18n support
BM_I18N([xfwm4], [ar ca de es es_MX fi fr ja ms nl pl ta tr zh_CN])
Benedikt Meurer's avatar
Benedikt Meurer committed

dnl Check for X11 window system
BM_LIBX11_REQUIRE
BM_LIBXPM_REQUIRE

BM_DEPEND(LIBXFCE4MCS_CLIENT, libxfce4mcs-client-1.0, 0.0.3)
BM_DEPEND(LIBXFCE4MCS_MANAGER, libxfce4mcs-manager-1.0, 0.0.3)
BM_DEPEND(LIBXFCEGUI4, libxfcegui4-1.0, 0.0.23)
Benedikt Meurer's avatar
Benedikt Meurer committed
XFCE_MCS_PLUGIN([XFCE_MCS_MANAGER], [0.2.0])
BM_DEPEND_CHECK(LIBSTARTUP_NOTIFICATION, libstartup-notification-1.0, 0.4,
  [startup-notification], [startup notification library], [yes])
Benedikt Meurer's avatar
Benedikt Meurer committed

dnl Check for debugging support
BM_DEBUG_SUPPORT

AC_OUTPUT([ 
xfwm4.spec
Makefile
doc/Makefile
doc/C/Makefile
doc/C/images/Makefile
Benedikt Meurer's avatar
Benedikt Meurer committed
defaults/Makefile
mcs-plugin/Makefile
po/Makefile.in 
src/Makefile
themes/Makefile
themes/bbs/Makefile
themes/curve/Makefile
themes/default/Makefile
Benedikt Meurer's avatar
Benedikt Meurer committed
themes/default.keys/Makefile
themes/exocet/Makefile
themes/meenee/Makefile
themes/microcurve/Makefile
themes/microdeck/Makefile
themes/microdeck2/Makefile
themes/microdeck3/Makefile
themes/tgc/Makefile
])