common/autoconf/libraries.m4

Print this page
rev 769 : 8024265: Enable new build on AIX
Reviewed-by: ihse


  26 AC_DEFUN_ONCE([LIB_SETUP_INIT],
  27 [
  28         
  29 ###############################################################################
  30 #
  31 # OS specific settings that we never will need to probe.
  32 #
  33 if test "x$OPENJDK_TARGET_OS" = xlinux; then
  34     AC_MSG_CHECKING([what is not needed on Linux?])
  35     PULSE_NOT_NEEDED=yes
  36     AC_MSG_RESULT([pulse])
  37 fi
  38 
  39 if test "x$OPENJDK_TARGET_OS" = xsolaris; then
  40     AC_MSG_CHECKING([what is not needed on Solaris?])
  41     ALSA_NOT_NEEDED=yes
  42     PULSE_NOT_NEEDED=yes
  43     AC_MSG_RESULT([alsa pulse])
  44 fi
  45 








  46 if test "x$OPENJDK_TARGET_OS" = xwindows; then
  47     AC_MSG_CHECKING([what is not needed on Windows?])
  48     CUPS_NOT_NEEDED=yes    
  49     ALSA_NOT_NEEDED=yes
  50     PULSE_NOT_NEEDED=yes
  51     X11_NOT_NEEDED=yes
  52     AC_MSG_RESULT([alsa cups pulse x11])
  53 fi
  54 
  55 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
  56     AC_MSG_CHECKING([what is not needed on MacOSX?])
  57     ALSA_NOT_NEEDED=yes
  58     PULSE_NOT_NEEDED=yes
  59     X11_NOT_NEEDED=yes
  60     FREETYPE2_NOT_NEEDED=yes    
  61     # If the java runtime framework is disabled, then we need X11.
  62     # This will be adjusted below.
  63     AC_MSG_RESULT([alsa pulse x11])
  64 fi
  65 




  26 AC_DEFUN_ONCE([LIB_SETUP_INIT],
  27 [
  28         
  29 ###############################################################################
  30 #
  31 # OS specific settings that we never will need to probe.
  32 #
  33 if test "x$OPENJDK_TARGET_OS" = xlinux; then
  34     AC_MSG_CHECKING([what is not needed on Linux?])
  35     PULSE_NOT_NEEDED=yes
  36     AC_MSG_RESULT([pulse])
  37 fi
  38 
  39 if test "x$OPENJDK_TARGET_OS" = xsolaris; then
  40     AC_MSG_CHECKING([what is not needed on Solaris?])
  41     ALSA_NOT_NEEDED=yes
  42     PULSE_NOT_NEEDED=yes
  43     AC_MSG_RESULT([alsa pulse])
  44 fi
  45 
  46 if test "x$OPENJDK_TARGET_OS" = xaix; then
  47     AC_MSG_CHECKING([what is not needed on AIX?])
  48     ALSA_NOT_NEEDED=yes
  49     PULSE_NOT_NEEDED=yes
  50     AC_MSG_RESULT([alsa pulse])
  51 fi
  52 
  53 
  54 if test "x$OPENJDK_TARGET_OS" = xwindows; then
  55     AC_MSG_CHECKING([what is not needed on Windows?])
  56     CUPS_NOT_NEEDED=yes    
  57     ALSA_NOT_NEEDED=yes
  58     PULSE_NOT_NEEDED=yes
  59     X11_NOT_NEEDED=yes
  60     AC_MSG_RESULT([alsa cups pulse x11])
  61 fi
  62 
  63 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
  64     AC_MSG_CHECKING([what is not needed on MacOSX?])
  65     ALSA_NOT_NEEDED=yes
  66     PULSE_NOT_NEEDED=yes
  67     X11_NOT_NEEDED=yes
  68     FREETYPE2_NOT_NEEDED=yes    
  69     # If the java runtime framework is disabled, then we need X11.
  70     # This will be adjusted below.
  71     AC_MSG_RESULT([alsa pulse x11])
  72 fi
  73