Collection of DPF-based plugins for packaging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.7KB

  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_try_compile_java.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_TRY_COMPILE_JAVA
  8. #
  9. # DESCRIPTION
  10. #
  11. # AX_TRY_COMPILE_JAVA attempt to compile user given source.
  12. #
  13. # *Warning*: its success or failure can depend on a proper setting of the
  14. # CLASSPATH env. variable.
  15. #
  16. # Note: This is part of the set of autoconf M4 macros for Java programs.
  17. # It is VERY IMPORTANT that you download the whole set, some macros depend
  18. # on other. Unfortunately, the autoconf archive does not support the
  19. # concept of set of macros, so I had to break it for submission. The
  20. # general documentation, as well as the sample configure.in, is included
  21. # in the AX_PROG_JAVA macro.
  22. #
  23. # LICENSE
  24. #
  25. # Copyright (c) 2008 Devin Weaver <ktohg@tritarget.com>
  26. #
  27. # Copying and distribution of this file, with or without modification, are
  28. # permitted in any medium without royalty provided the copyright notice
  29. # and this notice are preserved. This file is offered as-is, without any
  30. # warranty.
  31. #serial 10
  32. AU_ALIAS([AC_TRY_COMPILE_JAVA], [AX_TRY_COMPILE_JAVA])
  33. AC_DEFUN([AX_TRY_COMPILE_JAVA],[
  34. AC_REQUIRE([AX_PROG_JAVAC])dnl
  35. cat << \EOF > Test.java
  36. /* [#]line __oline__ "configure" */
  37. ifelse([$1], , , [import $1;])
  38. public class Test {
  39. [$2]
  40. }
  41. EOF
  42. if AC_TRY_COMMAND($JAVAC $JAVACFLAGS Test.java) && test -s Test.class
  43. then
  44. dnl Don't remove the temporary files here, so they can be examined.
  45. ifelse([$3], , :, [$3])
  46. else
  47. echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
  48. cat Test.java >&AS_MESSAGE_LOG_FD
  49. ifelse([$4], , , [ rm -f Test.java Test.class
  50. $4
  51. ])dnl
  52. fi
  53. rm -f Test.java Test.class])