/usr/share/doc/libcdk5-dev/examples/configure.in is in libcdk5-dev 5.0.20060507-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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)
|