1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

- disable debug symbols for the gecko ports and enable striping of

libraries and binaries otherwise firefox and thunderbird >= 5 will install a
libxul.so which can be as big as 500MB

PR:		ports/158380
Submitted by:	Pan Tsu <inyaoo@gmail.com>
This commit is contained in:
Florian Smeets 2011-06-28 16:34:23 +00:00
parent a424f23045
commit dfadc9fbca
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=276583

View File

@ -638,6 +638,7 @@ MOZ_OPTIONS+= --enable-necko-protocols=${MOZ_PROTOCOLS}
MOZ_OPTIONS+= --with-system-zlib=/usr \
--with-gssapi=${KRB5_HOME} \
--disable-auto-deps \
--disable-debug-symbols \
--enable-chrome-format=jar \
--disable-cpp-exceptions \
--disable-cpp-rtti \
@ -673,6 +674,8 @@ MOZ_OPTIONS+= --disable-gnomevfs
.if !defined(STRIP) || ${STRIP} == ""
MOZ_OPTIONS+= --disable-strip --disable-install-strip
.else
MOZ_OPTIONS+= --enable-strip --enable-install-strip
.endif
.if defined(WITH_DEBUG)