diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-03-05 07:16:45 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-03-05 07:16:45 +0000 |
commit | 2d6650ae38c0861cac8845dc86fd10d2180c4cdd (patch) | |
tree | 7c5664a2b2a45dada6e00b7423761c60a783bcb0 /mail/thunderbird | |
parent | dc286c14c9349debda746cab40e5f955694c907b (diff) | |
download | ports-2d6650ae38c0861cac8845dc86fd10d2180c4cdd.tar.gz ports-2d6650ae38c0861cac8845dc86fd10d2180c4cdd.zip |
If building with debugging, don't enable binary stripping.
Notes
Notes:
svn path=/head/; revision=102980
Diffstat (limited to 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/files/mozconfig.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/thunderbird/files/mozconfig.in b/mail/thunderbird/files/mozconfig.in index baeba727c18d..2f7b3be42684 100644 --- a/mail/thunderbird/files/mozconfig.in +++ b/mail/thunderbird/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 |