r102: Now uses -Wall if possible. Changed 'unknown' icon to the NewerLook blank
[rox-filer.git] / ROX-Filer / src / configure.in
blobe3308fdfb0ace6aab73b4c610535a396798cb524
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(main.c)
4 dnl Checks for programs.
5 AC_PROG_CC
6 AC_PROG_MAKE_SET
8 dnl Use -Wall if possible
9 changequote(,)dnl
10 if test "x$GCC" = "xyes"; then
11   case " $CFLAGS " in
12   *[\ \ ]-Wall[\ \      ]*) ;;
13   *) CFLAGS="$CFLAGS -Wall" ;;
14   esac
16 changequote([,])dnl
18 dnl Checks for header files.
19 AC_HEADER_STDC
21 dnl Checks for typedefs, structures, and compiler characteristics.
23 dnl Checks for library functions.
25 AC_OUTPUT(Makefile)