1f9cb24a34
2005-10-18 Vincent Untz <vuntz@gnome.org> * configure.in: * foundation.gnome.org/elections/2005: * foundation.gnome.org/elections/Makefile.am: * foundation.gnome.org/elections/index.wml: * foundation.gnome.org/referenda/2005-10: * foundation.gnome.org/referenda/Makefile.am * foundation.gnome.org/referenda/index.wml: add stuff for the next referendum and the next elections * foundation.gnome.org/elections/index.wml: * foundation.gnome.org/finance/index.wml: * foundation.gnome.org/licensing/guidelines/index.wml: * foundation.gnome.org/licensing/usergroup/index.wml: fix HTML * foundation.gnome.org/licensing/.cvsignore: * foundation.gnome.org/licensing/guidelines/.cvsignore: * foundation.gnome.org/licensing/usergroup/.cvsignore: new * foundation.gnome.org/elections/2000/rules.wml: * foundation.gnome.org/elections/2001/rules.wml: * foundation.gnome.org/elections/2002/rules.wml: * foundation.gnome.org/elections/2003/rules.wml: * foundation.gnome.org/elections/2004/index.wml: add missing link to the charter
40 lines
1.3 KiB
Text
40 lines
1.3 KiB
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
|
|
foundation.gnome.org/Makefile
|
|
foundation.gnome.org/about/Makefile
|
|
foundation.gnome.org/about/history/Makefile
|
|
foundation.gnome.org/about/charter/Makefile
|
|
foundation.gnome.org/contact/Makefile
|
|
foundation.gnome.org/elections/Makefile
|
|
foundation.gnome.org/elections/2000/Makefile
|
|
foundation.gnome.org/elections/2001/Makefile
|
|
foundation.gnome.org/elections/2002/Makefile
|
|
foundation.gnome.org/elections/2003/Makefile
|
|
foundation.gnome.org/elections/2004/Makefile
|
|
foundation.gnome.org/elections/2005/Makefile
|
|
foundation.gnome.org/img/Makefile
|
|
foundation.gnome.org/img/logos/Makefile
|
|
foundation.gnome.org/legal/Makefile
|
|
foundation.gnome.org/licensing/Makefile
|
|
foundation.gnome.org/licensing/guidelines/Makefile
|
|
foundation.gnome.org/licensing/usergroup/Makefile
|
|
foundation.gnome.org/finance/Makefile
|
|
foundation.gnome.org/membership/Makefile
|
|
foundation.gnome.org/news/Makefile
|
|
foundation.gnome.org/referenda/Makefile
|
|
foundation.gnome.org/referenda/2004-10/Makefile
|
|
foundation.gnome.org/referenda/2005-10/Makefile
|
|
])
|