Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jan 2007 21:28:42 +0800 (CST)
From:      Gea-Suan Lin <gslin@gslin.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        gslin@gslin.org
Subject:   ports/108243: [PATCH] benchmarks/sysbench: Allow to disable largefile, reset maintainership
Message-ID:  <20070123132842.8F58A8E@netnews.NCTU.edu.tw>
Resent-Message-ID: <200701231330.l0NDUGoL054116@freefall.freebsd.org>

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

>Number:         108243
>Category:       ports
>Synopsis:       [PATCH] benchmarks/sysbench: Allow to disable largefile, reset maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jan 23 13:30:16 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Gea-Suan Lin
>Release:        FreeBSD 6.2-RELEASE i386
>Organization:
>Environment:
System: FreeBSD netnews.NCTU.edu.tw 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sun Jan 14 14:05:12 CST 2007
>Description:
- Allow users to disable largefile support
- Reset maintainership to ports@FreeBSD.org

Port maintainer (gslin@gslin.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- sysbench-0.4.8.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/benchmarks/sysbench/Makefile /home/staff/gslin/work/ports/sysbench/Makefile
--- /usr/ports/benchmarks/sysbench/Makefile	Fri Oct 13 03:24:12 2006
+++ /home/staff/gslin/work/ports/sysbench/Makefile	Tue Jan 23 21:28:04 2007
@@ -11,15 +11,22 @@
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME}
 
-MAINTAINER=	gslin@gslin.org
+MAINTAINER=	ports@FreeBSD.org
 COMMENT=	A modular, cross-platform and multi-threaded benchmark tool
 
 USE_AUTOTOOLS=	libtool:15
 
-OPTIONS=	MYSQL "Enable MySQL support" on \
+OPTIONS=	LARGEFILE "Enable Largefile support" on \
+		MYSQL "Enable MySQL support" on \
 		POSTGRESQL "Enable PostgreSQL support" off
 
 .include <bsd.port.pre.mk>
+
+.if defined(WITHOUT_LARGEFILE)
+CONFIGURE_ARGS+=	--disable-largefile
+.else
+CONFIGURE_ARGS+=	--enable-largefile
+.endif
 
 .if defined(WITHOUT_MYSQL)
 CONFIGURE_ARGS+=	--with-mysql=no
--- sysbench-0.4.8.patch ends here ---

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



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