This is a discussion on problems with make on solaris within the Apache Web Server forums, part of the Web Server and Related Forums category; With Apache httpd-2.0.50 on Solaris 9 SPARC I'm having a problem compiling. Here are my basic ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
With Apache httpd-2.0.50 on Solaris 9 SPARC I'm having a problem compiling.
Here are my basic steps: ../configure --enable-ssl # the configure works fine but when I make # I get: /export/home/downloads/apache/httpd-2.0.50/srclib/apr/libtool: ar: command not found make[3]: *** [libapr-0.la] Error 127 make[3]: Leaving directory `/export/home/downloads/apache/httpd-2.0.50/srclib/apr' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/export/home/downloads/apache/httpd-2.0.50/srclib/apr' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/export/home/downloads/apache/httpd-2.0.50/srclib' make: *** [all-recursive] Error 1 Any ideas? Am I missing a package? lib? I appreciate any help. |
|
|||
|
"Bill Thomas" <bthomas@tca.net> writes:
> With Apache httpd-2.0.50 on Solaris 9 SPARC I'm having a problem compiling. > Here are my basic steps: > > ./configure --enable-ssl > # the configure works fine but when I > make > # I get: > > /export/home/downloads/apache/httpd-2.0.50/srclib/apr/libtool: ar: command > not found Make sure /usr/ccs/bin/ar exists and add /usr/ccs/bin to your PATH. -- Michael Fuhr http://www.fuhr.org/~mfuhr/ |
|
|||
|
Thank you. That worked.
"Michael Fuhr" <mfuhr@fuhr.org> wrote in message news:412e79b2$1_2@omega.dimensional.com... > "Bill Thomas" <bthomas@tca.net> writes: > >> With Apache httpd-2.0.50 on Solaris 9 SPARC I'm having a problem >> compiling. >> Here are my basic steps: >> >> ./configure --enable-ssl >> # the configure works fine but when I >> make >> # I get: >> >> /export/home/downloads/apache/httpd-2.0.50/srclib/apr/libtool: ar: >> command >> not found > > Make sure /usr/ccs/bin/ar exists and add /usr/ccs/bin to your PATH. > > -- > Michael Fuhr > http://www.fuhr.org/~mfuhr/ |