problem when install apache in AIx4.2


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers problem when install apache in AIx4.2
# 1  
Old 09-07-2001
problem when install apache in AIx4.2

when i run
#./configure --prefix=/usr/local/apache

then have an error

Creating Makefile in src
+ configured for IBM AIX 4.2 platform
Error: could not find any of these C compilers
anywhere in your PATH: gcc cc acc c89
Configure terminated



How could i find c compilers? help me!
# 2  
Old 09-07-2001
Probably you either don't have a C compiler installed or there is one installed, but it's not in your path.





Figure out where your C compiler is located using whereis or locate command. If you found one add its path to your existing PATH environment variable.

You can set the path using
setenv PATH $PATH:/path/to/cc
or
export PATH=$PATH:/path/to/cc


It depends on what shell your using.


# 3  
Old 09-07-2001
Yu can use "smitty" to check to see what
you have installed. You can check for *gnu*
(for gcc and g++) or ibmcxx* (for the IBM C/C++
compiler) and this should list any installed
packages. It is also possible to install gnu
software "manually" (not using SMIT) and in this
case, your best bet is to use "find".
# 4  
Old 09-07-2001
as a rule of thumb when compileing GNU software. use gcc. (this utility for most people is a standard download and install)

as suggested above just find your compiler and add it to your path. to find out what your path is set to currently:

#echo $PATH
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Solaris install php as an apache module

Hi, I need to install php 5.5.30 as an apache (2.4.17) module on Solaris 10. Please any help is wellcome. Some aditional info: /usr/sfw/bin/gcc -v Reading specs from /usr/sfw/lib/gcc/sparc-sun-solaris2.10/3.4.3/specs bash-3.2# g++ -v Reading specs from... (1 Reply)
Discussion started by: lbslbs
1 Replies

2. Solaris

Install apache 2.2.22 on Solaris 10

Hi all, This is Solaris 10 OS I received this error on Server, -bash-3.00$ /usr/local/apache2/bin/httpd -v ld.so.1: httpd: fatal: libaprutil-1.so.0: open failed: No such file or directory Killed -bash-3.00$ How to resolve this dependencies which are not resolved? ... (0 Replies)
Discussion started by: manalisharmabe
0 Replies

3. Solaris

I can't get apache or gzip to install

Ok who wants to play with this server and assist me? I'm super stuck and need to get it up and running. :) (6 Replies)
Discussion started by: Ragingbull
6 Replies

4. UNIX for Dummies Questions & Answers

Apache Install

My current apache has the following listing. ls admin bin cgi corefiles htdocs include logs manual openssl build conf error icons lib man modules It has httpd.conf inside the conf directory and many .so files... (6 Replies)
Discussion started by: mohtashims
6 Replies

5. SCO

How to install Apache 5.0 and JRE 1.4.0

Hello, I have a problem to run the the Web aplication Cincom Mantis XML on a SCO 6.0 with MP2. My Tomcat is 4.1.31 The Cincom support tell me tha I need the Apache Tomcat 5.5 and Java JRE 1.4.0 Can I install a linux version into SCO 6.0 system ? Thank you for your help. ... (1 Reply)
Discussion started by: hrmaldonado
1 Replies

6. UNIX for Dummies Questions & Answers

Help needed to install Apache Tomcat

I want to setup apache tomcat on my linux distribution . I Have downloaded apache tomcat from below mentioned link. Administration Web Application: Apache Tomcat - Apache Tomcat 5 Downloads The setup was in following format. apache-tomcat-5.5.29-admin.tar.gz Below are the command i... (7 Replies)
Discussion started by: pinga123
7 Replies

7. Solaris

Apache Install error on Solaris 10 x86

I am trying to install apache on a sun server (Solaris 10 x86) but when I execute the compile i have the following error; configure failed for srclib/apr Can anybody help with this. Thanks for the usual help oh-daa (2 Replies)
Discussion started by: oh-daa
2 Replies

8. Web Development

hosting service that allow me to compile and install my own apache

Is there any cheap hosting service that allow me to compile and install my own apache and php ? thanks (1 Reply)
Discussion started by: aneuryzma
1 Replies

9. UNIX for Advanced & Expert Users

how to install apache-1.3.20-16.src.rpm into rh7.3

hi all expert, can antone tell me ho to install apache-1.3.20-16.src.rpm into redhat 7.3. I ready try many many time and using many method i still can not install this apache. Please help me................................... (1 Reply)
Discussion started by: foong
1 Replies

10. UNIX for Dummies Questions & Answers

How to install and configure Apache on SCO openserver 5

I have just been made responsible for setting up Apache on our office SCO box. I have searched the internet, but haven't found any details that I can make sense of. I'm unfamiliar with Unix and would appreciate any help members of the forum have to offer. (1 Reply)
Discussion started by: cstovall
1 Replies
Login or Register to Ask a Question