Bug 391325 - Cannot debug installed xulrunner, add a --enable-install-strip flag, patch by Sergey Yanovich <ynvich@gmail.com>, r+a=me

This commit is contained in:
benjamin@smedbergs.us 2007-08-15 17:13:15 -07:00
parent 4e684f94ad
commit 110fa8fea7
2 changed files with 10 additions and 0 deletions

View File

@ -179,6 +179,7 @@ XPCOM_LIBS=@XPCOM_LIBS@
MOZ_TIMELINE=@MOZ_TIMELINE@
ENABLE_STRIP = @ENABLE_STRIP@
PKG_SKIP_STRIP = @PKG_SKIP_STRIP@
ClientWallet=1
CookieManagement=1

View File

@ -6123,6 +6123,14 @@ MOZ_ARG_ENABLE_BOOL(strip,
ENABLE_STRIP=1,
ENABLE_STRIP= )
dnl ========================================================
dnl = Enable stripping of libs & executables when packaging
dnl ========================================================
MOZ_ARG_ENABLE_BOOL(install-strip,
[ --enable-install-strip Enable stripping of libs & executables when packaging ],
PKG_SKIP_STRIP= ,
PKG_SKIP_STRIP=1)
dnl ========================================================
dnl = --enable-elf-dynstr-gc
dnl ========================================================
@ -7471,6 +7479,7 @@ AC_SUBST(MOZ_CRASHREPORTER)
AC_SUBST(MOZ_MOCHITEST)
AC_SUBST(ENABLE_STRIP)
AC_SUBST(PKG_SKIP_STRIP)
AC_SUBST(USE_ELF_DYNSTR_GC)
AC_SUBST(USE_PREBINDING)
AC_SUBST(INCREMENTAL_LINKER)