diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2020-04-03 08:30:08 +0200 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2020-04-03 08:30:08 +0200 |
commit | ba247a114c75a84473c11c1484013b09fbb9bcd1 (patch) | |
tree | a76cedce73621da0142ceb7d71ae51cad8696ec3 /g10/Makefile.am | |
parent | scd:p15: Implement do_with_keygrip and capabilities. (diff) | |
download | gnupg2-ba247a114c75a84473c11c1484013b09fbb9bcd1.tar.xz gnupg2-ba247a114c75a84473c11c1484013b09fbb9bcd1.zip |
gpg: Add regular expression support.
* AUTHORS, COPYING.other: Update.
* Makefile.am (SUBDIRS): Add regexp sub directory.
* configure.ac (DISABLE_REGEX): Remove.
* g10/Makefile.am (needed_libs): Add libregexp.a.
* g10/trustdb.c: Remove DISABLE_REGEX support.
* regexp/LICENSE, regexp/jimregexp.c, regexp/jimregexp.h,
regexp/utf8.c, regexp/utf8.h: New from Jim Tcl.
* regexp/UnicodeData.txt: New from Unicode.
* regexp/Makefile.am, regexp/parse-unidata.awk: New.
* tests/openpgp/Makefile.am: Remove DISABLE_REGEX support.
* tools/Makefile.am: Remove DISABLE_REGEX support.
GnuPG-bug-id: 4843
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'g10/Makefile.am')
-rw-r--r-- | g10/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index 2b92daf33..c3f9d6f1e 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -31,7 +31,7 @@ include $(top_srcdir)/am/cmacros.am AM_CFLAGS = $(SQLITE3_CFLAGS) $(LIBGCRYPT_CFLAGS) \ $(LIBASSUAN_CFLAGS) $(NPTH_CFLAGS) $(GPG_ERROR_CFLAGS) -needed_libs = ../kbx/libkeybox.a $(libcommonpth) +needed_libs = ../kbx/libkeybox.a $(libcommonpth) ../regexp/libregexp.a # Because there are no program specific transform macros we need to # work around that to allow installing gpg as gpg2. |