Mercurial > feed
view configure.ac @ 15:0140b1662994
Update URL used in RSS test
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Tue, 02 Aug 2011 16:20:14 -0400 |
parents | ad85b8813e8a |
children |
line wrap: on
line source
AC_INIT([urweb_feed], [1.0]) AC_USE_SYSTEM_EXTENSIONS AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define]) AC_PROG_CC() AC_PROG_LIBTOOL() AC_CONFIG_MACRO_DIR([m4]) LIBCURL_CHECK_CONFIG(yes, [], [echo >/dev/null], [echo "You must install libcurl development files."; exit 1]) if test [$prefix = "NONE"]; then prefix=/usr/local fi if test [-z $LIB]; then LIB=$prefix/lib/urweb fi if test [-z $INCLUDE]; then INCLUDE=$prefix/include/urweb fi AC_SUBST(LIB) AC_SUBST(INCLUDE) AC_CONFIG_FILES([ Makefile src/c/Makefile src/ur/config.urp ]) AC_OUTPUT() cat <<EOF Ur/Web XML feed library configuration: lib directory: LIB $LIB include directory: INCLUDE $INCLUDE EOF