gnu-arch-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnu-arch-users] [BUG] [BAZ] baz-1.5 includes -lintl before -lneon and -


From: John A Meinel
Subject: [Gnu-arch-users] [BUG] [BAZ] baz-1.5 includes -lintl before -lneon and -lgpgme
Date: Wed, 01 Jun 2005 12:47:36 -0500
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

At least on cygwin libgpgme requires libintl. And the gcc for cygwin
requires dependent libraries to come after the original.

All it really means is that in the Makefile.in instead of having:

                               $(objroot)/hackerlab/libhackerlab/libhackerlab.a 
\
                               $(cfg__intl_library) \
                               $(cfg__neon_library) \
                               $(cfg__ssl_library) \
                               $(cfg__crypto_library) \
                               $(cfg__socket_library) \
                               $(cfg__resolv_library) \
                               $(cfg__net_library) \
                               $(cfg__gpgme_library) \
                               $(cfg__expat_library) \
                               $(cfg__pth_library) \
                               -lm

You have:
                               $(objroot)/hackerlab/libhackerlab/libhackerlab.a 
\
                               $(cfg__neon_library) \
                               $(cfg__ssl_library) \
                               $(cfg__crypto_library) \
                               $(cfg__socket_library) \
                               $(cfg__resolv_library) \
                               $(cfg__net_library) \
                               $(cfg__gpgme_library) \
                               $(cfg__expat_library) \
                               $(cfg__pth_library) \
                               $(cfg__intl_library) \
                                -lm

This needs to be done for
src/baz/baz/Makefile.in
src/baz/libarch/tests/Makefile.in
src/baz/commands/tests/Makefile.in

And possibly elsewhere, but these are the ones I know.

John
=:->

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]