diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-17 20:09:50 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-17 20:09:50 +0000 |
commit | ae8c845ffea09370031c0176a12201214d20d23e (patch) | |
tree | 1e3432ea655a913d0621f9a2dac63a6fbb2cbff1 /ports-mgmt | |
parent | 2c4ab28551fdadca2aa04e633811a5af324611a6 (diff) |
- Really fix crashes on 6.0
PR: ports/86272
Submitted by: Michael C. Shultz <ringworm01@gmail.com>
Notes
Notes:
svn path=/head/; revision=143021
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portmanager/Makefile | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/ports-mgmt/portmanager/Makefile b/ports-mgmt/portmanager/Makefile index 1a1d54146c8f..96671ce9a93c 100644 --- a/ports-mgmt/portmanager/Makefile +++ b/ports-mgmt/portmanager/Makefile @@ -7,7 +7,7 @@ PORTNAME= portmanager PORTVERSION= 0.2.9 -PORTREVISION= 6 +PORTREVISION= 7 #----------------------------------------- #for local use, remove before submitting PR CATEGORIES= sysutils @@ -49,24 +49,28 @@ CONFIGURE_ARGS= --with-prefix=${PREFIX} \ --with-sharedir=/share/portmanager \ --with-tempdir=/tmp -.if defined(WITH_DEBUG) +# +# In FreeBSD 6.0 dumps core when compiled WITHOUT debug symbols :( +# so for a temp fix just making the WITH_DEBUG non optional. +# +#.if defined(WITH_DEBUG) CONFIGURE_ARGS+= --with-debug=yes -.endif +#.endif INSTALLS_SHLIB= yes USE_REINPLACE= yes INSTALL_TARGET= install info -pre-fetch: -.if !defined(WITH_DEBUG) - @${ECHO} "***********************************************************************" - @${ECHO} "* portmanager *" - @${ECHO} "***********************************************************************" - @${ECHO} "* *" - @${ECHO} "* WITH_DEBUG=yes enables debug support and all compile warnings *" - @${ECHO} "* *" - @${ECHO} "***********************************************************************" -.endif +#pre-fetch: +#.if !defined(WITH_DEBUG) +# @${ECHO} "***********************************************************************" +# @${ECHO} "* portmanager *" +# @${ECHO} "***********************************************************************" +# @${ECHO} "* *" +# @${ECHO} "* WITH_DEBUG=yes enables debug support and all compile warnings *" +# @${ECHO} "* *" +# @${ECHO} "***********************************************************************" +#.endif post-configure: @${REINPLACE_CMD} -e \ |