File: java.m4

package info (click to toggle)
gettext 0.21-12
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 133,652 kB
  • sloc: ansic: 516,611; sh: 53,532; perl: 17,889; makefile: 9,062; lisp: 3,210; yacc: 1,032; cpp: 704; java: 615; cs: 555; objc: 337; awk: 79; tcl: 63; sed: 55; xml: 40; pascal: 11; php: 7
file content (17 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# java.m4 serial 2
dnl Copyright (C) 2005, 2017 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])
])