From owner-freebsd-ports-bugs@freebsd.org Wed Jul 8 13:20:43 2015 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1215F9955C3 for ; Wed, 8 Jul 2015 13:20:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9F4519C7 for ; Wed, 8 Jul 2015 13:20:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t68DKgf3082082 for ; Wed, 8 Jul 2015 13:20:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 201424] graphics/cuneiform namespace error Date: Wed, 08 Jul 2015 13:20:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: w.litter@aon.at X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jul 2015 13:20:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201424 --- Comment #1 from Walter Schwarzenfeld --- graphics/cuneiform exits compilation in port with: Linking CXX executable ../../cuneiform CMakeFiles/cuneiform-cli.dir/cuneiform-cli.cpp.o: In function `main': /usr/ports/graphics/cuneiform/work/cuneiform-linux-1.1.0/cuneiform_src/cli/cuneiform-cli.cpp:(.text+0x5de): undefined reference to `Magick::Image::Image(std::__1::basic_string, std::__1::allocator > const&)' /usr/ports/graphics/cuneiform/work/cuneiform-linux-1.1.0/cuneiform_src/cli/cuneiform-cli.cpp:(.text+0x644): undefined reference to `Magick::Image::write(Magick::Blob*, std::__1::basic_string, std::__1::allocator > const&)' c++: error: linker command failed with exit code 1 (use -v to see invocation) --- cuneiform --- *** [cuneiform] Error code 1 but compiles with poudriere. If I do this patch -- cuneiform_src/cli/cuneiform-cli.cpp.orig 2015-07-08 09:26:05 UTC +++ cuneiform_src/cli/cuneiform-cli.cpp @@ -152,7 +152,8 @@ static string supported_formats() { */ static char* read_file(const char *fname); -#ifdef USE_MAGICK +#ifndef USE_MAGICK +#define USE_MAGICK #include using namespace Magick; @@ -337,7 +338,9 @@ int main(int argc, char **argv) { return 0; } -#ifdef USE_MAGICK +#ifndef USE_MAGICK #define USE_MAGICK +#include +using namespace Magick; Magick::InitializeMagick(""); #endif it compiles fine. Other errors appears with gcc48, but this patch --- cuneiform_src/Kern/hrkint/stdprt.h.orig 2015-07-08 11:24:29 UTC +++ cuneiform_src/Kern/hrkint/stdprt.h @@ -58,6 +58,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE #define __STDPRT_H #include "std.h" +#include typedef int32_t HEvent32; typedef struct tagStdPrtEvent helps. -- You are receiving this mail because: You are the assignee for the bug.