File: configure.ac

package info (click to toggle)
wysihtml 0.13-5.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 412 kB
  • ctags: 81
  • sloc: sh: 842; lisp: 302; ansic: 220; makefile: 106
file content (25 lines) | stat: -rw-r--r-- 619 bytes parent folder | download | duplicates (4)
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
# Process this file with autoconf to produce a configure script.
m4_define(WYSIVERSION,0.13)
AC_INIT(wysihtml, WYSIVERSION, dancer@debian.org)
AM_INIT_AUTOMAKE(wysihtml, WYSIVERSION)
AC_CONFIG_SRCDIR([src/wysihtmldaemon.c])
AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE
# Checks for programs.
AC_PROG_CC

# Checks for libraries.
AC_CHECK_LIB([pthread], [pthread_create])

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h])

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

# Checks for library functions.
AC_CHECK_FUNCS([strdup])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT