Forum Moderators: phranque
./configure (once the gunzip command does his thing)
and the output i get its:
./configure: make: not found
+ using builtin Expat
./helpers/Testcompile: make : not found
./helpers/Testcompile: make : not found
./helpers/Testcompile: make : not found
./helpers/Testcompile: make : not found
./helpers/Testcompile: make : not found
./helpers/Testcompile: make : not found
+ checking sizeof various data types
./helpers/Testcompile: make : not found
+ doing sanity check on compiler and options
** A test compilation with your Makefile configuration ** failed.The below error output from the compilation ** test will give you an idea what is failing. Note ** that Apache requiresan ANSI C Compiler such as gcc.
========Error output for sanity check===============
./helpers/Testcompile: make : not found
=======End of error report===================
Aborting!
thanks again
Just make sure that GNU 'make' and gcc are in your $PATH. =)
=======Error Output for Sanity Check=================
cd..; -DSOLARIS2=2100 -DUSE_HSREGEX -DUSE_EXPAT-I./lib/expat -lite -DNO_DL_NEEDED ´./apaci´ -o helpers/dummy helpers/dummy.c -lsocket -lnsl -lpthread /usr/ucs/cc: language optional software package not installed ***Error code 1
make: fatal error: command Failed for target ´dummy´
============End of error report========================
i don't know what this could be.
thanks one more time, foy you're help.
mikel
=======Error Output for Sanity Check=================
cd..; -DSOLARIS2=2100 -DUSE_HSREGEX -DUSE_EXPAT-I./lib/expat -lite -DNO_DL_NEEDED ´./apaci´ -o helpers/dummy helpers/dummy.c -lsocket -lnsl -lpthread /usr/ucs/cc: language optional software package not installed ***Error code 1
make: fatal error: command Failed for target ´dummy´
============End of error report========================
i don't know what this could be.
thanks one more time, foy you're help.
mikel
/usr/ucs/cc: language optional software package not installed ***Error code 1
That error means:
a) you're using 'cc' and not 'gcc', and
b) you've not purchased the Sun Development packages
Two options:
1) purchase them (at the cost of, if memory serves, $800-$1200)
2) install gcc, verify that gcc is in your path, and set the 'CC' variable to 'gcc'. This can be done in the Makefile or by setting a variable:
CC=/path/to/gcc ./configure $configure_args
In file included from http_main.c:597:
/usr/include/pthread.h:291:error:parse error before ´*´ token
***Error code 1
make : Fatal error :command Failed for target ´http_main.o´ current working directory /var/mikel/apache_1.3.33/src/main
***Error code 1
The foloing command caused the error:
for i in regex os/unix ap main lib modules; do \
echo "===>src/$i"; \
case ".solaris 2100" in \
.OS390 ¦ .TPF) (cd $i && make SDP=´src/´OPTIM=´´)¦¦exit 1;;\
*)(cd $i && make SDP=´src´ CC=´gcc´ AUX_CFLAGS=´-DSOL aris2=2100 -DUSE_HSREGEX -DUSE_EXPAT -I./lib/expat-lite -DNO_DL_NEEDED {./apaci´ ´RANLIB=´ranlib ´OPTIM=´)¦¦ exit 1;; \ esac;\
eho"<===src/$i" ; \ done
make: Fatal error:command failed for target ´subdirs´ curent directory /var/mikel/apache_1.3.33/src
and one more time thanks for you're help.
Mikel.
1) which 'make' are you using? /usr/ccs/bin/make or the GNU make? 'which make' can tell you.
2) Which version of gcc did you install? for which platform? My box here shows:
bash-2.04$ gcc -dumpversion
2.95.3
bash-2.04$ gcc -dumpmachine
sparc-sun-solaris2.8