2014-09-27 07:32:40 -04:00
|
|
|
AC_INIT([rofi], [0.14.9], [qball@gmpclient.org])
|
2014-03-17 13:00:09 -04:00
|
|
|
|
2014-03-18 03:59:42 -04:00
|
|
|
AC_CONFIG_SRCDIR([source/rofi.c])
|
2014-03-17 13:00:09 -04:00
|
|
|
AC_CONFIG_HEADER([config.h])
|
|
|
|
|
2014-03-18 03:59:42 -04:00
|
|
|
##
|
|
|
|
# Setup automake to be silent and in foreign mode.
|
|
|
|
##
|
2014-03-17 14:15:42 -04:00
|
|
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
|
2014-03-17 19:11:46 -04:00
|
|
|
AM_SILENT_RULES([yes])
|
2014-03-17 13:00:09 -04:00
|
|
|
|
2014-03-18 03:59:42 -04:00
|
|
|
##
|
|
|
|
# Check for compiler
|
|
|
|
##
|
2014-03-17 13:00:09 -04:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CC_STDC
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
|
2014-08-22 03:26:46 -04:00
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
|
2014-03-17 18:57:49 -04:00
|
|
|
##
|
|
|
|
# I3 check
|
|
|
|
##
|
|
|
|
AC_CHECK_HEADERS([i3/ipc.h],
|
|
|
|
[i3_header=yes; break;])
|
|
|
|
|
2014-08-28 18:01:36 -04:00
|
|
|
|
|
|
|
dnl ---------------------------------------------------------------------
|
|
|
|
dnl Enable source code coverage reporting for GCC
|
|
|
|
dnl ---------------------------------------------------------------------
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(gcov,
|
|
|
|
[ --enable-gcov Enable source code coverage testing using gcov],
|
|
|
|
[CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"])
|
|
|
|
|
2014-11-06 11:21:55 -05:00
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Enable timing debug output.
|
|
|
|
dnl
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(timings,
|
|
|
|
[ --enable-timings Enable debug information about timings],
|
|
|
|
[CFLAGS="$CFLAGS -DTIMING"])
|
|
|
|
|
2014-03-17 14:15:42 -04:00
|
|
|
##
|
|
|
|
# Check dependencies
|
|
|
|
##
|
2014-03-17 13:00:09 -04:00
|
|
|
PKG_PROG_PKG_CONFIG
|
|
|
|
|
|
|
|
PKG_CHECK_MODULES([xft], [xft])
|
|
|
|
PKG_CHECK_MODULES([x11], [x11])
|
|
|
|
PKG_CHECK_MODULES([xinerama], [xinerama])
|
2014-08-02 14:02:37 -04:00
|
|
|
PKG_CHECK_MODULES([pango], [pango pangoxft])
|
2014-03-17 13:00:09 -04:00
|
|
|
|
|
|
|
|
2014-08-29 07:06:40 -04:00
|
|
|
AC_CONFIG_FILES([Makefile test/Makefile])
|
2014-03-17 13:00:09 -04:00
|
|
|
AC_OUTPUT
|