Package: babel
Severity: important
Version: 1.2.0.dfsg-6
Tags: patch
User: [EMAIL PROTECTED]
Usertags: kfreebsd

Hi,

the current version fails to build on GNU/kFreeBSD.

The ETIME is only optional symbolic constants for errno, see
http://www.opengroup.org/onlinepubs/009695399/basedefs/errno.h.html
It is not available on GNU/kFreeBSD, please guard it as shown bellow.

It would also be nice if you can ask upstream
to include this change.

Thanks in advance

                        Petr

--- runtime/sidlx/sidlx_common.c~
+++ runtime/sidlx/sidlx_common.c
@@ -100,7 +100,9 @@
       }

     case ETIMEDOUT:
+#ifdef ETIME
     case ETIME:
+#endif
       {
        sidlx_rmi_TimeoutException tmpEx =
          sidlx_rmi_TimeoutException__create(&_throwaway_exception);




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to