summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-05-11 09:37:32 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-05-18 22:21:58 +0200
commit0c7f14af250a7333f792aaab28b88665df122ff7 (patch)
treecc7f7c88977751b676a6ccf711b34d9a222a0224
parentfa529d101b472ff926f8211b39d9f3280155e371 (diff)
hiawatha: bump to version 8.2 and define saner default directories
Bump to version 8.2. Define CONFIG_DIR=/etc/hiawatha, LOG_DIR=/var/log, PID_DIR=/var/run and WEBROOT_DIR=/var/www/hiawatha which are the same as the defaults but without the /usr prefix. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/hiawatha/hiawatha.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/package/hiawatha/hiawatha.mk b/package/hiawatha/hiawatha.mk
index aa245f380..4600c1129 100644
--- a/package/hiawatha/hiawatha.mk
+++ b/package/hiawatha/hiawatha.mk
@@ -1,4 +1,4 @@
-HIAWATHA_VERSION = 8.1
+HIAWATHA_VERSION = 8.2
HIAWATHA_SITE = http://www.hiawatha-webserver.org/files/
ifeq ($(BR2_PACKAGE_HIAWATHA_SSL),y)
@@ -8,6 +8,10 @@ endif
HIAWATHA_CONF_OPT += \
-DENABLE_TOOLKIT=OFF \
- -DENABLE_XSLT=OFF
+ -DENABLE_XSLT=OFF \
+ -DCONFIG_DIR=/etc/hiawatha \
+ -DLOG_DIR=/var/log \
+ -DPID_DIR=/var/run \
+ -DWEBROOT_DIR=/var/www/hiawatha
$(eval $(call CMAKETARGETS))