Update of /cvsroot/boost/boost/boost/asio
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30353

Modified Files:
        error.hpp system_exception.hpp 
Log Message:
Use correct form for strerror_r on NetBSD.


Index: error.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/asio/error.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- error.hpp   14 Jun 2006 22:26:30 -0000      1.1
+++ error.hpp   5 Jul 2006 05:27:48 -0000       1.2
@@ -273,7 +273,7 @@
     default:
 #if defined(__sun) || defined(__QNX__)
       return strerror(code_);
-#elif defined(__MACH__) && defined(__APPLE__)
+#elif defined(__MACH__) && defined(__APPLE__) || defined(__NetBSD__)
       try
       {
         char buf[256] = "";

Index: system_exception.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/asio/system_exception.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- system_exception.hpp        14 Jun 2006 22:26:30 -0000      1.1
+++ system_exception.hpp        5 Jul 2006 05:27:48 -0000       1.2
@@ -108,7 +108,7 @@
     }
 #elif defined(__sun) || defined(__QNX__)
     return strerror(code_);
-#elif defined(__MACH__) && defined(__APPLE__)
+#elif defined(__MACH__) && defined(__APPLE__) || defined(__NetBSD__)
     try
     {
       char buf[256] = "";


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to