vcpkg/ports/hunspell/0005-autotools-subdirs.patch
Kai Pastor 8a5bbf4409
[hunspell] Update and fix (#26481)
* Update to 1.7.1

* Minor portfile updates

* Fix mingw

* Add proper 'nls' feature

* Patch for autotools subdirs control

* Update versions

* Add license field

* Update versions
2022-08-25 10:59:30 -07:00

37 lines
937 B
Diff

diff --git a/Makefile.am b/Makefile.am
index c0aae53..769aef5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
ACLOCAL_AMFLAGS = -I m4
-SUBDIRS= po src man tests
+SUBDIRS= po src
pkgconfdir = $(libdir)/pkgconfig
pkgconf_DATA = hunspell.pc
diff --git a/configure.ac b/configure.ac
index 358cb1d..152adef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,6 +38,9 @@ dnl internationalization macros
AM_GNU_GETTEXT_VERSION(0.18)
AM_GNU_GETTEXT([external])
+AC_ARG_ENABLE(tools,[])
+AM_CONDITIONAL(DISABLE_TOOLS, test x$enable_tools != xyes)
+
AC_ARG_WITH(warnings,[ --with-warnings compile with warning messages],[
AC_DEFINE(HUNSPELL_WARNING_ON,1,"Define if you need warning messages")
])
diff --git a/src/Makefile.am b/src/Makefile.am
index 45b7703..27700af 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1 +1,5 @@
+if DISABLE_TOOLS
+SUBDIRS=hunspell
+else
SUBDIRS=hunspell parsers tools
+endif