Revision: 40982
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40982&view=rev
Author:   erikgreenwald
Date:     2010-10-13 20:37:26 +0000 (Wed, 13 Oct 2010)

Log Message:
-----------
include fudging for windows

Modified Paths:
--------------
    isst/trunk/gtk/local_worker.c
    isst/trunk/gtk/main.c
    isst/trunk/gtk/net_worker.c

Modified: isst/trunk/gtk/local_worker.c
===================================================================
--- isst/trunk/gtk/local_worker.c       2010-10-13 20:31:08 UTC (rev 40981)
+++ isst/trunk/gtk/local_worker.c       2010-10-13 20:37:26 UTC (rev 40982)
@@ -28,15 +28,15 @@
 # include "isst_config.h"
 #endif
 
-#include <pthread.h>
+#if HAVE_PTHREAD_H
+# include <pthread.h>
+#endif
 
-#include <stdint.h>
+#include "tie.h"
+#include "adrt.h"
+#include "adrt_struct.h"
+#include "camera.h"
 
-#include "tie/tie.h"
-#include "tie/adrt.h"
-#include "tie/adrt_struct.h"
-#include "tie/camera.h"
-
 #include "isst.h"
 
 struct tie_s *tie;

Modified: isst/trunk/gtk/main.c
===================================================================
--- isst/trunk/gtk/main.c       2010-10-13 20:31:08 UTC (rev 40981)
+++ isst/trunk/gtk/main.c       2010-10-13 20:37:26 UTC (rev 40982)
@@ -30,10 +30,13 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stdint.h>
 #include <string.h>
 #include <signal.h>
-#include <unistd.h>
+
+#if HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
 #include <pthread.h>
 
 #include "tie/tie.h"

Modified: isst/trunk/gtk/net_worker.c
===================================================================
--- isst/trunk/gtk/net_worker.c 2010-10-13 20:31:08 UTC (rev 40981)
+++ isst/trunk/gtk/net_worker.c 2010-10-13 20:37:26 UTC (rev 40982)
@@ -30,10 +30,12 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stdint.h>
 #include <string.h>
-#include <pthread.h>
 
+#if HAVE_PTHREAD_H
+# include <pthread.h>
+#endif
+
 #include <netdb.h>
 #include <netinet/in.h>
 #include <sys/socket.h>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to