Fix compiler warning due to missing function prototype.
[svn.git] / subversion / mod_dav_svn / static / config.m4
blobd21c9641f7b925b2d852090dedc9109449c10604
1 dnl modules enabled in this directory by default
3 APACHE_MODPATH_INIT(dav/svn)
5 dnl dav_svn_objects=""
7 dnl ### we want to default this based on whether dav is being used...
8 dnl ### but there is no ordering to the config.m4 files right now...
9 dnl APACHE_MODULE(dav_svn, DAV provider for Subversion, $dav_svn_objects, , no)
11 AC_MSG_CHECKING(whether to enable mod_dav_svn)
12 AC_ARG_ENABLE(dav-svn,
13   AC_HELP_STRING([--enable-dav-svn], [DAV provider for Subversion]),
14   [  ],
15   [ enable_dav_svn=no ])
16 AC_MSG_RESULT($enable_dav_svn)
18 if test "$enable_dav_svn" != "no"; then
19   case "$enable_$1" in
20     shared*)
21       AC_MSG_ERROR(mod_dav_svn can only be built dynamically via APXS)
22       ;;
23     *)
24       MODLIST="$MODLIST dav_svn"
25       ;;
26   esac
28   modpath_static="libmod_dav_svn.la libsvn_fs.la libsvn_subr.la"
29   BUILTIN_LIBS="$BUILTIN_LIBS $modpath_current/libmod_dav_svn.la $modpath_current/libsvn_fs.la $modpath_current/libsvn_subr.la"
32 APACHE_MODPATH_FINISH