Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/c/configure.ac
blob: 58332a2b502cf1f0cc1520b35dec2eda2544672f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
AC_PREREQ(2.59)

AC_INIT(wp, 0.1)

AM_INIT_AUTOMAKE

AC_PROG_CC

AC_CHECK_LIB(bz2, BZ2_bzBuffToBuffDecompress, [], \
             [AC_MSG_FAILURE(I require libbz2)])
AC_CHECK_LIB(ncurses, initscr, [], \
             [AC_MSG_FAILURE(I require ncurses)])

AM_PROG_CC_C_O

AC_OUTPUT(Makefile)