Re: [PATCH] lib: add library version check macro
authorTomi Ollila <tomi.ollila@iki.fi>
Thu, 7 Nov 2013 13:13:59 +0000 (15:13 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:58:03 +0000 (09:58 -0800)
67/6882777d14c4c570d06f10a8b64e76fe86e441 [new file with mode: 0644]

diff --git a/67/6882777d14c4c570d06f10a8b64e76fe86e441 b/67/6882777d14c4c570d06f10a8b64e76fe86e441
new file mode 100644 (file)
index 0000000..eec697e
--- /dev/null
@@ -0,0 +1,110 @@
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 19C45431FBD\r
+       for <notmuch@notmuchmail.org>; Thu,  7 Nov 2013 05:14:16 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id S81In-yVBqkC for <notmuch@notmuchmail.org>;\r
+       Thu,  7 Nov 2013 05:14:07 -0800 (PST)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+       by olra.theworths.org (Postfix) with ESMTP id CEF75431FAE\r
+       for <notmuch@notmuchmail.org>; Thu,  7 Nov 2013 05:14:06 -0800 (PST)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+       by guru.guru-group.fi (Postfix) with ESMTP id 3CED3100051;\r
+       Thu,  7 Nov 2013 15:14:00 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Jani Nikula <jani@nikula.org>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH] lib: add library version check macro\r
+In-Reply-To: <1383764501-18973-1-git-send-email-jani@nikula.org>\r
+References: <1383764501-18973-1-git-send-email-jani@nikula.org>\r
+User-Agent: Notmuch/0.16+119~g219c55f (http://notmuchmail.org) Emacs/24.3.1\r
+       (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+       $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+       !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Thu, 07 Nov 2013 15:13:59 +0200\r
+Message-ID: <m2bo1w9wx4.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Thu, 07 Nov 2013 13:14:16 -0000\r
+\r
+On Wed, Nov 06 2013, Jani Nikula <jani@nikula.org> wrote:\r
+\r
+> There have been some plans for making build incompatible changes to\r
+> the library API. This is inconvenient, but it is much more so without\r
+> a way to easily conditional build against multiple versions of\r
+> notmuch.\r
+>\r
+> The macro has been lifted from glib.\r
+\r
++1\r
+\r
+Tomi\r
+\r
+\r
+> ---\r
+>  lib/notmuch.h | 24 ++++++++++++++++++++++++\r
+>  1 file changed, 24 insertions(+)\r
+>\r
+> diff --git a/lib/notmuch.h b/lib/notmuch.h\r
+> index 9dab555..d109a2c 100644\r
+> --- a/lib/notmuch.h\r
+> +++ b/lib/notmuch.h\r
+> @@ -41,6 +41,30 @@ NOTMUCH_BEGIN_DECLS\r
+>  #define TRUE 1\r
+>  #endif\r
+>  \r
+> +#define NOTMUCH_MAJOR_VERSION       0\r
+> +#define NOTMUCH_MINOR_VERSION       17\r
+> +#define NOTMUCH_MICRO_VERSION       0\r
+> +\r
+> +/*\r
+> + * Check the version of the notmuch library being compiled against.\r
+> + *\r
+> + * Return true if the library being compiled against is of the\r
+> + * specified version or above. For example:\r
+> + *\r
+> + * #if NOTMUCH_CHECK_VERSION(0, 18, 0)\r
+> + *     (code requiring notmuch 0.18 or above)\r
+> + * #endif\r
+> + *\r
+> + * NOTMUCH_CHECK_VERSION has been defined since version 0.17.0; you\r
+> + * can use #if !defined(NOTMUCH_CHECK_VERSION) to check for versions\r
+> + * prior to that.\r
+> + */\r
+> +#define NOTMUCH_CHECK_VERSION (major, minor, micro)                 \\r
+> +    (NOTMUCH_MAJOR_VERSION > (major) ||                                     \\r
+> +     (NOTMUCH_MAJOR_VERSION == (major) && NOTMUCH_MINOR_VERSION > (minor)) || \\r
+> +     (NOTMUCH_MAJOR_VERSION == (major) && NOTMUCH_MINOR_VERSION == (minor) && \\r
+> +      NOTMUCH_MICRO_VERSION >= (micro)))\r
+> +\r
+>  typedef int notmuch_bool_t;\r
+>  \r
+>  /* Status codes used for the return values of most functions.\r
+> -- \r
+> 1.8.4.rc3\r
+>\r
+> _______________________________________________\r
+> notmuch mailing list\r
+> notmuch@notmuchmail.org\r
+> http://notmuchmail.org/mailman/listinfo/notmuch\r