[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Failure to compile this morning
From: |
Sven Joachim |
Subject: |
Re: Failure to compile this morning |
Date: |
Thu, 12 Jul 2012 09:27:39 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) |
On 2012-07-12 00:51 +0200, Paul Eggert wrote:
> Sorry about that -- I introduced some code that didn't
> port to Solaris and similar hosts. Should be fixed in
> trunk bzr 109035.
It isn't:
.../lib-src/movemail.c:149:6: error: operator '||' has no left operand
Suggested fix:
--8<---------------cut here---------------start------------->8---
=== modified file 'lib-src/movemail.c'
--- lib-src/movemail.c 2012-07-11 22:44:07 +0000
+++ lib-src/movemail.c 2012-07-12 06:51:17 +0000
@@ -145,7 +145,7 @@ static int mbx_delimit_begin (FILE *mbf)
static int mbx_delimit_end (FILE *mbf);
#endif
-#if (MAIL_USE_MAILLOCK \
+#if (defined MAIL_USE_MAILLOCK \
|| (!defined DISABLE_DIRECT_ACCESS && !defined MAIL_USE_MMDF \
&& !defined MAIL_USE_SYSTEM_LOCK))
/* Like malloc but get fatal error if memory is exhausted. */
--8<---------------cut here---------------end--------------->8---
Cheers,
Sven