From owner-freebsd-ports@FreeBSD.ORG Sun May 12 09:22:26 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4A0AC2D6; Sun, 12 May 2013 09:22:26 +0000 (UTC) (envelope-from freebsdml@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) by mx1.freebsd.org (Postfix) with ESMTP id C731B1EC; Sun, 12 May 2013 09:22:24 +0000 (UTC) Received: from [192.168.0.21] (unknown [130.255.16.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id D76CF43BAC; Sun, 12 May 2013 04:22:12 -0500 (CDT) Message-ID: <518F5F3B.2070106@marino.st> Date: Sun, 12 May 2013 11:22:03 +0200 From: John Marino User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20120129 Thunderbird/10.0 MIME-Version: 1.0 To: Martin Wilke Subject: Re: Fwd: qt-mysql-plugin-3.3.8_10 failed on amd64 8 References: <201305100610.r4A6A35L070714@pointyhat.freebsd.org> <8B63E7B1-23AD-4FCE-B954-581253109E21@freebsd.org> <518C9AE1.7070609@marino.st> In-Reply-To: <518C9AE1.7070609@marino.st> Content-Type: multipart/mixed; boundary="------------010405000409070709020706" Cc: "ports@FreeBSD.org Ports" , Baptiste Daroussin X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 May 2013 09:22:26 -0000 This is a multi-part message in MIME format. --------------010405000409070709020706 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 5/10/2013 08:59, John Marino wrote: > On 5/10/2013 08:52, Martin Wilke wrote: >>> ===> Configuring for qt-mysql-plugin-3.3.8_10 >>> ===> Building for qt-mysql-plugin-3.3.8_10 >>> Warning: Object directory not changed from original >>> /work/a/ports/databases/qt-mysql-plugin/work/qt-x11-free-3.3.8 >>> c++ -fpic -DPIC -O2 -pipe -fno-strict-aliasing >>> -Iplugins/src/sqldrivers/mysql -Isrc/sql/drivers/mysql >>> -I/usr/local/include/mysql -I/usr/local/include -DQT_THREAD_SUPPORT >>> -c src/sql/drivers/mysql/qsql_mysql.cpp -o qsql_mysql.So >>> make: don't know how to make main.cpp. Stop >>> *** Error code 1 >>> >>> Stop in /a/ports/databases/qt-mysql-plugin. >>> ================================================================ > > Yes, I've seen this too. > I actually told Baptiste about it last night. > It's nice to have this confirmed as a generic issue and not a DragonFly > one. > I have attached a patch that fixes the problem. It was related to the extraction cleanup. Can somebody commit it? John --------------010405000409070709020706 Content-Type: text/plain; name="qt-mysql-plugin-Makefile.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="qt-mysql-plugin-Makefile.diff.txt" --- Makefile.orig 2013-04-29 08:57:12.000000000 +0000 +++ Makefile @@ -23,7 +23,8 @@ USE_MYSQL= yes USE_BZIP2= yes PLUGIN= plugins/src/sqldrivers/${DB} DRIVER= src/sql/drivers/${DB} -EXTRACT_AFTER_ARGS?= ${DISTNAME}/${DRIVER} ${DISTNAME}/src/sql/drivers/cache +EXTRACT_AFTER_ARGS?= ${DISTNAME}/${PLUGIN} ${DISTNAME}/${DRIVER} \ + ${DISTNAME}/src/sql/drivers/cache MAKEFILE= ${FILESDIR}/Makefile.bsd MAKE_ENV+= DB="${DB}" DRIVER="${DRIVER}" PLUGIN="${PLUGIN}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ --------------010405000409070709020706--