Whether or not gcc is the C compiler in use on HP-UX, $with_gcc is not
set (in either case), so the test

        if test $with_gcc = yes; then

always generates an error from test.  The only other place $with_gcc is
used is for Solaris, and my guess is that too would generate an error.
I haven't tested it yet, though.

It looks like $with_gcc isn't being set early enough in the generated
configure script for it to be used when we get to those tests.

Something like:

if test X"$GCC" = X"yes" ; then
        with_gcc=yes
else
        with_gcc=no
fi

right after the AC_PROG_CC would probably work, but it's a hack.  Someone
more familiar with the entire configuration process could probably come
up with a better way of doing this.  If not, I would be happy to submit
a patch that does the test above, for configure.ac for both libtool
and libltdl.

Tim
-- 
Tim Mooney                              [EMAIL PROTECTED]
Information Technology Services         (701) 231-1076 (Voice)
Room 242-J6, IACC Building              (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164


_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to