File: java.m4

package info (click to toggle)
gettext 0.23.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 167,652 kB
  • sloc: ansic: 532,868; sh: 68,216; perl: 28,011; makefile: 9,046; lisp: 3,184; yacc: 1,055; java: 615; cs: 589; cpp: 397; objc: 343; sed: 79; tcl: 63; xml: 40; pascal: 11; awk: 7; php: 7
file content (18 lines) | stat: -rw-r--r-- 619 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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.

# 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])
])