summaryrefslogtreecommitdiff
path: root/configure.in
blob: 32ccfab944917a0a3837ffba09c8d6f0e587e30f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
AC_INIT(foundation-web, 0.1)
AM_INIT_AUTOMAKE([foreign])

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/2011/Makefile
vote/2012-confpoll/Makefile
vote/2012-mc/Makefile
vote/2013-confpoll/Makefile
vote/2013-board/Makefile
vote/2014-mc/Makefile
vote/2015-board/Makefile
vote/2016-mc/Makefile
vote/2017-board/Makefile
])