diff options
Diffstat (limited to 'testing/steghide/missing-files-configure-in.patch')
-rw-r--r-- | testing/steghide/missing-files-configure-in.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/steghide/missing-files-configure-in.patch b/testing/steghide/missing-files-configure-in.patch new file mode 100644 index 0000000000..f736b55087 --- /dev/null +++ b/testing/steghide/missing-files-configure-in.patch @@ -0,0 +1,18 @@ +autoreconf fails because steghide do not provide AUTHORS, +NEWS and ChangeLog files + +Use 'foreign' keyword to allow automake runs whithout these files. + +--- steghide-0.5.1/configure.in ++++ steghide-0.5.1/configure.in +@@ -1,7 +1,8 @@ + dnl Process this file with autoconf to produce a configure script. +-AC_INIT(src/main.cc) ++AC_INIT([steghide], [0.5.1]) ++AC_CONFIG_SRCDIR([src/main.cc]) + AC_CANONICAL_SYSTEM +-AM_INIT_AUTOMAKE(steghide, 0.5.1) ++AM_INIT_AUTOMAKE([foreign]) + AM_CONFIG_HEADER(config.h) + + dnl checks for programs. |