Browse Source

Add missing headers to panda/putil (when doing non-composite builds).

kestred 12 years ago
parent
commit
07b7f5de5d

+ 2 - 0
panda/src/putil/bamCache.cxx

@@ -14,6 +14,8 @@
 
 #include "bamCache.h"
 #include "bamCacheIndex.h"
+#include "bamReader.h"
+#include "bamWriter.h"
 #include "hashVal.h"
 #include "datagramInputFile.h"
 #include "datagramOutputFile.h"

+ 3 - 0
panda/src/putil/bamCacheIndex.cxx

@@ -13,6 +13,9 @@
 ////////////////////////////////////////////////////////////////////
 
 #include "bamCacheIndex.h"
+#include "bamReader.h"
+#include "bamWriter.h"
+#include "config_util.h" // util_cat
 #include "indent.h"
 #include <algorithm>
 

+ 3 - 0
panda/src/putil/bamCacheRecord.cxx

@@ -13,9 +13,12 @@
 ////////////////////////////////////////////////////////////////////
 
 #include "bamCacheRecord.h"
+#include "bamReader.h"
+#include "bamWriter.h"
 #include "virtualFileSystem.h"
 #include "virtualFile.h"
 #include "indent.h"
+#include "config_util.h" // util_cat
 
 TypeHandle BamCacheRecord::_type_handle;
 

+ 2 - 0
panda/src/putil/bitArray.cxx

@@ -14,6 +14,8 @@
 
 #include "bitArray.h"
 #include "sparseArray.h"
+#include "datagram.h"
+#include "datagramIterator.h"
 
 TypeHandle BitArray::_type_handle;
 

+ 2 - 0
panda/src/putil/datagramOutputFile.h

@@ -21,6 +21,8 @@
 #include "filename.h"
 #include "fileReference.h"
 #include "virtualFile.h"
+#include "virtualFileSystem.h"
+#include "config_util.h"
 
 ////////////////////////////////////////////////////////////////////
 //       Class : DatagramOutputFile

+ 1 - 0
panda/src/putil/pythonCallbackObject.cxx

@@ -18,6 +18,7 @@
 #include "py_panda.h"  
 #include "thread.h"
 #include "callbackData.h"
+#include "config_util.h"
 
 TypeHandle PythonCallbackObject::_type_handle;
 

+ 2 - 0
panda/src/putil/sparseArray.cxx

@@ -14,6 +14,8 @@
 
 #include "sparseArray.h"
 #include "bitArray.h"
+#include "datagram.h"
+#include "datagramIterator.h"
 
 TypeHandle SparseArray::_type_handle;
 

+ 1 - 0
panda/src/putil/typedWritableReferenceCount.cxx

@@ -13,6 +13,7 @@
 ////////////////////////////////////////////////////////////////////
 
 #include "typedWritableReferenceCount.h"
+#include "dcast.h"
 
 TypeHandle TypedWritableReferenceCount::_type_handle;