r189: Effective permissions are shown in brackets.
[rox-filer.git] / ROX-Filer / src / configure.in
blob1a5a17c69de5a9aaa244634468776175f3124810
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(main.c)
3 AC_CONFIG_HEADER(config.h)
5 dnl Checks for programs.
6 AC_PROG_CC
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 Does file(1) support '-b' ?
19 AC_MSG_CHECKING(whether file -b works)
20 if file -b / > /dev/null 2> /dev/null
21 then
22   AC_DEFINE(FILE_B_FLAG)
23   AC_MSG_RESULT(yes)
24 else
25   AC_MSG_RESULT(no)
28 dnl Checks for header files.
29 AC_PATH_X
30 AC_HEADER_DIRENT
31 AC_HEADER_STDC
32 AC_HEADER_SYS_WAIT
33 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h mntent.h sys/ucred.h)
35 dnl Checks for typedefs, structures, and compiler characteristics.
36 AC_C_CONST
37 AC_TYPE_UID_T
38 AC_TYPE_SIZE_T
40 dnl Checks for library functions.
41 AC_CHECK_FUNCS(gethostname mkdir rmdir strdup strtol getopt_long)
43 AC_OUTPUT(Makefile)