You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Juergen Weber <we...@yahoo.com> on 2004/11/30 18:34:31 UTC

[users@httpd] httpd-2.0.52 configure does not find BerkeleyDB.4.3 on AIX 5.2

Hi,

Configure does not find BerkeleyDB.4.3 on AIX 5.2.
This seems do be
http://issues.apache.org/bugzilla/show_bug.cgi?id=24337

Contrary to comment 4 from there I do not think a
non-working configure is a feature.

The tip from
http://www.mail-archive.com/dev@httpd.apache.org/msg17788.html
setting LDFLAGS and CFLAGS does not help, neither
setting LIBPATH (which is LD_LIBRARY_PATH for AIX).

Before I reopen Bug 24337 I wanted to ask here if I
did anything wrong.

Thanks,
Juergen




configure --prefix=/fireba/apache --enable-module=ssl
--enable-module=so --enable-module=rewrite
--enable-module=proxy  --enable-dav  --enable-info
--with-berkeley-db

checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... powerpc-ibm-aix5.2.0.0
checking host system type... powerpc-ibm-aix5.2.0.0
checking target system type... powerpc-ibm-aix5.2.0.0

Configuring Apache Portable Runtime library ...

checking for APR... reconfig
configuring package in srclib/apr now
checking build system type... powerpc-ibm-aix5.2.0.0
checking host system type... powerpc-ibm-aix5.2.0.0
checking target system type... powerpc-ibm-aix5.2.0.0
Configuring APR library
Platform: powerpc-ibm-aix5.2.0.0
checking for working mkdir -p... yes
APR Version: 0.9.5
checking for chosen layout... apr
checking for gcc... gcc


...

configure: WARNING: db.h: accepted by the compiler,
rejected by the preprocessor!
configure: WARNING: db.h: proceeding with the
preprocessor's result
configure: WARNING:     ##
------------------------------------ ##
configure: WARNING:     ## Report this to
bug-autoconf@gnu.org. ##
configure: WARNING:     ##
------------------------------------ ##
checking for db.h... no
checking for Berkeley DB 2 in the standard places...
checking db2/db.h usability... no
checking db2/db.h presence... no
checking for db2/db.h... no
checking db.h usability... yes
checking db.h presence... no
configure: WARNING: db.h: accepted by the compiler,
rejected by the preprocessor!
configure: WARNING: db.h: proceeding with the
preprocessor's result
configure: WARNING:     ##
------------------------------------ ##
configure: WARNING:     ## Report this to
bug-autoconf@gnu.org. ##
configure: WARNING:     ##
------------------------------------ ##
checking for db.h... no
checking db2/db.h usability... no
checking db2/db.h presence...


		
__________________________________ 
Do you Yahoo!? 
Meet the all-new My Yahoo! - Try it today! 
http://my.yahoo.com 
 


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] httpd help

Posted by Luke Shannon <ls...@hypermedia.com>.
No, this will do the trick nicely. Thank you.

----- Original Message ----- 
From: "Ralf Glauberman" <rg...@michaeli-gymnasium.de>
To: <us...@httpd.apache.org>
Sent: Tuesday, November 30, 2004 5:05 PM
Subject: Re: [users@httpd] httpd help


> you can use
> <Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
>     Options Indexes FollowSymLinks
>     AllowOverride All
>     Order allow,deny
>     Allow from host 10.208.3.105 204.225.84.27
> </Directory>
>
> <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
>     Options none
>     AllowOverride All
>     Order allow,deny
>     Allow from all
> </Directory>
>
> this will allow only the two users to access
> /usr/apache/apache_1.3.27/htdocs/bolt but all users to access
> /usr/apache/apache_1.3.27/htdocs/bolt/public. it will also disable
autoindex
> for public, you don't want a directory-listing for your errordocuments, do
> you?
>
> ----- Original Message ----- 
> From: "Luke Shannon" <ls...@hypermedia.com>
> To: <us...@httpd.apache.org>; "Joshua Slive" <js...@gmail.com>
> Sent: Tuesday, November 30, 2004 6:56 PM
> Subject: Re: [users@httpd] httpd help
>
>
> > Thanks Joshua! The second option:
> >
> > <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
> > <Files 500.html>
> > Allow from all
> > </Files>
> > </Directory>
> >
> > Is what I am looking for. Can extend this to include the whole public
> > folder
> > (the images used in 500.html need to be accessable as well).
> >
> > Also since it looks like I will be doing more of this type of thing what
> > is
> > a good reference book I can pick up for a beginner to perform tasks such
> > as
> > these?
> >
> > Thanks,
> >
> > Luke
> >
> > ----- Original Message ----- 
> > From: "Joshua Slive" <js...@gmail.com>
> > To: <us...@httpd.apache.org>
> > Sent: Tuesday, November 30, 2004 12:46 PM
> > Subject: Re: [users@httpd] httpd help
> >
> >
> >> On Tue, 30 Nov 2004 12:43:01 -0500, Luke Shannon
> >> <ls...@hypermedia.com> wrote:
> >> > Hi;
> >> >
> >> > I have an entry in my file:
> >> >
> >> > <Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
> >> >     Options Indexes FollowSymLinks
> >> >     AllowOverride All
> >> >     Order allow,deny
> >> >     Allow from host 10.208.3.105 204.225.84.27
> >> > </Directory>
> >> >
> >> > This allows only people from the IP addresses to see the files. Other
> > people
> >> > need to see a specific html document.  Here is what is in the
.htaccess
> > file
> >> > for bolt:
> >> >
> >> > ErrorDocument 403 /public/500.html
> >> >
> >> > The problem is this public/500.html is in htdocs/bolt so the server
> > won't
> >> > let anyone see it.
> >> >
> >> > I am very new to Apache what can I do some not allowed clients can at
> > least
> >> > see this one document?
> >>
> >> Well, one easy way to do this is to use an Alias to point the /public
> >> directory at someplace that is not convered by the access
> >> restrictions.  Another way is
> >>
> >>  <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
> >> <Files 500.html>
> >> Allow from all
> >> </Files>
> >> </Directory>
> >>
> >> Joshua.
> >>
> >> ---------------------------------------------------------------------
> >> The official User-To-User support forum of the Apache HTTP Server
> >> Project.
> >> See <URL:http://httpd.apache.org/userslist.html> for more info.
> >> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> >> For additional commands, e-mail: users-help@httpd.apache.org
> >>
> >>
> >
> >
> >
> > ---------------------------------------------------------------------
> > The official User-To-User support forum of the Apache HTTP Server
Project.
> > See <URL:http://httpd.apache.org/userslist.html> for more info.
> > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> > For additional commands, e-mail: users-help@httpd.apache.org
> >
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] httpd help

Posted by Ralf Glauberman <rg...@michaeli-gymnasium.de>.
you can use
<Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from host 10.208.3.105 204.225.84.27
</Directory>

<Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
    Options none
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

this will allow only the two users to access 
/usr/apache/apache_1.3.27/htdocs/bolt but all users to access
/usr/apache/apache_1.3.27/htdocs/bolt/public. it will also disable autoindex 
for public, you don't want a directory-listing for your errordocuments, do 
you?

----- Original Message ----- 
From: "Luke Shannon" <ls...@hypermedia.com>
To: <us...@httpd.apache.org>; "Joshua Slive" <js...@gmail.com>
Sent: Tuesday, November 30, 2004 6:56 PM
Subject: Re: [users@httpd] httpd help


> Thanks Joshua! The second option:
>
> <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
> <Files 500.html>
> Allow from all
> </Files>
> </Directory>
>
> Is what I am looking for. Can extend this to include the whole public 
> folder
> (the images used in 500.html need to be accessable as well).
>
> Also since it looks like I will be doing more of this type of thing what 
> is
> a good reference book I can pick up for a beginner to perform tasks such 
> as
> these?
>
> Thanks,
>
> Luke
>
> ----- Original Message ----- 
> From: "Joshua Slive" <js...@gmail.com>
> To: <us...@httpd.apache.org>
> Sent: Tuesday, November 30, 2004 12:46 PM
> Subject: Re: [users@httpd] httpd help
>
>
>> On Tue, 30 Nov 2004 12:43:01 -0500, Luke Shannon
>> <ls...@hypermedia.com> wrote:
>> > Hi;
>> >
>> > I have an entry in my file:
>> >
>> > <Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
>> >     Options Indexes FollowSymLinks
>> >     AllowOverride All
>> >     Order allow,deny
>> >     Allow from host 10.208.3.105 204.225.84.27
>> > </Directory>
>> >
>> > This allows only people from the IP addresses to see the files. Other
> people
>> > need to see a specific html document.  Here is what is in the .htaccess
> file
>> > for bolt:
>> >
>> > ErrorDocument 403 /public/500.html
>> >
>> > The problem is this public/500.html is in htdocs/bolt so the server
> won't
>> > let anyone see it.
>> >
>> > I am very new to Apache what can I do some not allowed clients can at
> least
>> > see this one document?
>>
>> Well, one easy way to do this is to use an Alias to point the /public
>> directory at someplace that is not convered by the access
>> restrictions.  Another way is
>>
>>  <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
>> <Files 500.html>
>> Allow from all
>> </Files>
>> </Directory>
>>
>> Joshua.
>>
>> ---------------------------------------------------------------------
>> The official User-To-User support forum of the Apache HTTP Server 
>> Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
>> For additional commands, e-mail: users-help@httpd.apache.org
>>
>>
>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] httpd help

Posted by Luke Shannon <ls...@hypermedia.com>.
Thanks Joshua! The second option:

 <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
<Files 500.html>
Allow from all
</Files>
</Directory>

Is what I am looking for. Can extend this to include the whole public folder
(the images used in 500.html need to be accessable as well).

Also since it looks like I will be doing more of this type of thing what is
a good reference book I can pick up for a beginner to perform tasks such as
these?

Thanks,

Luke

----- Original Message ----- 
From: "Joshua Slive" <js...@gmail.com>
To: <us...@httpd.apache.org>
Sent: Tuesday, November 30, 2004 12:46 PM
Subject: Re: [users@httpd] httpd help


> On Tue, 30 Nov 2004 12:43:01 -0500, Luke Shannon
> <ls...@hypermedia.com> wrote:
> > Hi;
> >
> > I have an entry in my file:
> >
> > <Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
> >     Options Indexes FollowSymLinks
> >     AllowOverride All
> >     Order allow,deny
> >     Allow from host 10.208.3.105 204.225.84.27
> > </Directory>
> >
> > This allows only people from the IP addresses to see the files. Other
people
> > need to see a specific html document.  Here is what is in the .htaccess
file
> > for bolt:
> >
> > ErrorDocument 403 /public/500.html
> >
> > The problem is this public/500.html is in htdocs/bolt so the server
won't
> > let anyone see it.
> >
> > I am very new to Apache what can I do some not allowed clients can at
least
> > see this one document?
>
> Well, one easy way to do this is to use an Alias to point the /public
> directory at someplace that is not convered by the access
> restrictions.  Another way is
>
>  <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
> <Files 500.html>
> Allow from all
> </Files>
> </Directory>
>
> Joshua.
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] httpd help

Posted by Joshua Slive <js...@gmail.com>.
On Tue, 30 Nov 2004 12:43:01 -0500, Luke Shannon
<ls...@hypermedia.com> wrote:
> Hi;
> 
> I have an entry in my file:
> 
> <Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
>     Options Indexes FollowSymLinks
>     AllowOverride All
>     Order allow,deny
>     Allow from host 10.208.3.105 204.225.84.27
> </Directory>
> 
> This allows only people from the IP addresses to see the files. Other people
> need to see a specific html document.  Here is what is in the .htaccess file
> for bolt:
> 
> ErrorDocument 403 /public/500.html
> 
> The problem is this public/500.html is in htdocs/bolt so the server won't
> let anyone see it.
> 
> I am very new to Apache what can I do some not allowed clients can at least
> see this one document?

Well, one easy way to do this is to use an Alias to point the /public
directory at someplace that is not convered by the access
restrictions.  Another way is

 <Directory "/usr/apache/apache_1.3.27/htdocs/bolt/public">
<Files 500.html>
Allow from all
</Files>
</Directory>

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] httpd help

Posted by Luke Shannon <ls...@hypermedia.com>.
Hi;

I have an entry in my file:

<Directory "/usr/apache/apache_1.3.27/htdocs/bolt">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from host 10.208.3.105 204.225.84.27
</Directory>

This allows only people from the IP addresses to see the files. Other people
need to see a specific html document.  Here is what is in the .htaccess file
for bolt:

ErrorDocument 403 /public/500.html

The problem is this public/500.html is in htdocs/bolt so the server won't
let anyone see it.

I am very new to Apache what can I do some not allowed clients can at least
see this one document?

Thanks,

Luke



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org