Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 5BDAB41733F for ; Sun, 11 Apr 2010 16:45:08 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hA4lsZMNenpK for ; Sun, 11 Apr 2010 16:45:07 -0700 (PDT) Received: from mail-qy0-f191.google.com (mail-qy0-f191.google.com [209.85.221.191]) by olra.theworths.org (Postfix) with ESMTP id C3B1341733A for ; Sun, 11 Apr 2010 16:45:06 -0700 (PDT) Received: by mail-qy0-f191.google.com with SMTP id 29so5262228qyk.2 for ; Sun, 11 Apr 2010 16:45:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :message-id:x-mailer:in-reply-to:references; bh=WZcnRxy9d2Os1blZtHmYHia/1/5e1SaO0HcULzH89pg=; b=qVwSsRZvGYnTB8cqPwCo2V1+KM2nIcqnkziSrAowqzCmTtTHzu0KxNsqgRMeI8kWY+ Qu54UxOXwxc433a8iz7AUbVjBrIBV+iKETu3rWUVVPY8QGcgQ/j/Dyyx/JFO7rtnTRuQ fC3wnhWr2XeLGtedWs16A9yLVIoZ7w9ek7HFE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer:in-reply-to:references; b=Ms4xdkOxAz8to4ztHmLKXgzL8UFcOe8VNx4BnhqIG8Fe3pcjsaWZFCai3mjmeOyAVr t/zqfMf3XmWHIoWkwu0B8RmV5PvtQSNqf8+tWkiWVjKdSLhwcAQCKdWYM+pfr/INOkQA bRz88iVL5eixEEMumAQu9HDbe4FaMSBlIELIE= Received: by 10.224.27.90 with SMTP id h26mr1145763qac.243.1271029506579; Sun, 11 Apr 2010 16:45:06 -0700 (PDT) Received: from localhost.localdomain (vpm120.wireless-resnet.upenn.edu [165.123.236.140]) by mx.google.com with ESMTPS id 8sm7425346qwj.50.2010.04.11.16.45.06 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 11 Apr 2010 16:45:06 -0700 (PDT) From: Aaron Ecay To: notmuch@notmuchmail.org Subject: [PATCH 4/4] Add CONFIGURE_LDFLAGS to the notmuch-shared buld command line. Date: Sun, 11 Apr 2010 19:44:54 -0400 Message-Id: <1271029494-89014-4-git-send-email-aaronecay@gmail.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <4bc25ea0.86c3f10a.45a3.ffff80d3@mx.google.com> References: <4bc25ea0.86c3f10a.45a3.ffff80d3@mx.google.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2010 23:45:08 -0000 Otherwise, symbol not found errors result on OS X. I am not sure this is the correct solution for the problem, but it gets the build working. Signed-off-by: Aaron Ecay --- Makefile.local | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.local b/Makefile.local index 99d5b64..8d5fda4 100644 --- a/Makefile.local +++ b/Makefile.local @@ -36,7 +36,7 @@ Makefile.config: configure # Smash together user's values with our extra values FINAL_CFLAGS = -DNOTMUCH_VERSION=$(VERSION) $(CFLAGS) $(WARN_CFLAGS) $(CONFIGURE_CFLAGS) $(extra_cflags) FINAL_CXXFLAGS = $(CXXFLAGS) $(WARN_CXXFLAGS) $(CONFIGURE_CXXFLAGS) $(extra_cflags) $(extra_cxxflags) -FINAL_NOTMUCH_LDFLAGS = $(LDFLAGS) -Llib -lnotmuch +FINAL_NOTMUCH_LDFLAGS = $(LDFLAGS) -Llib -lnotmuch $(CONFIGURE_LDFLAGS) FINAL_LIBNOTMUCH_LDFLAGS = $(LDFLAGS) $(CONFIGURE_LDFLAGS) .PHONY: all -- 1.7.0.4