common/autoconf/jdk-options.m4

Print this page




 589 
 590   AC_MSG_RESULT([$ENABLE_DEBUG_SYMBOLS])
 591 
 592   #
 593   # ZIP_DEBUGINFO_FILES
 594   #
 595   AC_MSG_CHECKING([if we should zip debug-info files])
 596   AC_ARG_ENABLE([zip-debug-info],
 597       [AS_HELP_STRING([--disable-zip-debug-info],[disable zipping of debug-info files @<:@enabled@:>@])],
 598       [enable_zip_debug_info="${enableval}"], [enable_zip_debug_info="yes"])
 599   AC_MSG_RESULT([${enable_zip_debug_info}])
 600 
 601   if test "x${enable_zip_debug_info}" = "xno"; then
 602     ZIP_DEBUGINFO_FILES=false
 603   else
 604     ZIP_DEBUGINFO_FILES=true
 605   fi
 606 
 607   AC_SUBST(ENABLE_DEBUG_SYMBOLS)
 608   AC_SUBST(ZIP_DEBUGINFO_FILES)
 609   AC_SUBST(CFLAGS_DEBUG_SYMBOLS)
 610   AC_SUBST(CXXFLAGS_DEBUG_SYMBOLS)
 611 ])


 589 
 590   AC_MSG_RESULT([$ENABLE_DEBUG_SYMBOLS])
 591 
 592   #
 593   # ZIP_DEBUGINFO_FILES
 594   #
 595   AC_MSG_CHECKING([if we should zip debug-info files])
 596   AC_ARG_ENABLE([zip-debug-info],
 597       [AS_HELP_STRING([--disable-zip-debug-info],[disable zipping of debug-info files @<:@enabled@:>@])],
 598       [enable_zip_debug_info="${enableval}"], [enable_zip_debug_info="yes"])
 599   AC_MSG_RESULT([${enable_zip_debug_info}])
 600 
 601   if test "x${enable_zip_debug_info}" = "xno"; then
 602     ZIP_DEBUGINFO_FILES=false
 603   else
 604     ZIP_DEBUGINFO_FILES=true
 605   fi
 606 
 607   AC_SUBST(ENABLE_DEBUG_SYMBOLS)
 608   AC_SUBST(ZIP_DEBUGINFO_FILES)


 609 ])