NetBSD/dist/cdk/examples/configure.in
garbled 5940edcfb4 Initial import of CDK 4.9.9. The work to port this was performed by
Charles Hannum, and that is the version being imported:
cdk-4.9.9-20000407-myc3
2001-01-04 19:57:58 +00:00

28 lines
460 B
Plaintext

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)