Author: jfrederic.clere(a)jboss.com
Date: 2007-12-17 09:18:16 -0500 (Mon, 17 Dec 2007)
New Revision: 1225
Modified:
trunk/build/unix/buildsrc.rhel-httpd.sh
Log:
Don't regenerate configure... It seems a "special autoconf/autoheader" is
needed.
Also remove the patch that needed to regenerate configure.
Modified: trunk/build/unix/buildsrc.rhel-httpd.sh
===================================================================
--- trunk/build/unix/buildsrc.rhel-httpd.sh 2007-12-17 08:37:26 UTC (rev 1224)
+++ trunk/build/unix/buildsrc.rhel-httpd.sh 2007-12-17 14:18:16 UTC (rev 1225)
@@ -92,10 +92,13 @@
# Remove linux specific patches.
case ${BUILD_SYS} in
linux*)
- remove_list=""
+ # XXX: Somehow we can't apply the patches for the moment. (See configure).
+ remove_list="httpd-2.0.45-deplibs.patch httpd-2.0.54-selinux.patch
httpd-2.2.2-ac260.patch httpd-2.1.10-apctl.patch httpd-2.1.10-apxs.patch
httpd-2.1.10-disablemods.patch"
;;
*)
- remove_list="httpd-2.0.54-selinux.patch httpd-2.1.10-apxs.patch
httpd-2.0.45-deplibs.patch"
+ remove_list="httpd-2.0.45-deplibs.patch httpd-2.0.54-selinux.patch
httpd-2.2.2-ac260.patch httpd-2.1.10-apctl.patch httpd-2.1.10-apxs.patch
httpd-2.1.10-disablemods.patch"
+ # XXX: See above...
+ # remove_list="httpd-2.0.54-selinux.patch httpd-2.1.10-apxs.patch
httpd-2.0.45-deplibs.patch"
;;
esac
if [ -z "${remove_list}" ]; then
@@ -114,6 +117,7 @@
#
# regenerate configure scripts
-(cd ${dirsources}
- autoheader && autoconf || exit 1
-)
+# XXX: It seems that produces a destroyed configure (on f8 and hpux at least).
+#(cd ${dirsources}
+# autoheader && autoconf || exit 1
+#)