Diff for /gnutrition/configure.ac between versions 1.2 and 1.3

version 1.2, 2026/05/17 20:09:43 version 1.3, 2026/05/17 20:30:05
Line 41  PKG_CHECK_MODULES([GIO], [gio-2.0], [hav Line 41  PKG_CHECK_MODULES([GIO], [gio-2.0], [hav
 AM_CONDITIONAL([BUILD_GTK], [test "x$have_gtk" = xyes -a "x$have_gio" = xyes])  AM_CONDITIONAL([BUILD_GTK], [test "x$have_gtk" = xyes -a "x$have_gio" = xyes])
   
 # Optional: TexInfo tools.  # Optional: TexInfo tools.
 AC_CHECK_PROGS([TEXI2HTML], [texi2html], [have_texi2html=yes], [have_texi2html=no])  AC_CHECK_PROGS([MAKEINFO], [makeinfo], [no])
 AC_CHECK_PROGS([TEXI2PDF], [texi2pdf], [have_texi2pdf=yes], [have_texi2pdf=no])  AC_CHECK_PROGS([TEXIHTML], [texi2html], [no])
 AM_CONDITIONAL([HAVE_TEXINFO], [test "x$have_texi2html" != "no" && test "x$texi2pdf" != "no"])  AC_CHECK_PROGS([TEXIPDF], [texi2pdf], [no])
   AM_CONDITIONAL([HAVE_TEXINFO], [test "$MAKEINFO" != "no" && test "$TEXIHTML" != "no" && test "$TEXIPDF" != "no"])
   
 AC_CONFIG_FILES([Makefile])  AC_CONFIG_FILES([Makefile])
 AC_CONFIG_HEADERS([config.h])  AC_CONFIG_HEADERS([config.h])

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>