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 2F6E7431FC9 for ; Fri, 25 May 2012 06:43:50 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled 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 nQB-D+dkIyr3 for ; Fri, 25 May 2012 06:43:49 -0700 (PDT) Received: from mail-vb0-f53.google.com (mail-vb0-f53.google.com [209.85.212.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 81281431FC0 for ; Fri, 25 May 2012 06:43:49 -0700 (PDT) Received: by mail-vb0-f53.google.com with SMTP id fc26so989685vbb.26 for ; Fri, 25 May 2012 06:43:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=eKrxSPAsZT2nZtT4WpRTe0iZ0mJi07VY9yfITg5cP+Y=; b=ECcxZk8CckTTHCdWWKRrkCyACK/yGbDXqcnm6WEGoi7wQNJEuUWd0bk8XomZIq1920 UEzUgEwZ6ReXOM40p1PwpsBcb4kjIyqpsZcqC76ebd8rCrzww6S+YCpt5MSlHQBIVVvD Tm/wo4zJlbXfugDQGUUV67lz3pDu+JU8ywSJ39PNYEMi+wNCfpX8TXDtNNQNKWB+vIXD aAhalvp0mqFVbct1EG8wOBWH8EEaFTja0FZmNrMJF+IEcZWAx9bl+HKGNSHk23JjAM85 1qtJql8qyOGIz3MhYYQ0il573MZC5L5sxg5gnKqSCbfZgq/5ZDa/+cq8fu4lNq49g5rF GTEQ== Received: by 10.52.174.37 with SMTP id bp5mr3029366vdc.114.1337953429205; Fri, 25 May 2012 06:43:49 -0700 (PDT) Received: from nas.home.pioto.org (pool-71-182-155-97.pitbpa.fios.verizon.net. [71.182.155.97]) by mx.google.com with ESMTPS id bv19sm4225748vdc.19.2012.05.25.06.43.48 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 May 2012 06:43:48 -0700 (PDT) Received: by nas.home.pioto.org (Postfix, from userid 1001) id F1875287CD; Fri, 25 May 2012 09:43:47 -0400 (EDT) From: Mike Kelly To: notmuch@notmuchmail.org Subject: [PATCH 02/10] Fix compilation of symbol-test on FreeBSD Date: Fri, 25 May 2012 09:43:23 -0400 Message-Id: <1337953411-21000-3-git-send-email-pioto@pioto.org> X-Mailer: git-send-email 1.7.10.2 In-Reply-To: <1337953411-21000-1-git-send-email-pioto@pioto.org> References: <1337953411-21000-1-git-send-email-pioto@pioto.org> X-Gm-Message-State: ALoCoQlcpydhiRx/sdgPpyekdtbU3qCqLPPr1LLOqtCnxGcEc0XO6jBr84AAyQQuy760skYevr84 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: Fri, 25 May 2012 13:43:50 -0000 --- test/Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.local b/test/Makefile.local index 4a6a4b1..c071aee 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -17,7 +17,7 @@ $(dir)/smtp-dummy: $(smtp_dummy_modules) $(call quiet,CC) $^ -o $@ $(dir)/symbol-test: $(dir)/symbol-test.o - $(call quiet,CXX) $^ -o $@ -Llib -lnotmuch -lxapian + $(call quiet,CXX) $^ -o $@ -Llib -lnotmuch $(XAPIAN_LDFLAGS) .PHONY: test check -- 1.7.10.2