Skip to Content.
Sympa Menu

sm-sorcery-bugs - [SM-Sorcery-Bugs] [Bug 3433] New: apache fails to cast after apache2 failed

sm-sorcery-bugs AT lists.ibiblio.org

Subject: Bugs for Sorcery are reported here

List archive

Chronological Thread  
  • From: bugzilla-daemon AT metalab.unc.edu
  • To: sm-sorcery-bugs AT lists.ibiblio.org
  • Subject: [SM-Sorcery-Bugs] [Bug 3433] New: apache fails to cast after apache2 failed
  • Date: Sat, 24 May 2003 05:50:26 -0400

http://bugs.sourcemage.org/show_bug.cgi?id=3433

Summary: apache fails to cast after apache2 failed
Product: Sorcery
Version: Devel
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: subroutines
AssignedTo: sm-sorcery-bugs AT lists.ibiblio.org
ReportedBy: martin AT lddd.org


apache fails with:
Configuring for Apache, Version 1.3.27
+ using installation path layout: GNU (config.layout)
configure:Error: invalid option '--enable-ssl'
! Problem Detected !

though there isn't particulary much about ssl in the apache spell.
It seems to get that from apache2. I think the get_depends_options accidently
gets the
dependancy from apache2.
A small change seems to fix that.
in libstate, function get_depends_options.

from awk -F ':' "/^$START/ { if (\$3 == \"on\") OPTS = OPTS \" \" \$5; else
OPTS = OPTS \" \" \$6; } END { print OPTS; }" $DEPENDS_STATUS

to awk -F ':' "/^$START:/ { if (\$3 == \"on\") OPTS = OPTS \" \" \$5; else
OPTS = OPTS \" \" \$6; } END { print OPTS; }" $DEPENDS_STATUS

(the regex only checks if the string is at the beginning of the string, which
aparently is the case
with apache and apache2)



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



  • [SM-Sorcery-Bugs] [Bug 3433] New: apache fails to cast after apache2 failed, bugzilla-daemon, 05/24/2003

Archive powered by MHonArc 2.6.24.

Top of Page