mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-27 01:44:30 +00:00
* 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.
20 lines
673 B
Plaintext
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])
|
|
])
|