Mailing List Archive

rsa/idea/skipjack modules compile failed
Hi,

I compiled GnuPG 1.0.0 with the named modules but didn't work:

h0rus:~/.gnupg$ gpg --version
gpg (GnuPG) 1.0.0
Copyright (C) 1999 Free Software Foundation, Inc.
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. See the file COPYING for details.

Supported algorithms:
Cipher: 3DES, CAST5, BLOWFISH, TWOFISH
Pubkey: ELG-E, DSA, ELG
Hash: MD5, SHA1, RIPEMD160

The system is Debian 2.1 (glibc2.1) Linux 2.2.10

The configure options I used (btw, using gettext doesn't help with
language support, it's still in English).

./configure --enable-static-rnd=linux --with-included-gettext
--enable-m-guard

What did I do wrong? (or what I missed?)
I copied and compiled rsa.c, idea.c, and skipjack.c in
/usr/local/gnupg-1.0.0/cipher, and changed the Makefile.in in cipher/.
Find attached a diff file of the old and new cipher/Makefile.in


TIA

--
Horacio Anno MMDCCLII ad Urbe condita
mailto:homega@ciberia.es
~ Spain ~Spanje ~ Spanien
--------------------------------------------------------------------
Key fingerprint = F4EE AE5E 2F01 0DB3 62F2 A9F4 AD31 7093 4233 7AE6
Re: rsa/idea/skipjack modules compile failed [ In reply to ]
On Mon, Nov 22, 1999 at 10:55:55PM +0100, J Horacio MG wrote:
>
> I compiled GnuPG 1.0.0 with the named modules but didn't work:
>
Compile the modules without the programm. You will find the command in
this modules

gcc -Wall -O2 -shared -fPIC -o idea idea.c

gcc -Wall -O2 -shared -fPIC -o rsa rsa.c

gcc -Wall -O2 -shared -fPIC -o skipjack skipjack.c


Then put the modules in /usr/local/gnupg/

and add to your ~/.gnupg/options

load-extension idea
load-extension rsa
load-extension skipjack