diff options
author | pav <pav@FreeBSD.org> | 2005-09-17 20:09:50 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-09-17 20:09:50 +0000 |
commit | f7ceae71a82d9a0f3938856b1248fa5e861905d9 (patch) | |
tree | 927505e38db94c7fbda65a2d576e65130f2b6d10 /ports-mgmt/portmanager | |
parent | c77d5a06c6a13bb76e2c1605913ed1e8a281251f (diff) | |
download | FreeBSD-ports-f7ceae71a82d9a0f3938856b1248fa5e861905d9.zip FreeBSD-ports-f7ceae71a82d9a0f3938856b1248fa5e861905d9.tar.gz |
- Really fix crashes on 6.0
PR: ports/86272
Submitted by: Michael C. Shultz <ringworm01@gmail.com>
Diffstat (limited to 'ports-mgmt/portmanager')
-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 1a1d541..96671ce 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 \ |