* [PATCH] GCC3.5 fix
@ 2010-01-21 20:31 Geo Carncross
0 siblings, 0 replies; only message in thread
From: Geo Carncross @ 2010-01-21 20:31 UTC (permalink / raw)
To: notmuch
[-- Attachment #1: Type: text/plain, Size: 302 bytes --]
I have reason to need GCC 3.5 which doesn't process the unused(x) macro
correctly. This is probably a bug in 3.5, nevertheless the patch is
simple and corrects the build.
GCC 3.5 also does not understand -Wextra but Makefile is bound to change
less frequently, so I did not include a patch for that.
[-- Attachment #2: notmuch_gcc_35.patch --]
[-- Type: text/x-patch, Size: 951 bytes --]
diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h
index c7fb0ef..ad6dcd8 100644
--- a/lib/notmuch-private.h
+++ b/lib/notmuch-private.h
@@ -74,7 +74,7 @@ _internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2);
_internal_error (format " (%s).\n", \
##__VA_ARGS__, __location__)
-#define unused(x) x __attribute__ ((unused))
+#define unused(x) x __attribute__((unused))
/* Thanks to Andrew Tridgell's (SAMBA's) talloc for this definition of
* unlikely. The talloc source code comes to us via the GNU LGPL v. 3.
diff --git a/notmuch-client.h b/notmuch-client.h
index 77766de..87e599a 100644
--- a/notmuch-client.h
+++ b/notmuch-client.h
@@ -49,7 +49,7 @@
#include <talloc.h>
-#define unused(x) x __attribute__ ((unused))
+#define unused(x) x __attribute__((unused))
/* There's no point in continuing when we've detected that we've done
* something wrong internally (as opposed to the user passing in a
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-01-21 20:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-21 20:31 [PATCH] GCC3.5 fix Geo Carncross
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).