mirror of
https://git.freebsd.org/ports.git
synced 2025-07-05 11:29:15 -04:00
Office team is proud to announce LibreOffice 7.5 Community, the new major release of the volunteer-supported free office suite for desktop productivity Read more: https://blog.documentfoundation.org/blog/2023/02/02/tdf-announces-libreoffice-75-community/
25 lines
624 B
C++
25 lines
624 B
C++
--- sal/osl/unx/uunxapi.cxx.orig 2022-12-22 00:14:09 UTC
|
|
+++ sal/osl/unx/uunxapi.cxx
|
|
@@ -604,14 +604,22 @@ std::string UnixErrnoString(int nErrno)
|
|
case EBFONT:
|
|
return "EBFONT";
|
|
#endif
|
|
+#ifdef ENOSTR
|
|
case ENOSTR:
|
|
return "ENOSTR";
|
|
+#endif
|
|
+#ifdef ENODATA
|
|
case ENODATA:
|
|
return "ENODATA";
|
|
+#endif
|
|
+#if defined(ETIME) && (!defined(ETIMEDOUT) || ETIME != ETIMEDOUT)
|
|
case ETIME:
|
|
return "ETIME";
|
|
+#endif
|
|
+#ifdef ENOSR
|
|
case ENOSR:
|
|
return "ENOSR";
|
|
+#endif
|
|
#ifdef ENONET
|
|
case ENONET:
|
|
return "ENONET";
|