/libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined symbol "EVP_idea_cbc"

2010-01-29 Thread Ronny Forberger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

my FreeBSD seems to be broken, since I get the following error when
trying to link against libssl etc:

/libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined symbol
"EVP_idea_cbc"

I am using openssl-0.9.8k_5 from the base system 8.0.

uname -a => FreeBSD sonne.rf.homeunix.net 8.0-RELEASE FreeBSD
8.0-RELEASE #0: Fri Dec  4 21:26:46 CET 2009
r...@sonne.rf.homeunix.net:/usr/obj/usr/src/sys/GENERIC  amd64

Can you help me ? Any further info I will provide.

Thanks,
Ronny

- --
___
Ronny Forberger
ronnyforberger at ronnyforberger.de
PGP public key:
http://www.ronnyforberger.de/~rf/wwwroot/pgp/0x71AE1E17.asc
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAktjNvkACgkQC1+bGHGuHhfVGQCgjKoWYsGjKnGGpxnx4MzwImqw
ES8AnixZdHvvAgJWDS6AWcD9NhYbIiZJ
=mrAj
-END PGP SIGNATURE-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined symbol "EVP_idea_cbc"

2010-01-29 Thread Chuck Swiger
Hi--

On Jan 29, 2010, at 11:29 AM, Ronny Forberger wrote:
> my FreeBSD seems to be broken, since I get the following error when
> trying to link against libssl etc:
> 
> /libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined symbol
> "EVP_idea_cbc"
> 
> I am using openssl-0.9.8k_5 from the base system 8.0.

Actually, the base system OpenSSL would be located at /usr/lib/libssl.so.# ; 
the error message you display there indicates that you've got another 
installation of OpenSSL under /usr/local.  Running:

  pkg_which /usr/local/lib/libssl.so.6

...might indicate whether you installed it from a port, in which case updating 
ports and rebuilding it would likely help.

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined symbol "EVP_idea_cbc"

2010-01-29 Thread Ronny Forberger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Chuck Swiger schrieb:
> Hi--
>
> On Jan 29, 2010, at 11:29 AM, Ronny Forberger wrote:
>> my FreeBSD seems to be broken, since I get the following error
>> when trying to link against libssl etc:
>>
>> /libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined
>> symbol "EVP_idea_cbc"
>>
>> I am using openssl-0.9.8k_5 from the base system 8.0.
>
> Actually, the base system OpenSSL would be located at
> /usr/lib/libssl.so.# ; the error message you display there
> indicates that you've got another installation of OpenSSL under
> /usr/local.  Running:
>
> pkg_which /usr/local/lib/libssl.so.6
>
> ...might indicate whether you installed it from a port, in which
> case updating ports and rebuilding it would likely help.
>
> Regards,
Thanks for the help. I installed from a binary package using pkg_add
- -r openssl since I cannot build openssl from ports:

[r...@sonne ~]# portupgrade -f openssl
** Port marked as IGNORE: security/openssl:
is marked as broken: No patchset for 0.9.8
** Listing the failed packages (-:ignored / *:skipped / !:failed)
- security/openssl (marked as IGNORE)

(Using RELEASE_8_0_0)

I dont really want to upgrade to Freebsd-current Ports. How can I fix
the missing symbol error then?

Cheers,

- --
___
Ronny Forberger
ronnyforberger at ronnyforberger.de
PGP public key:
http://www.ronnyforberger.de/~rf/wwwroot/pgp/0x71AE1E17.asc
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAktjQ5AACgkQC1+bGHGuHhfGzQCfUqEyRtF1GSxV1JnlO5DEZcNT
aKcAnjwjEOWRWqjem44FDtPy5P2MbO45
=sKHQ
-END PGP SIGNATURE-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /libexec/ld-elf.so.1: /usr/local/lib/libssl.so.6: Undefined symbol "EVP_idea_cbc"

2010-01-29 Thread Chuck Swiger
On Jan 29, 2010, at 12:22 PM, Ronny Forberger wrote:
> Thanks for the help. I installed from a binary package using pkg_add
> - -r openssl since I cannot build openssl from ports:
> 
> [r...@sonne ~]# portupgrade -f openssl
> ** Port marked as IGNORE: security/openssl:
> is marked as broken: No patchset for 0.9.8
> ** Listing the failed packages (-:ignored / *:skipped / !:failed)
> - security/openssl (marked as IGNORE)
> 
> (Using RELEASE_8_0_0)
> 
> I dont really want to upgrade to Freebsd-current Ports. How can I fix the 
> missing symbol error then?

Delete the broken OpenSSL port and use OpenSSL from the base system instead.  
Anything which is trying to use the /usr/local/lib version will have to be 
recompiled

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"