From patchwork Sat Jan 12 17:35:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 211525 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9932D2C00FF for ; Sun, 13 Jan 2013 04:43:14 +1100 (EST) Received: from localhost ([::1]:36800 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu513-0003HI-4B for incoming@patchwork.ozlabs.org; Sat, 12 Jan 2013 12:37:09 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu50V-000289-Ag for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tu50P-0000O7-7y for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:35 -0500 Received: from mail-we0-f178.google.com ([74.125.82.178]:54203) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu50P-0000O1-1q for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:29 -0500 Received: by mail-we0-f178.google.com with SMTP id x43so1442742wey.9 for ; Sat, 12 Jan 2013 09:36:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=vv8fY9PGZwLT6MrxINzbhBIUiOP218320+rY4ov8UPU=; b=CcgAezAW8Vij0XTTqDdfqrFJdtP3QGfe8JfEnBCHf1gSWWoocFeaOXeQe7LPqfzoIn mk0FaCLhGq85HQLTQ+lF+oV6rk8d5Zs2H5K/q9NypNsGZCSz8PhL1TKcDdXw41kpNMlk 7X/+DVlxefYZ6USdEt9+4xQHElEoLcCnHEdEFZyBzmnHXT+bsGUM8fv+XTbxT80gFBxT T0MisULhp4qb4qVB2UJSb23TuqZI2g9zavzeOTMWeymPN++Zf9F639Qo10yMNzCT85Os +xyjuFyl4FHx5M0uqma3pI79ehu/PBIWdfIe5NCwWhlUXsHBETDcL4UBJABUrrtiaiRI rm7Q== X-Received: by 10.194.87.200 with SMTP id ba8mr127299341wjb.22.1358012188314; Sat, 12 Jan 2013 09:36:28 -0800 (PST) Received: from yakj.lan (93-34-179-137.ip50.fastwebnet.it. [93.34.179.137]) by mx.google.com with ESMTPS id h19sm4576016wiv.7.2013.01.12.09.36.26 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 12 Jan 2013 09:36:27 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Sat, 12 Jan 2013 18:35:18 +0100 Message-Id: <1358012138-21613-8-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.1 In-Reply-To: <1358012138-21613-1-git-send-email-pbonzini@redhat.com> References: <1358012138-21613-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 74.125.82.178 Cc: Alon Levy Subject: [Qemu-devel] [PATCH 07/27] libcacard: fix missing symbol in libcacard.so X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Alon Levy Before patch: $ make libcacard.la $ nm ./libcacard/.libs/libcacard.so.0.0.0 | grep " U " | \ egrep -v "(g_)|(GLIBC)|(SECMOD)|(PK11)|(CERT)|(NSS)|(PORT)|(PR)" U error_set Signed-off-by: Alon Levy Signed-off-by: Paolo Bonzini --- libcacard/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcacard/Makefile b/libcacard/Makefile index 34d503b..08a47e0 100644 --- a/libcacard/Makefile +++ b/libcacard/Makefile @@ -7,7 +7,7 @@ libcacard_includedir=$(includedir)/cacard $(call set-vpath, $(SRC_PATH)) # objects linked into a shared library, built with libtool with -fPIC if required -QEMU_OBJS=$(oslib-obj-y) qemu-timer-common.o $(trace-obj-y) $(stub-obj-y) +QEMU_OBJS=$(oslib-obj-y) qemu-timer-common.o error.o $(trace-obj-y) $(stub-obj-y) QEMU_OBJS_LIB=$(patsubst %.o,%.lo,$(QEMU_OBJS)) # libtool will build the .o files, too