Build manual pages coditionally
[shigofumi.git] / configure.ac
bloba07bc82db88c5c67657c94be2efcf191326b7a55
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.63])
5 AC_INIT([shigofumi], [0.1], [petr.pisar@atlas.cz])
6 AM_INIT_AUTOMAKE(shigofumi, 0.1)
7 AC_CONFIG_SRCDIR([src/shigofumi.c])
8 AC_CONFIG_MACRO_DIR([m4])
9 AC_CONFIG_HEADERS([src/config.h])
11 # Checks for programs.
12 AC_PROG_CC
13 AC_PROG_CPP
16 # Enable debug
17 AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],
18                         [Compile in debugging mode])])
19 AS_IF([test "$enable_debug" = "yes"],
20       CFLAGS="${CFLAGS} -g"
21       dnl AC_SUBST(DEBUG_CFLAGS)
22       AC_DEFINE([ENABLE_DEBUG], [1],
23                 [Define if you want include debugging code])
24       )
26 # Enable gettext
27 AM_GNU_GETTEXT_VERSION([0.17])
28 AM_GNU_GETTEXT([external])
30 # Checks for libraries.
31 # Check for libisds
32 AC_SYS_LARGEFILE
33 PKG_CHECK_MODULES([ISDS], libisds >= 0.2.1)
35 # Check for confuse
36 # TODO: Minimal version
37 PKG_CHECK_MODULES([CONFUSE], libconfuse)
39 # Check for magic
40 # TODO: Minimal version
41 AC_CHECK_LIB([magic], [magic_open])
43 # Check for readline
44 # TODO: Minimal version
45 AC_CHECK_LIB([readline], [readline])
48 # Consider compiler warnings as errors by default
49 AC_ARG_ENABLE(fatalwarnings, [AS_HELP_STRING([--disable-fatalwarnings],
50                                       [Do not consider compiler warnings as
51                                        errors])])
52 AS_IF([test "$enable_fatalwarnings" = "no"], , CFLAGS="${CFLAGS} -Werror")
55 # Find DocBook XSLT sheets
56 AC_CHECK_PROG([HAVE_XSLTPROC], [xsltproc], [yes])
57 AC_ARG_WITH(docbook-xsl-stylesheets,
58             [AS_HELP_STRING([--with-docbook-xsl-stylesheets=DIR],
59                     [Specify XLS style sheet root directory for manual page
60                      regeneration from DocBook source])])
61 AS_IF([test "$with_docbook_xsl_stylesheets" = "no"],
62     AC_MSG_WARN([Make sure you have sources with pregenerated manual pages.]),
64     AS_IF([test "$HAVE_XSLTPROC" != "yes"], 
65           AS_IF([test "$with_docbook_xsl_stylesheets" = "yes"],
66                 AC_MSG_WARN([Missing xsltproc!]),
67                 AC_MSG_FAILURE([Missing xsltproc!])
68                 )
69           )
70     DOCBOOK_STYLE="/usr/share/sgml/docbook/xsl-stylesheets"
71     AS_IF([test "$with_docbook_xsl_stylesheets" != "yes"],
72         [DOCBOOK_STYLE="$with_docbook_xsl_stylesheets"])
73     AC_MSG_CHECKING([for DocBook XSLT stylesheet location in "$DOCBOOK_STYLE"])
74     AS_IF([echo '<para/>' |
75            xsltproc "${DOCBOOK_STYLE}/manpages/docbook.xsl" - 2>/dev/null],
76           AC_MSG_RESULT([ok]) AC_SUBST(DOCBOOK_STYLE),
77           DOCBOOK_STYLE=""
78           AS_IF([test "$with_docbook_xsl_stylesheets" = "yes"],
79                 AC_MSG_WARN([missing!]),
80                 AC_MSG_FAILURE([missing!])
81                 )
82           )
83     
85 AS_IF([test "$HAVE_XSLTPROC" != "yes"],
86       AC_MSG_WARN([Missing xsltproc. Make sure you have sources with
87                    pregenerated manual pages.]))
88 AM_CONDITIONAL([BUILD_MAN], [test -n "$DOCBOOK_STYLE"])
91 # Checks for header files.
92 AC_CHECK_HEADERS([fcntl.h langinfo.h limits.h locale.h stdint.h stdlib.h string.h termios.h unistd.h wchar.h])
94 # Checks for typedefs, structures, and compiler characteristics.
95 AC_TYPE_SIZE_T
96 AC_TYPE_SSIZE_T
97 AC_TYPE_UINT8_T
99 # Checks for library functions.
100 AC_FUNC_MALLOC
101 AC_FUNC_MBRTOWC
102 AC_FUNC_MMAP
103 AC_FUNC_REALLOC
104 AC_FUNC_STRCOLL
105 AC_CHECK_FUNCS([getcwd localtime_r memset munmap nl_langinfo setenv setlocale strdup strerror strtol tzset wcwidth])
107 # Default CFLAGS
108 CFLAGS="${CFLAGS} -std=c99 -Wall"
110 AC_CONFIG_FILES([Makefile doc/Makefile po/Makefile.in src/Makefile])
111 AC_OUTPUT