diff --git a/SysBuild/tools/httpd b/SysBuild/tools/httpd index 830e621..f1c4973 100644 --- a/SysBuild/tools/httpd +++ b/SysBuild/tools/httpd @@ -81,6 +81,7 @@ mk32() { ./configure --host=$TARGET32 \ --sysconfdir=/etc/httpd \ --enable-modules=all \ + --enable-mods-shared=all \ --enable-ssl \ --enable-suexec \ --enable-so \ @@ -105,6 +106,7 @@ mk() { ./configure --host=$TARGET \ --sysconfdir=/etc/httpd \ --enable-modules=all \ + --enable-mods-shared=all \ --enable-ssl \ --enable-suexec \ --enable-so \ @@ -126,4 +128,8 @@ mk() { postmk() { cp -av /opt/apache2 $TMPROOT GetSVN Viitor_httpd $TMPROOT + cd $TMPROOT/apache2 + tar -cf - .|tar -C ../opt/apache2 -xvf - + cd - + rm -r $TMPROOT/apache2 }