summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorG. Branden Robinson <g.branden.robinson@gmail.com>2022-06-01 13:16:14 -0500
committerG. Branden Robinson <g.branden.robinson@gmail.com>2022-06-02 21:26:03 -0500
commitc3435d4bb864bc10d430e1ff74782fa2d7f484b9 (patch)
tree33bc565f93f9f6dc8795b278cf3125fa2505c662 /m4
parent7258df3c8e8dfe041cc3b25f48fd34c8ccf11237 (diff)
downloadgroff-git-c3435d4bb864bc10d430e1ff74782fa2d7f484b9.tar.gz
m4/groff.m4: Drop redundant messages.
* m4/groff.m4 (GROFF_X11, GROFF_UCHARDET): Drop redundant messages (which are easily overlooked amid the torrent of "checking" output anyway). Discovery failures of X11 and the unchardet library are already parts of the configuration report at or near the end of output.
Diffstat (limited to 'm4')
-rw-r--r--m4/groff.m415
1 files changed, 5 insertions, 10 deletions
diff --git a/m4/groff.m4 b/m4/groff.m4
index 002f0a470..561a17219 100644
--- a/m4/groff.m4
+++ b/m4/groff.m4
@@ -1536,13 +1536,11 @@ AC_DEFUN([GROFF_X11],
LIBS=$OLDLIBS
fi
- if test "$groff_no_x" = yes; then
- AC_MSG_NOTICE([gxditview and xtotroff won't be built])
- else
- XDEVDIRS="font/devX75 font/devX75-12 font/devX100 font/devX100-12"
- XPROGDIRS="src/devices/xditview src/utils/xtotroff"
- XLIBDIRS="src/libs/libxutil"
- fi
+ if ! test "$groff_no_x" = yes; then
+ XDEVDIRS="font/devX75 font/devX75-12 font/devX100 font/devX100-12"
+ XPROGDIRS="src/devices/xditview src/utils/xtotroff"
+ XLIBDIRS="src/libs/libxutil"
+ fi
AC_SUBST([XDEVDIRS])
AC_SUBST([XPROGDIRS])
@@ -1704,9 +1702,6 @@ file encoding [=auto|no|yes]]))
if test "$with_uchardet" = yes
then
AC_MSG_FAILURE([could not find uchardet library])
- else
- AC_MSG_WARN([uchardet library not found; preconv will be \
-less functional])
fi
groff_have_uchardet=no])],
[groff_have_uchardet=no])