Fix idea flavor: Revive patch to cipher/Makefile.am because configure

extracts the list of modules to build from there.  Sic.
This commit is contained in:
naddy 2002-07-28 15:01:26 +00:00
parent dffc4172a9
commit 1c61fd68ae

View File

@ -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