File: ac_prog_javah.m4

package info (click to toggle)
ppl 1%3A1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 43,952 kB
  • ctags: 19,973
  • sloc: cpp: 212,085; sh: 12,176; makefile: 7,289; perl: 6,333; java: 2,220; ansic: 1,842; ml: 1,132; sed: 80
file content (54 lines) | stat: -rw-r--r-- 1,687 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
##### http://autoconf-archive.cryp.to/ac_prog_javah.html
#
# SYNOPSIS
#
#   AC_PROG_JAVAH
#
# DESCRIPTION
#
#   AC_PROG_JAVAH tests the availability of the javah header generator
#   and looks for the jni.h header file. If available, JAVAH is set to
#   the full path of javah and CPPFLAGS is updated accordingly.
#
# LAST MODIFICATION
#
#   2006-12-20
#
# COPYLEFT
#
#   Copyright (C) 2002      Luc Maisonobe <luc@spaceroots.org>
#   Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
#   Copyright (C) 2010-2016 BUGSENG srl (http://bugseng.com)
#
#   Copying and distribution of this file, with or without
#   modification, are permitted in any medium without royalty provided
#   the copyright notice and this notice are preserved.

AC_DEFUN([AC_PROG_JAVAH],[
AC_REQUIRE([AC_CANONICAL_HOST])dnl
AC_REQUIRE([AC_PROG_CPP])dnl
AC_LANG_PUSH(C++)dnl
if test "x$JAVAPREFIX" = x; then
        AC_CHECK_PROGS(JAVAH,javah, no)
else
	AC_PATH_PROGS(JAVAH,javah, no, $JAVAPREFIX)
fi

if test x"`eval 'echo $ac_cv_path_JAVAH'`" != xno ; then
  AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <jni.h>]]) ] ,,[
    ac_save_CPPFLAGS="$CPPFLAGS"
changequote(, )dnl
    ac_dir=`echo $ac_cv_path_JAVAH | sed 's,\(.*\)/[^/]*/[^/]*$,\1/include,'`
    ac_machdep=`echo $build_os | sed 's,[-0-9].*,,' | sed 's,cygwin,win32,'`
changequote([, ])dnl
    JNIFLAGS="-I$ac_dir -I$ac_dir/$ac_machdep"
    CPPFLAGS="$ac_save_CPPFLAGS $JNIFLAGS"
    AC_SUBST(JNIFLAGS)
    AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <jni.h>]])],
               CPPFLAGS="$ac_save_CPPFLAGS",
               AC_MSG_WARN([unable to include <jni.h>])
	       JAVAH=no)
    CPPFLAGS="$ac_save_CPPFLAGS"])
fi
AC_LANG_POP(C++)
])