Bruno Haible fa57e052cf Use a warranty disclaimer in all-permissive license notices.
* gnulib-local/m4/*.m4: Update.
* libtextstyle/gnulib-local/m4/*.m4: Update.
* gettext-runtime/m4/*.m4: Update.
* gettext-tools/m4/*.m4: Update.
* m4/woe32-dll.m4: Update.
2024-12-02 22:20:01 +01:00

20 lines
673 B
Plaintext

# java.m4
# serial 2
dnl Copyright (C) 2005-2024 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
dnl This file is offered as-is, without any warranty.
# Sets JAVA_CHOICE to 'yes' or 'no', depending on the preferred use of Java.
AC_DEFUN([gt_JAVA_CHOICE],
[
AC_MSG_CHECKING([whether to use Java])
AC_ARG_ENABLE(java,
[ --disable-java do not build Java sources],
[JAVA_CHOICE="$enableval"],
[JAVA_CHOICE=yes])
AC_MSG_RESULT([$JAVA_CHOICE])
AC_SUBST([JAVA_CHOICE])
])