Yes.. My build script looks something like this :

cd $APACHE_SOURCE
if [ ! -f configure ]; then
  ./buildconf
  if [ $? -ne 0 ]; then
    echo "buildconf failed !!.. Exiting .."; exit 1;
  fi
fi

if [ ! -f shlibtool ]; then
  ./srclib/pcre/ltconfig --output=shlibtool --disable-static
--srcdir=./srclib/pcre \
    --cache-file=./config.cache ./srclib/pcre/ltmain.sh
  if [ $? -ne 0 ]; then
    echo "shlibtool failed !!.. Exiting .."; exit 1;
  fi
fi

./configure --prefix=/opt/apache2s \
        --enable-dav=shared --enable-dav_fs=shared \
        --enable-ssl --with-ssl=/opt/apache2s/ssl  \
        --enable-mods-shared=all --disable-auth_digest --disable-auth_db \
        --disable-auth-ldap

if [ $? -ne 0 ]; then
  echo "configure failed !!.. Exiting ..
fi


Thanks
-Madhu

-----Original Message-----
From: Justin Erenkrantz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 21, 2001 10:54 AM
To: [EMAIL PROTECTED]
Subject: Re: build fails with latest CVS


On Tue, Aug 21, 2001 at 01:48:30PM -0400, MATHIHALLI,MADHUSUDAN
(HP-Cupertino,ex1) wrote:
> Hi,
>       'not sure if I'm missing something here.. I downloaded the latest
> CVS, configured using : 
> ./configure --prefix=/opt/apache2s --enable-dav=shared
> --enable-dav_fs=shared \
>         --enable-ssl --with-ssl=/opt/apache2s/ssl  \
>         --enable-mods-shared=all --disable-auth_digest --disable-auth_db

Did you rerun buildconf?  -- justin

Reply via email to