mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
- Rename autoconf 2.13 port directory, package, and command all to autoconf2.13 just like ports like perl and python. - Let USES=autoreconf run gtkdocize if necessary. - Rewrite autoconf-wrapper and rename it autoconf-switch to reflect better what it does. - Delete patch-bison. It has been reverted upstream. - Add a patch to let autoreconf set the AUTOCONF environment variable so subprocesses like automake use the correct version. - Make building of info files optional. - Address portlint, portclippy, portfmt issues in devel/autoconf*. PR: 259556, 263970
35 lines
994 B
Text
35 lines
994 B
Text
--- configure.ac.orig 2021-06-03 10:22:08 UTC
|
|
+++ configure.ac
|
|
@@ -96,7 +96,11 @@ AC_DEFINE(GLIB_VERSION_MAX_ALLOWED, GLIB_VERSION_2_40,
|
|
|
|
|
|
# Check for X11 installed
|
|
-XDT_CHECK_LIBX11_REQUIRE()
|
|
+XDT_CHECK_LIBX11()
|
|
+if test "x$with_x" = "xyes" ; then
|
|
+ XDT_CHECK_LIBX11_REQUIRE()
|
|
+fi
|
|
+AM_CONDITIONAL([USE_LIBX11], [test "x$with_x" = xyes])
|
|
|
|
# Check for Polkit/PolicyKit
|
|
XDT_CHECK_OPTIONAL_PACKAGE([POLKIT], [polkit-gobject-1], [polkit_minimum_version],
|
|
@@ -439,11 +443,7 @@ AC_PATH_PROG([XSLTPROC], [xsltproc])
|
|
|
|
|
|
# check for gtk-doc
|
|
-m4_ifdef([GTK_DOC_CHECK], [
|
|
-GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
|
|
-],[
|
|
AM_CONDITIONAL([ENABLE_GTK_DOC], false)
|
|
-])
|
|
|
|
dnl ---------------------------------------------------------------------------
|
|
dnl check for inotify
|
|
@@ -553,7 +553,6 @@ doc/dbus/Makefile
|
|
doc/console-kit-daemon.1m
|
|
doc/dbus/ConsoleKit.xml
|
|
doc/dbus/Makefile
|
|
-doc/libconsolekit/Makefile
|
|
libconsolekit/Makefile
|
|
libconsolekit/libconsolekit.pc
|
|
libck-connector/Makefile
|