diff options
author | marcus <marcus@FreeBSD.org> | 2004-03-05 07:16:45 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-03-05 07:16:45 +0000 |
commit | afde4516544173ed451a68742098bd3a82e73399 (patch) | |
tree | 53ec7c91378f1e9a58ea495e4df0763273588bcd /mail/thunderbird-devel | |
parent | 55040d8c4985f2760e063b96e330f82cf9e37a20 (diff) | |
download | FreeBSD-ports-afde4516544173ed451a68742098bd3a82e73399.zip FreeBSD-ports-afde4516544173ed451a68742098bd3a82e73399.tar.gz |
If building with debugging, don't enable binary stripping.
Diffstat (limited to 'mail/thunderbird-devel')
-rw-r--r-- | mail/thunderbird-devel/files/mozconfig.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/thunderbird-devel/files/mozconfig.in b/mail/thunderbird-devel/files/mozconfig.in index baeba72..2f7b3be 100644 --- a/mail/thunderbird-devel/files/mozconfig.in +++ b/mail/thunderbird-devel/files/mozconfig.in @@ -39,7 +39,6 @@ ac_add_options --with-system-mng=@LOCALBASE@ ###################################################################### # set compile/link features ac_add_options --with-pthreads -ac_add_options --enable-strip ###################################################################### # conditional from port Makefile if test -n "$WITH_REORDER"; then @@ -49,9 +48,11 @@ else fi # test -n "$WITH_REORDER" if test -n "$WITH_DEBUG"; then ac_add_options --enable-debug + ac_add_options --disable-strip else ac_add_options --disable-debug ac_add_options --enable-optimize + ac_add_options --enable-strip export BUILD_OFFICIAL=1 export MOZILLA_OFFICIAL=1 mk_add_options BUILD_OFFICIAL=1 |