summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--NEWS.xml7
-rw-r--r--configure.ac2
2 files changed, 8 insertions, 1 deletions
diff --git a/NEWS.xml b/NEWS.xml
index d1d89f6..cbe197d 100644
--- a/NEWS.xml
+++ b/NEWS.xml
@@ -1,6 +1,13 @@
<?xml version="1.0" encoding="us-ascii"?>
<news>
+ <version version="0.0.1" date="April 3rd, 2005">
+ <ni>added metasyntax quick reference</ni>
+ <ni>"really simple page" example added</ni>
+ <ni>made use of recently introduced pragma 'main'</ni>
+ <ni>added "browse-through" navigation</ni>
+ <ni>minor fixes</ni>
+ </version>
<version version="0.0" date="January 29th, 2005">
<ni>Initial release</ni>
</version>
</news>
diff --git a/configure.ac b/configure.ac
index 744fe50..ef66b30 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,49 +1,49 @@
-AC_INIT([sitecing-showcase], [0.0-svn], [sitecing-bugs@klever.net])
+AC_INIT([sitecing-showcase], [0.0.1], [sitecing-bugs@klever.net])
AC_CONFIG_SRCDIR([htdocs/index.chtml])
AC_CONFIG_AUX_DIR([aux])
AC_CONFIG_HEADER([include/acconfig.h])
AM_INIT_AUTOMAKE([dist-bzip2])
AC_PATH_PROG([XSLTPROC],[xsltproc],[true])
PKG_CHECK_MODULES([SITECING],[sitecing],,[
AC_MSG_ERROR([site-C-ing not found. get it at http://kin.klever.net/sitecing/])
])
sitecing_prefix="$(${PKG_CONFIG} --variable=prefix sitecing)"
sitecing_bindir="$(${PKG_CONFIG} --variable=bindir sitecing)"
AC_MSG_CHECKING([for sitecing-fastcgi binary])
sitecing_fastcgi="${sitecing_bindir}/sitecing-fastcgi"
if test -x "${sitecing_fastcgi}" ; then
AC_MSG_RESULT([found ${sitecing_fastcgi}])
else
AC_MSG_RESULT([not found])
AC_MSG_ERROR([broken site-C-ing install detected])
fi
AC_MSG_CHECKING([for sitecing-build binary])
sitecing_build="${sitecing_bindir}/sitecing-build"
if test -x "${sitecing_build}" ; then
AC_MSG_RESULT([found ${sitecing_build}])
else
AC_MSG_RESULT([not found])
AC_MSG_ERROR([broken site-C-ing install detected])
fi
AC_SUBST([sitecing_prefix])
AC_SUBST([sitecing_bindir])
AC_SUBST([sitecing_fastcgi])
AC_SUBST([sitecing_build])
config_sitecing="config.sitecing"
rm -f "${config_sitecing}"
SC_BUILD_CONF([${config_sitecing}],[CPPFLAGS],[${SITECING_CFLAGS}])
SC_BUILD_CONF([${config_sitecing}],[LDFLAGS],[${SITECING_LIBS}])
AC_SUBST_FILE([config_sitecing])
SC_WEB_ROOT([web_src_root],[web_run_root])
SC_USER([sitecing_user])
AC_DEFINE_UNQUOTED([WEB_ROOT],["${web_src_root}"],[the site root])
AC_DEFINE_UNQUOTED([WEB_SRC_ROOT],["${web_src_root}"],[the site root])
AC_DEFINE_UNQUOTED([WEB_RUN_ROOT],["${web_run_root}"],[the site root])
v_hostname="$(hostname)"
AC_MSG_CHECKING([for virtual host name])