File: configure.in

package info (click to toggle)
libcdk5 5.0.20050424-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,504 kB
  • ctags: 2,620
  • sloc: ansic: 29,645; sh: 4,283; makefile: 634; cpp: 42; sed: 40
file content (27 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (6)
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
dnl
dnl Process this file with autoconf to produce a configure script.
dnl
AC_INIT(CDKDemo)

dnl
dnl Checks for programs.
dnl
AC_PROG_CC

dnl
dnl Put -Wall on compile line if we are using gcc or g++
dnl
if test "$ac_cv_prog_CC" = "gcc"; then
   CFLAGS="$CFLAGS -Wall"
fi
if test "$ac_cv_prog_CC" = "g++"; then
   CFLAGS="$CFLAGS -Wall"
fi

dnl
dnl Checks for libraries.
dnl
dnl  -lncurses -lm -lcdk -L..
AC_CHECK_LIB(ncurses, start_color)

AC_OUTPUT(Makefile)