DO NOT REPLY [Bug 8015] - --enable-info problem in configure

2003-02-23 Thread bugzilla
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=8015.
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=8015

--enable-info problem in configure

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 8015] - --enable-info problem in configure

2002-04-12 Thread bugzilla
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=8015.
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=8015

--enable-info problem in configure





--- Additional Comments From [EMAIL PROTECTED]  2002-04-12 13:56 ---
Could you post your entire configure invocation please?  Did you do any 
prep after unpacking the tarball and before running configure (e.g., did you 
run buildconf)?  I'm not suggesting that you should run buildconf; I just 
wondered if you did and there is something funky going on with the 
autoconf or libtool on your machine.  Thanks!


DO NOT REPLY [Bug 8015] - --enable-info problem in configure

2002-04-12 Thread bugzilla
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=8015.
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=8015

--enable-info problem in configure





--- Additional Comments From [EMAIL PROTECTED]  2002-04-12 14:45 ---
This is the script used to configure with.
No prior activity was conducted before running configure (ie, buildconf, 
editing code, etc). The name of this script is makeme, I run it from the root 
of the apache 2.0.35 install tree. 

#!/bin/sh
 
# --activate-module=src/modules/php4/libphp4.a \
# --enable-module=mod_info \
 
./configure \
--with-layout=RedHat \
--enable-shared=max \
--enable-rule=SHARED_CORE \
#--enable-module=src/modules/php4/libphp4.a \
--enable-info \
--disable-userdir \
--enable-so \
--enable-vhost-alias \
--enable-cgi \
--enable-ssl \
--enable-usertrack \
--enable-unique-id \
$@

The error at the end is:

./makeme: --enable-info: command not 
found   

The httpd.conf contains:
Location /server-info
SetHandler server-info
Order deny,allow
Deny from all
Allow from 192.168.1, 127
/Location


DO NOT REPLY [Bug 8015] - --enable-info problem in configure

2002-04-12 Thread bugzilla
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=8015.
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=8015

--enable-info problem in configure

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2002-04-12 14:55 ---
Cute.

You can't put # comments in a continuation line like that.  (The continuation
character is also commented out, so the command ends at that line and the next
line is taken to be a new command.)
Take out the line starting in # and everything should work again.

Also, you can't have commas in Allow from statements.

Thanks for using Apache.