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.

57 lines
1.8KB

  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_try_run_java.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_TRY_RUN_JAVA
  8. #
  9. # DESCRIPTION
  10. #
  11. # AX_TRY_RUN_JAVA attempt to compile and run 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 3
  32. AU_ALIAS([AC_TRY_RUN_JAVA], [AX_TRY_RUN_JAVA])
  33. AC_DEFUN([AX_TRY_RUN_JAVA],[
  34. AC_REQUIRE([AX_PROG_JAVAC])dnl
  35. AC_REQUIRE([AX_PROG_JAVA])dnl
  36. cat << \EOF > Test.java
  37. /* [#]line __oline__ "configure" */
  38. ifelse([$1], , , [include $1;])
  39. public class Test {
  40. [$2]
  41. }
  42. EOF
  43. if AC_TRY_COMMAND($JAVAC $JAVACFLAGS Test.java) && test -s Test.class && ($JAVA $JAVAFLAGS Test; exit) 2>/dev/null
  44. then
  45. dnl Don't remove the temporary files here, so they can be examined.
  46. ifelse([$3], , :, [$3])
  47. else
  48. echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
  49. cat Test.java >&AS_MESSAGE_LOG_FD
  50. ifelse([$4], , , [ rm -fr Test.java Test.class
  51. $4
  52. ])dnl
  53. fi
  54. rm -fr Test.java Test.class])