Compiling ngobjweb module for apache2
a note on compiling the ngobjweb-module for apache2 on Debian (SID in my case but should work with SARGE too)
you can find details on installing OpenGroupware on Debian here:
install apache2 packages:
apt-get install apache2 apache2-dev
The following changes where necessary for compiling the ngobjweb module for apache2 on Debian sid:
you have to change the CFLAGS-value to make gcc find the apache2 includes
GNUMakeFile:
APACHE = /usr
APXS = $(APACHE)/bin/apxs2
HTTPD = $(APACHE)/sbin/apache2
.
.
.
CFLAGS = -Wall -I. -I/usr/include/apache2 -I/usr/include/apr-0 -fPIC $(APXS_CFLAGS) $(APXS_INCLUDE_DIRS)