voting/configure.in
2013-12-18 13:14:03 -05:00

19 lines
395 B
Text

AC_INIT
AM_INIT_AUTOMAKE(foundation-web, 0.1)
AC_ARG_WITH(http_prefix, [ --with-http-prefix=DISTRIBUTOR Specify http prefix for local testing, such as http://localhost/~user/gnomesites/])
if test "x$with_http_prefix" != x ; then
HTTP_PREFIX=$with_http_prefix
else
HTTP_PREFIX=http:/
fi
AC_SUBST(HTTP_PREFIX)
AC_OUTPUT([
Makefile
vote/Makefile
vote/include/Makefile
vote/2013/Makefile
])