summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ef66b30..e60f519 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,33 +1,33 @@
1AC_INIT([sitecing-showcase], [0.0.1], [sitecing-bugs@klever.net]) 1AC_INIT([sitecing-showcase], [0.0.1], [sitecing-bugs@klever.net])
2AC_CONFIG_SRCDIR([htdocs/index.chtml]) 2AC_CONFIG_SRCDIR([htdocs/index.chtml])
3AC_CONFIG_AUX_DIR([aux]) 3AC_CONFIG_AUX_DIR([aux])
4AC_CONFIG_HEADER([include/acconfig.h]) 4AC_CONFIG_HEADER([include/acconfig.h])
5AM_INIT_AUTOMAKE([dist-bzip2]) 5AM_INIT_AUTOMAKE([dist-bzip2])
6 6
7AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) 7AC_PATH_PROG([XSLTPROC],[xsltproc],[true])
8 8
9PKG_CHECK_MODULES([SITECING],[sitecing],,[ 9PKG_CHECK_MODULES([SITECING],[sitecing >= 0.0.1],,[
10 AC_MSG_ERROR([site-C-ing not found. get it at http://kin.klever.net/sitecing/]) 10 AC_MSG_ERROR([site-C-ing not found. get it at http://kin.klever.net/sitecing/])
11]) 11])
12sitecing_prefix="$(${PKG_CONFIG} --variable=prefix sitecing)" 12sitecing_prefix="$(${PKG_CONFIG} --variable=prefix sitecing)"
13sitecing_bindir="$(${PKG_CONFIG} --variable=bindir sitecing)" 13sitecing_bindir="$(${PKG_CONFIG} --variable=bindir sitecing)"
14AC_MSG_CHECKING([for sitecing-fastcgi binary]) 14AC_MSG_CHECKING([for sitecing-fastcgi binary])
15sitecing_fastcgi="${sitecing_bindir}/sitecing-fastcgi" 15sitecing_fastcgi="${sitecing_bindir}/sitecing-fastcgi"
16if test -x "${sitecing_fastcgi}" ; then 16if test -x "${sitecing_fastcgi}" ; then
17 AC_MSG_RESULT([found ${sitecing_fastcgi}]) 17 AC_MSG_RESULT([found ${sitecing_fastcgi}])
18else 18else
19 AC_MSG_RESULT([not found]) 19 AC_MSG_RESULT([not found])
20 AC_MSG_ERROR([broken site-C-ing install detected]) 20 AC_MSG_ERROR([broken site-C-ing install detected])
21fi 21fi
22AC_MSG_CHECKING([for sitecing-build binary]) 22AC_MSG_CHECKING([for sitecing-build binary])
23sitecing_build="${sitecing_bindir}/sitecing-build" 23sitecing_build="${sitecing_bindir}/sitecing-build"
24if test -x "${sitecing_build}" ; then 24if test -x "${sitecing_build}" ; then
25 AC_MSG_RESULT([found ${sitecing_build}]) 25 AC_MSG_RESULT([found ${sitecing_build}])
26else 26else
27 AC_MSG_RESULT([not found]) 27 AC_MSG_RESULT([not found])
28 AC_MSG_ERROR([broken site-C-ing install detected]) 28 AC_MSG_ERROR([broken site-C-ing install detected])
29fi 29fi
30AC_SUBST([sitecing_prefix]) 30AC_SUBST([sitecing_prefix])
31AC_SUBST([sitecing_bindir]) 31AC_SUBST([sitecing_bindir])
32AC_SUBST([sitecing_fastcgi]) 32AC_SUBST([sitecing_fastcgi])
33AC_SUBST([sitecing_build]) 33AC_SUBST([sitecing_build])