File: configure.ac

package info (click to toggle)
dradio 3.8-2
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 572 kB
  • ctags: 229
  • sloc: ansic: 1,999; sh: 715; makefile: 12
file content (65 lines) | stat: -rw-r--r-- 1,843 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
#
# Compile pedantic and with debug symbols:
#    CFLAGS="-ggdb -Wall -Wextra -pedantic -ansi -O0" ./configure
#
# Verbose output can be enabled with
#    "./configure --disable-silent-rules" or "make V=1"
#

AC_PREREQ(2.61)
AC_INIT(dradio, 3.8)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADER([config.h])

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

# Checks for programs.
AC_PROG_CC

# features of Posix that are extensions to C (define _GNU_SOURCE)
AC_USE_SYSTEM_EXTENSIONS

# Checks for libraries.
AC_SEARCH_LIBS(initscr, ncursesw,,
             [AC_MSG_ERROR([libcursesw is required!])])
AC_SEARCH_LIBS(new_menu, menuw,,
             [AC_MSG_ERROR([libmenuw is required!])])
AC_SEARCH_LIBS(XML_ParserCreate, expat,,
             [AC_MSG_ERROR([libexpat is required!])])
AC_SEARCH_LIBS(curl_easy_init, curl,,
             [AC_MSG_ERROR([libcurl is required!])])
         
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([iconv.h\
                  langinfo.h\
                  locale.h\
                  signal.h\
                  stdio.h\
                  stdlib.h\
                  string.h\
                  sys/stat.h\
                  sys/types.h\
                  fcntl.h\
                  expat.h\
                  ncursesw/menu.h],,
                  [AC_MSG_ERROR([required header not found])] )

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_SIZE_T

# Checks for library functions.
AC_FUNC_MALLOC
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_CHECK_FUNCS([mkdir nl_langinfo setlocale strdup strrchr strncpy])

AC_CONFIG_FILES([Makefile
                 doc/Makefile
                 src/Makefile])
AC_OUTPUT