[reSIProcate] Testing 0.9.0-4902 candidate on Solaris 9
- From: Ryan Kereliuk <ryker@xxxxxxxxx>
- Date: Wed, 15 Jun 2005 23:00:59 -0600
I'm working with the 0.9.0-4902 candidate on Solaris 9. I will continue
to look at this but I'm away for the next week so I've attached a patch
in case anyone wants to pick this up in the meantime. With the patch,
the 0.9.0-4902 candidate compiles.
Thanks,
-Ryan
--- DnsUtil.cxx-orig 2005-06-15 22:21:38.132725000 -0600
+++ DnsUtil.cxx 2005-06-15 22:21:53.880775000 -0600
@@ -7,6 +7,9 @@
#include <sys/ioctl.h>
#include <net/if.h>
#include <errno.h>
+#endif
+
+#if !defined(WIN32)
#include <netdb.h>
#endif
--- Log.cxx-orig 2005-06-15 22:23:25.926209000 -0600
+++ Log.cxx 2005-06-15 22:32:18.037125000 -0600
@@ -205,8 +205,8 @@
<< pfile << ":" << line;
#else
char buffer[256];
- Data tstamp(Data::Borrow, buffer, sizeof(buffer));
#if defined( WIN32 )
+ Data tstamp(Data::Borrow, buffer, sizeof(buffer));
const char* file = pfile + strlen(pfile);
while (file != pfile &&
*file != '\\')