./build all

AtomicRax

Verified User
Joined
Oct 12, 2003
Messages
81
I run ./build all and getting this:

===> src/modules/frontpage
/bin/sh: line 1: cd: frontpage: No such file or directory
make[3]: *** [all] Error 1
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.29/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.29'
make: *** [build] Error 2

*** The make has failed
 
Last edited:
Hello,

rm -f configure.apache_ssl
./build update
./build all

You might have an older configure.apache_ssl file.

Johm
 
I get the exact same error. Trying to install it on Fedora C1

I have tryed reinstalling everything, even Fedora, but still no luck
:confused:

Kaizer
 
maybe just delete the customapache directory and create it again, download everything and build everything again.

i used to do it and solved my problem last time.
 
neorder said:
maybe just delete the customapache directory and create it again, download everything and build everything again.

i used to do it and solved my problem last time.

I did try this but still no luck, here is some of the errors comming up at the end

In file included from /usr/include/openssl/kssl.h:72,
from /usr/include/openssl/ssl.h:179,
from mod_ssl.h:116,
from mod_ssl.c:65:
/usr/include/krb5.h:2606:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:2866:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:2909:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:2980:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:3003:24: et/com_err.h: No such file or directory
make[4]: *** [mod_ssl.lo] Error 1
make[3]: *** [all] Error 1
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.29/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.29'
make: *** [build] Error 2

*** The make has failed, do you want to try to make again? (y,n):

-----------------
Kaizer
 
did you do

./build clean

before build anything?

anyway, if you really had no luck, you may want to have DA support to take a look as he instructed.
 
Hello,

The message "*** The make has failed, do you want to try to make again? (y,n): " is not the error. It's the build script telling you that an error happend when trying to compile. The error would be located higher up on the screen.

Kaizer:

I think you need the e2fsprogs rpms:
http://www.muug.mb.ca/pub/fedora/linux/core/1/i386/os/Fedora/RPMS/e2fsprogs-1.34-1.i386.rpm
http://www.muug.mb.ca/pub/fedora/linux/core/1/i386/os/Fedora/RPMS/e2fsprogs-devel-1.34-1.i386.rpm

Give those a try and see if they make any difference.

eg:
wget http://path.to/file
rpm -ivh file

John
 
Hi!

I had the first rpm installed but not the devel and that did make the installer come longer, but are now showing theese errors.

---------------------------------------------------
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.
make: *** [all] Error 1

*** The make has failed, do you want to try to make again? (y,n):

---------------------------------------------------

Kaizer
 
Last edited:
Do you have g++? (run "g++") .. should get a "no input files" message if you have it.

You can try to create a test program:

test.c
Code:
#include <stdio.h>
int main(void) { printf("hello world\n"); return 0;}
And then run:

g++ -o test test.c

and then:

./test

it should output:
hello world

John
 
Hi!

I forgot to post my solution. I did not have gcc-c++ installed so i installed it via. up2date and then ran ./build all

Everything was installed sucessfully.

Thank you everyone for you help, very good support DA :)

Kaizer
 
Back
Top