From 1c61fd68aee4b6033651676712eb5689f3a26cd2 Mon Sep 17 00:00:00 2001 From: naddy Date: Sun, 28 Jul 2002 15:01:26 +0000 Subject: [PATCH] Fix idea flavor: Revive patch to cipher/Makefile.am because configure extracts the list of modules to build from there. Sic. --- .../patches/idea-patch-cipher_Makefile_am | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 security/gnupg/patches/idea-patch-cipher_Makefile_am diff --git a/security/gnupg/patches/idea-patch-cipher_Makefile_am b/security/gnupg/patches/idea-patch-cipher_Makefile_am new file mode 100644 index 00000000000..c86f10887c1 --- /dev/null +++ b/security/gnupg/patches/idea-patch-cipher_Makefile_am @@ -0,0 +1,26 @@ +$OpenBSD: idea-patch-cipher_Makefile_am,v 1.1 2002/07/28 15:01:26 naddy Exp $ +--- cipher/Makefile.am.orig Fri May 31 17:18:36 2002 ++++ cipher/Makefile.am Fri May 31 17:19:56 2002 +@@ -24,7 +24,7 @@ INCLUDES = -I.. -I$(top_srcdir)/include + noinst_LIBRARIES = libcipher.a + + # The configure script greps the module names from the EXTRA_PROGRAMS line +-EXTRA_PROGRAMS = rndlinux rndunix rndegd rndw32 sha1 rmd160 md5 tiger ++EXTRA_PROGRAMS = rndlinux rndunix rndegd rndw32 sha1 rmd160 md5 tiger idea + + EXTRA_rndlinux_SOURCES = rndlinux.c + EXTRA_rndunix_SOURCES = rndunix.c +@@ -34,6 +34,7 @@ EXTRA_md5_SOURCES = md5.c + EXTRA_rmd160_SOURCES = rmd160.c + EXTRA_sha1_SOURCES = sha1.c + EXTRA_tiger_SOURCES = tiger.c ++EXTRA_idea_SOURCES = idea.c + + + if ENABLE_GNUPG_EXTENSIONS +@@ -112,3 +113,5 @@ rndlinux$(EXEEXT): $(srcdir)/rndlinux.c + rndegd$(EXEEXT): $(srcdir)/rndegd.c + $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndegd $(srcdir)/rndegd.c + ++idea: $(srcdir)/idea.c ++ $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o idea $(srcdir)/idea.c