DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20634>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20634 configure fails on SGI/Irix 6.5.x Summary: configure fails on SGI/Irix 6.5.x Product: Apache httpd-2.0 Version: 2.0.46 Platform: Other OS/Version: Other Status: NEW Severity: Blocker Priority: Other Component: Build AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] As of apache 2.0.45, the plain configure fails on the following commands. ./srclib/apr/configure, line 2306: sed -e "1s/[ ]*<[lL]ayout[ ]*$LAYOUT[ ]*>[ ]*//;t" \ -e "1,/[ ]*<[lL]ayout[ ]*$LAYOUT[ ]*>[ ]*/d" \ -e '/[ ]*<\/Layout>[ ]*/,$d' \ -e "s/^[ ]*//g" \ -e "s/:[ ]*/=\'/g" \ -e "s/[ ]*$/'/g" \ $srcdir/config.layout > $pldconf The t-command for the sed is not correct evaluated. The result may: prefix='/usr/local' exec_prefix: ${prefix} bindir='${exec_prefix}/bin' sbindir: ${exec_prefix}/sbin libdir='${exec_prefix}/lib' libexecdir: ${exec_prefix}/libexec mandir='${prefix}/man' sysconfdir: ${prefix}/etc+ datadir='${prefix}/share+' installbuilddir: ${datadir}/build errordir='${datadir}/error' iconsdir: ${datadir}/icons htdocsdir='${datadir}/htdocs' manualdir: ${datadir}/manual cgidir='${datadir}/cgi-bin' includedir: ${prefix}/include+ localstatedir='${prefix}/var+' runtimedir: ${localstatedir}/run logfiledir='${localstatedir}/log' proxycachedir: ${localstatedir}/proxy This leads to common configure errors later in the configure process. Removing the first line of this sed command, the old behavior, gets the correct results. prefix='/usr/local' exec_prefix='${prefix}' bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' mandir='${prefix}/man' sysconfdir='${prefix}/etc+' datadir='${prefix}/share+' installbuilddir='${datadir}/build' errordir='${datadir}/error' iconsdir='${datadir}/icons' htdocsdir='${datadir}/htdocs' manualdir='${datadir}/manual' cgidir='${datadir}/cgi-bin' includedir='${prefix}/include+' localstatedir='${prefix}/var+' runtimedir='${localstatedir}/run' logfiledir='${localstatedir}/log' proxycachedir='${localstatedir}/proxy' The same problem occures in ./srclib/apr-util/configure line 1609. I think this problem is special to the sed-command on Irix OSes. But I don't see that this line is necessary for the configure-process. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
