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.

49 lines
1.7KB

  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_java_options.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_JAVA_OPTIONS
  8. #
  9. # DESCRIPTION
  10. #
  11. # AX_JAVA_OPTIONS adds configure command line options used for Java m4
  12. # macros. This Macro is optional.
  13. #
  14. # Note: This is part of the set of autoconf M4 macros for Java programs.
  15. # It is VERY IMPORTANT that you download the whole set, some macros depend
  16. # on other. Unfortunately, the autoconf archive does not support the
  17. # concept of set of macros, so I had to break it for submission. The
  18. # general documentation, as well as the sample configure.in, is included
  19. # in the AX_PROG_JAVA macro.
  20. #
  21. # LICENSE
  22. #
  23. # Copyright (c) 2008 Devin Weaver <ktohg@tritarget.com>
  24. #
  25. # Copying and distribution of this file, with or without modification, are
  26. # permitted in any medium without royalty provided the copyright notice
  27. # and this notice are preserved. This file is offered as-is, without any
  28. # warranty.
  29. #serial 7
  30. AU_ALIAS([AC_JAVA_OPTIONS], [AX_JAVA_OPTIONS])
  31. AC_DEFUN([AX_JAVA_OPTIONS],[
  32. AC_ARG_WITH(java-prefix,
  33. [ --with-java-prefix=PFX prefix where Java runtime is installed (optional)])
  34. AC_ARG_WITH(javac-flags,
  35. [ --with-javac-flags=FLAGS flags to pass to the Java compiler (optional)])
  36. AC_ARG_WITH(java-flags,
  37. [ --with-java-flags=FLAGS flags to pass to the Java VM (optional)])
  38. JAVAPREFIX=$with_java_prefix
  39. JAVACFLAGS=$with_javac_flags
  40. JAVAFLAGS=$with_java_flags
  41. AC_SUBST(JAVAPREFIX)dnl
  42. AC_SUBST(JAVACFLAGS)dnl
  43. AC_SUBST(JAVAFLAGS)dnl
  44. AC_SUBST(JAVA)dnl
  45. AC_SUBST(JAVAC)dnl
  46. ])