Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Dec 2006 18:51:56 -0500 (EST)
From:      Greg Larkin <glarkin@sourcehosting.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/106698: [mail/vm-pop3d] Request to update Makefile with config option
Message-ID:  <200612132351.kBDNpubc091420@mischief.sourcehosting.net>
Resent-Message-ID: <200612140010.kBE0AQU7085251@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         106698
>Category:       ports
>Synopsis:       [mail/vm-pop3d] Request to update Makefile with config option
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Dec 14 00:10:21 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Greg Larkin
>Release:        FreeBSD 6.1-RELEASE-p10 i386
>Organization:
SourceHosting.net, LLC
>Environment:
System: FreeBSD mischief.sourcehosting.net 6.1-RELEASE-p10 FreeBSD 6.1-RELEASE-p10 #5: Mon Oct 2 12:00:14 EDT 2006 glarkin@mischief.sourcehosting.net:/usr/obj/usr/src/sys/SMP i386


	
>Description:
	The vm-pop3d application provides the --enable-debug option
	in its configure script, but the port Makefile does not contain
	a WITH_DEBUG variable to set it.
>How-To-Repeat:
	The current vm-pop3d application reports "Exiting: Compiled without
	debugging support." if the -D option is supplied.
>Fix:

	Apply the following patch to the port and supply the
	"WITH_DEBUG=yes" option to the make command. Use the -D option
	as needed.

--- vm-pop3d.diff begins here ---
diff -urN vm-pop3d.orig/Makefile vm-pop3d/Makefile
--- vm-pop3d.orig/Makefile	Wed Dec 13 18:44:47 2006
+++ vm-pop3d/Makefile	Wed Dec 13 15:26:21 2006
@@ -23,6 +23,9 @@
 .elif defined(WITH_VIRTUAL)
 CONFIGURE_ARGS+=	--enable-virtual
 .endif
+.if defined(WITH_DEBUG)
+CONFIGURE_ARGS+=	--enable-debug
+.endif
 
 MAN8=		vm-pop3d.8
 
--- vm-pop3d.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200612132351.kBDNpubc091420>