diff options
author | marcus <marcus@FreeBSD.org> | 2004-03-05 15:16:45 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-03-05 15:16:45 +0800 |
commit | afde4516544173ed451a68742098bd3a82e73399 (patch) | |
tree | 53ec7c91378f1e9a58ea495e4df0763273588bcd /mail/thunderbird3 | |
parent | 55040d8c4985f2760e063b96e330f82cf9e37a20 (diff) | |
download | freebsd-ports-graphics-afde4516544173ed451a68742098bd3a82e73399.tar.gz freebsd-ports-graphics-afde4516544173ed451a68742098bd3a82e73399.tar.zst freebsd-ports-graphics-afde4516544173ed451a68742098bd3a82e73399.zip |
If building with debugging, don't enable binary stripping.
Diffstat (limited to 'mail/thunderbird3')
-rw-r--r-- | mail/thunderbird3/files/mozconfig.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/thunderbird3/files/mozconfig.in b/mail/thunderbird3/files/mozconfig.in index baeba727c18..2f7b3be4268 100644 --- a/mail/thunderbird3/files/mozconfig.in +++ b/mail/thunderbird3/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 |