Index: /branches/jch-memory/psLib/src/sys/psAssert.h
===================================================================
--- /branches/jch-memory/psLib/src/sys/psAssert.h	(revision 10998)
+++ /branches/jch-memory/psLib/src/sys/psAssert.h	(revision 10999)
@@ -14,13 +14,22 @@
 { \
     if (NAME == NULL) return(RVAL); \
-    psMemBlock *mb = (psMemBlock*)(NAME) - 1; \
-    if (mb->startblock != P_PS_MEMMAGIC || mb->endblock != P_PS_MEMMAGIC || \
-            *(psU32 *)((char *)(mb + 1) + mb->userMemorySize) != P_PS_MEMMAGIC) { \
-        psError(PS_ERR_MEMORY_CORRUPTION, false, \
-                "Error: Pointer %s is corrupted or not on the PS memory system.", \
-                #NAME); \
-        return (RVAL); \
-    } \
-}
+}
+
+#if 0
+
+psMemBlock *mb = (psMemBlock*)(NAME) - 1;
+\
+if (mb->startblock != P_PS_MEMMAGIC || mb->endblock != P_PS_MEMMAGIC || \
+        *(psU32 *)((char *)(mb + 1) + mb->userMemorySize) != P_PS_MEMMAGIC)
+{
+    \
+    psError(PS_ERR_MEMORY_CORRUPTION, false, \
+            "Error: Pointer %s is corrupted or not on the PS memory system.", \
+            #NAME); \
+    return (RVAL); \
+} \
+}
+
+#endif
 
 #define PS_ASSERT_INT_UNEQUAL(NAME1, NAME2, RVAL) \
Index: /branches/jch-memory/psLib/src/sys/psConfigure.c
===================================================================
--- /branches/jch-memory/psLib/src/sys/psConfigure.c	(revision 10998)
+++ /branches/jch-memory/psLib/src/sys/psConfigure.c	(revision 10999)
@@ -13,9 +13,14 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.20.2.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-04 21:39:46 $
+ *  @version $Revision: 1.20.2.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
@@ -28,6 +33,4 @@
 #include "psError.h"
 #include "psConfigure.h"
-
-#include "config.h"
 
 static char *memCheckName = NULL;       // Filename to which to write results of mem check
Index: /branches/jch-memory/psLib/src/sys/psError.c
===================================================================
--- /branches/jch-memory/psLib/src/sys/psError.c	(revision 10998)
+++ /branches/jch-memory/psLib/src/sys/psError.c	(revision 10999)
@@ -11,9 +11,13 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.41.2.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-05 00:49:33 $
+ *  @version $Revision: 1.41.2.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdarg.h>
Index: /branches/jch-memory/psLib/src/sys/psMemory.c
===================================================================
--- /branches/jch-memory/psLib/src/sys/psMemory.c	(revision 10998)
+++ /branches/jch-memory/psLib/src/sys/psMemory.c	(revision 10999)
@@ -10,6 +10,6 @@
 *  @author Joshua Hoblitt, University of Hawaii
 *
-*  @version $Revision: 1.88.2.22 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2007-01-09 22:23:05 $
+*  @version $Revision: 1.88.2.23 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -17,5 +17,5 @@
 
 #if HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
Index: /branches/jch-memory/psLib/src/sys/psTrace.c
===================================================================
--- /branches/jch-memory/psLib/src/sys/psTrace.c	(revision 10998)
+++ /branches/jch-memory/psLib/src/sys/psTrace.c	(revision 10999)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.79.2.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-05 00:49:33 $
+ *  @version $Revision: 1.79.2.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -37,4 +37,8 @@
  
  *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #ifndef PS_NO_TRACE
Index: /trunk/psLib/src/astro/parse_gcov-out.c
===================================================================
--- /trunk/psLib/src/astro/parse_gcov-out.c	(revision 10998)
+++ /trunk/psLib/src/astro/parse_gcov-out.c	(revision 10999)
@@ -1,2 +1,5 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
Index: /trunk/psLib/src/astro/psCoord.c
===================================================================
--- /trunk/psLib/src/astro/psCoord.c	(revision 10998)
+++ /trunk/psLib/src/astro/psCoord.c	(revision 10999)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.129 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-12-29 04:38:42 $
+*  @version $Revision: 1.130 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:52 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -18,4 +18,9 @@
 /*  INCLUDE FILES                                                             */
 /******************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "psType.h"
 #include "psCoord.h"
Index: /trunk/psLib/src/astro/psEarthOrientation.c
===================================================================
--- /trunk/psLib/src/astro/psEarthOrientation.c	(revision 10998)
+++ /trunk/psLib/src/astro/psEarthOrientation.c	(revision 10999)
@@ -8,9 +8,13 @@
  *  @author Robert Daniel DeSonia, MHPCC
  *
- *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-15 01:33:42 $
+ *  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <math.h>
Index: /trunk/psLib/src/astro/psSphereOps.c
===================================================================
--- /trunk/psLib/src/astro/psSphereOps.c	(revision 10998)
+++ /trunk/psLib/src/astro/psSphereOps.c	(revision 10999)
@@ -8,9 +8,13 @@
  *  @author Dave Robbins, MHPCC
  *
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-10 17:29:51 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <math.h>
Index: /trunk/psLib/src/astro/psTime.c
===================================================================
--- /trunk/psLib/src/astro/psTime.c	(revision 10998)
+++ /trunk/psLib/src/astro/psTime.c	(revision 10999)
@@ -10,9 +10,13 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.107 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-14 23:02:46 $
+ *  @version $Revision: 1.108 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
@@ -34,7 +38,4 @@
 #include "psLookupTable.h"
 #include "psAssert.h"
-
-
-#include "config.h"
 
 #define MAX_STRING_LENGTH 256
Index: /trunk/psLib/src/db/psDB.c
===================================================================
--- /trunk/psLib/src/db/psDB.c	(revision 10998)
+++ /trunk/psLib/src/db/psDB.c	(revision 10999)
@@ -12,6 +12,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.130 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-09 01:59:54 $
+ *  @version $Revision: 1.131 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright (C) 2005-2006  Joshua Hoblitt, University of Hawaii
@@ -19,5 +19,5 @@
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
 #endif
 
Index: /trunk/psLib/src/fft/psImageFFT.c
===================================================================
--- /trunk/psLib/src/fft/psImageFFT.c	(revision 10998)
+++ /trunk/psLib/src/fft/psImageFFT.c	(revision 10999)
@@ -5,9 +5,14 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-08-08 23:32:23 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <unistd.h>
 #include <string.h>
Index: /trunk/psLib/src/fft/psVectorFFT.c
===================================================================
--- /trunk/psLib/src/fft/psVectorFFT.c	(revision 10998)
+++ /trunk/psLib/src/fft/psVectorFFT.c	(revision 10999)
@@ -5,9 +5,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-08-08 23:32:23 $
+ *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <unistd.h>
Index: /trunk/psLib/src/fits/psFits.c
===================================================================
--- /trunk/psLib/src/fits/psFits.c	(revision 10998)
+++ /trunk/psLib/src/fits/psFits.c	(revision 10999)
@@ -7,10 +7,14 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 21:13:47 $
+ *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
-#include "config.h"
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <unistd.h>
 
Index: /trunk/psLib/src/fits/psFitsHeader.c
===================================================================
--- /trunk/psLib/src/fits/psFitsHeader.c	(revision 10998)
+++ /trunk/psLib/src/fits/psFitsHeader.c	(revision 10999)
@@ -7,9 +7,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-05 20:15:05 $
+ *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <unistd.h>
Index: /trunk/psLib/src/fits/psFitsImage.c
===================================================================
--- /trunk/psLib/src/fits/psFitsImage.c	(revision 10998)
+++ /trunk/psLib/src/fits/psFitsImage.c	(revision 10999)
@@ -7,9 +7,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-24 22:52:55 $
+ *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <unistd.h>
Index: /trunk/psLib/src/fits/psFitsTable.c
===================================================================
--- /trunk/psLib/src/fits/psFitsTable.c	(revision 10998)
+++ /trunk/psLib/src/fits/psFitsTable.c	(revision 10999)
@@ -7,11 +7,14 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-24 22:52:55 $
+ *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "psFits.h"
 #include "string.h"
Index: /trunk/psLib/src/imageops/psImageBackground.c
===================================================================
--- /trunk/psLib/src/imageops/psImageBackground.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageBackground.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
Index: /trunk/psLib/src/imageops/psImageConvolve.c
===================================================================
--- /trunk/psLib/src/imageops/psImageConvolve.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageConvolve.c	(revision 10999)
@@ -5,9 +5,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-24 22:52:55 $
+ *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
Index: /trunk/psLib/src/imageops/psImageGeomManip.c
===================================================================
--- /trunk/psLib/src/imageops/psImageGeomManip.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageGeomManip.c	(revision 10999)
@@ -10,9 +10,13 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-08 11:37:31 $
+ *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <complex.h>
Index: /trunk/psLib/src/imageops/psImageMaskOps.c
===================================================================
--- /trunk/psLib/src/imageops/psImageMaskOps.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageMaskOps.c	(revision 10999)
@@ -8,9 +8,13 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-08-08 23:32:23 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <complex.h>
Index: /trunk/psLib/src/imageops/psImagePixelExtract.c
===================================================================
--- /trunk/psLib/src/imageops/psImagePixelExtract.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImagePixelExtract.c	(revision 10999)
@@ -8,10 +8,14 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-08 11:37:31 $
+ *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
Index: /trunk/psLib/src/imageops/psImagePixelManip.c
===================================================================
--- /trunk/psLib/src/imageops/psImagePixelManip.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImagePixelManip.c	(revision 10999)
@@ -10,9 +10,13 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-08-08 23:32:23 $
+ *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <complex.h>
Index: /trunk/psLib/src/imageops/psImageStats.c
===================================================================
--- /trunk/psLib/src/imageops/psImageStats.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageStats.c	(revision 10999)
@@ -9,9 +9,13 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.102 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-08 11:37:31 $
+ *  @version $Revision: 1.103 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdlib.h>
@@ -588,9 +592,9 @@
         return -1;
     }/* else if (col0 == col1 && row0 == row1) {
-                                                        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
-                                                                "Invalid psRegion specified.  Region contains only 1 pixel.\n");
-                                                        return -1;
-                                                    }
-                                                */
+                                                            psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                                                                    "Invalid psRegion specified.  Region contains only 1 pixel.\n");
+                                                            return -1;
+                                                        }
+                                                    */
     x0 = col0;
     x1 = col1;
Index: /trunk/psLib/src/imageops/psImageStructManip.c
===================================================================
--- /trunk/psLib/src/imageops/psImageStructManip.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageStructManip.c	(revision 10999)
@@ -8,10 +8,14 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 21:13:48 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
Index: /trunk/psLib/src/imageops/psImageUnbin.c
===================================================================
--- /trunk/psLib/src/imageops/psImageUnbin.c	(revision 10998)
+++ /trunk/psLib/src/imageops/psImageUnbin.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 
Index: /trunk/psLib/src/jpeg/psImageJpeg.c
===================================================================
--- /trunk/psLib/src/jpeg/psImageJpeg.c	(revision 10998)
+++ /trunk/psLib/src/jpeg/psImageJpeg.c	(revision 10999)
@@ -1,4 +1,4 @@
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
 #endif
 
Index: /trunk/psLib/src/math/psBinaryOp.c
===================================================================
--- /trunk/psLib/src/math/psBinaryOp.c	(revision 10998)
+++ /trunk/psLib/src/math/psBinaryOp.c	(revision 10999)
@@ -30,9 +30,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-14 00:02:31 $
+ *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /******************************************************************************
Index: /trunk/psLib/src/math/psClip.c
===================================================================
--- /trunk/psLib/src/math/psClip.c	(revision 10998)
+++ /trunk/psLib/src/math/psClip.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <math.h>
Index: /trunk/psLib/src/math/psCompare.c
===================================================================
--- /trunk/psLib/src/math/psCompare.c	(revision 10998)
+++ /trunk/psLib/src/math/psCompare.c	(revision 10999)
@@ -7,9 +7,13 @@
  *  @author Robert Daniel DeSonia, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-03-17 19:26:19 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include "psCompare.h"
Index: /trunk/psLib/src/math/psEllipse.c
===================================================================
--- /trunk/psLib/src/math/psEllipse.c	(revision 10998)
+++ /trunk/psLib/src/math/psEllipse.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <assert.h>
Index: /trunk/psLib/src/math/psHistogram.c
===================================================================
--- /trunk/psLib/src/math/psHistogram.c	(revision 10998)
+++ /trunk/psLib/src/math/psHistogram.c	(revision 10999)
@@ -5,9 +5,13 @@
  *  @author GLG (MHPCC), EAM (IfA)
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-08 11:38:54 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2006 IfA, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdlib.h>
Index: /trunk/psLib/src/math/psMD5.c
===================================================================
--- /trunk/psLib/src/math/psMD5.c	(revision 10998)
+++ /trunk/psLib/src/math/psMD5.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <openssl/md5.h>
Index: /trunk/psLib/src/math/psMathUtils.c
===================================================================
--- /trunk/psLib/src/math/psMathUtils.c	(revision 10998)
+++ /trunk/psLib/src/math/psMathUtils.c	(revision 10999)
@@ -3,10 +3,15 @@
  *  This file contains standard math routines.
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-08 11:37:49 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 /*****************************************************************************/
 /*  INCLUDE FILES                                                            */
Index: /trunk/psLib/src/math/psMatrix.c
===================================================================
--- /trunk/psLib/src/math/psMatrix.c	(revision 10998)
+++ /trunk/psLib/src/math/psMatrix.c	(revision 10999)
@@ -22,9 +22,13 @@
  *  @author Andy Becker, University of Washington (SVD).
  *
- *  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-01 21:48:47 $
+ *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /******************************************************************************/
Index: /trunk/psLib/src/math/psMinimizeLMM.c
===================================================================
--- /trunk/psLib/src/math/psMinimizeLMM.c	(revision 10998)
+++ /trunk/psLib/src/math/psMinimizeLMM.c	(revision 10999)
@@ -10,10 +10,15 @@
  *  @author EAM, IfA
  *
- *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-29 02:25:14 $
+ *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 /*****************************************************************************/
 /* INCLUDE FILES                                                             */
Index: /trunk/psLib/src/math/psMinimizePolyFit.c
===================================================================
--- /trunk/psLib/src/math/psMinimizePolyFit.c	(revision 10998)
+++ /trunk/psLib/src/math/psMinimizePolyFit.c	(revision 10999)
@@ -10,6 +10,6 @@
  *  @author EAM, IfA
  *
- *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-01 21:01:33 $
+ *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -20,4 +20,9 @@
  *
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 /*****************************************************************************/
 /* INCLUDE FILES                                                             */
Index: /trunk/psLib/src/math/psMinimizePowell.c
===================================================================
--- /trunk/psLib/src/math/psMinimizePowell.c	(revision 10998)
+++ /trunk/psLib/src/math/psMinimizePowell.c	(revision 10999)
@@ -11,10 +11,15 @@
  *  NOTE: XXX: The SDR is silent about data types.  F32 is implemented here.
  *
- *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-04 23:50:08 $
+ *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 /*****************************************************************************/
 /* INCLUDE FILES                                                             */
Index: /trunk/psLib/src/math/psPolynomial.c
===================================================================
--- /trunk/psLib/src/math/psPolynomial.c	(revision 10998)
+++ /trunk/psLib/src/math/psPolynomial.c	(revision 10999)
@@ -7,6 +7,6 @@
 *  polynomials.  It also contains a Gaussian functions.
 *
-*  @version $Revision: 1.156 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-12-29 04:38:42 $
+*  @version $Revision: 1.157 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -15,4 +15,9 @@
 *
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 /*****************************************************************************/
 /*  INCLUDE FILES                                                            */
Index: /trunk/psLib/src/math/psPolynomialUtils.c
===================================================================
--- /trunk/psLib/src/math/psPolynomialUtils.c	(revision 10998)
+++ /trunk/psLib/src/math/psPolynomialUtils.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include "psMemory.h"
Index: /trunk/psLib/src/math/psRandom.c
===================================================================
--- /trunk/psLib/src/math/psRandom.c	(revision 10998)
+++ /trunk/psLib/src/math/psRandom.c	(revision 10999)
@@ -10,9 +10,13 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-08-26 05:01:49 $
+*  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
Index: /trunk/psLib/src/math/psRegion.c
===================================================================
--- /trunk/psLib/src/math/psRegion.c	(revision 10998)
+++ /trunk/psLib/src/math/psRegion.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <math.h>
Index: /trunk/psLib/src/math/psRegionForImage.c
===================================================================
--- /trunk/psLib/src/math/psRegionForImage.c	(revision 10998)
+++ /trunk/psLib/src/math/psRegionForImage.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include "psError.h"
Index: /trunk/psLib/src/math/psSparse.c
===================================================================
--- /trunk/psLib/src/math/psSparse.c	(revision 10998)
+++ /trunk/psLib/src/math/psSparse.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <string.h>
Index: /trunk/psLib/src/math/psSpline.c
===================================================================
--- /trunk/psLib/src/math/psSpline.c	(revision 10998)
+++ /trunk/psLib/src/math/psSpline.c	(revision 10999)
@@ -6,9 +6,14 @@
 *  This file contains the routines that allocate, free, and evaluate splines.
 *
-*  @version $Revision: 1.156 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-24 22:52:56 $
+*  @version $Revision: 1.157 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 /*****************************************************************************/
 /*  INCLUDE FILES                                                            */
Index: /trunk/psLib/src/math/psStats.c
===================================================================
--- /trunk/psLib/src/math/psStats.c	(revision 10998)
+++ /trunk/psLib/src/math/psStats.c	(revision 10999)
@@ -13,9 +13,13 @@
  * use ->min and ->max (PS_STAT_USE_RANGE)
  *
- *  @version $Revision: 1.197 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-29 04:38:42 $
+ *  @version $Revision: 1.198 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2006 IfA, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdlib.h>
Index: /trunk/psLib/src/math/psUnaryOp.c
===================================================================
--- /trunk/psLib/src/math/psUnaryOp.c	(revision 10998)
+++ /trunk/psLib/src/math/psUnaryOp.c	(revision 10999)
@@ -31,9 +31,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-29 00:49:21 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /******************************************************************************
Index: /trunk/psLib/src/math/psVectorSmooth.c
===================================================================
--- /trunk/psLib/src/math/psVectorSmooth.c	(revision 10998)
+++ /trunk/psLib/src/math/psVectorSmooth.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <string.h>
Index: /trunk/psLib/src/mathtypes/psImage.c
===================================================================
--- /trunk/psLib/src/mathtypes/psImage.c	(revision 10998)
+++ /trunk/psLib/src/mathtypes/psImage.c	(revision 10999)
@@ -9,6 +9,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.120 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-29 00:33:27 $
+ *  @version $Revision: 1.121 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -16,4 +16,8 @@
  *  That is the routine used to generate matrices.
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
Index: /trunk/psLib/src/mathtypes/psScalar.c
===================================================================
--- /trunk/psLib/src/mathtypes/psScalar.c	(revision 10998)
+++ /trunk/psLib/src/mathtypes/psScalar.c	(revision 10999)
@@ -8,9 +8,13 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 21:13:48 $
+ *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include "psMemory.h"
Index: /trunk/psLib/src/mathtypes/psVector.c
===================================================================
--- /trunk/psLib/src/mathtypes/psVector.c	(revision 10998)
+++ /trunk/psLib/src/mathtypes/psVector.c	(revision 10999)
@@ -9,9 +9,13 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.89 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-11-24 20:51:43 $
+*  @version $Revision: 1.90 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>                        // for memcpy
Index: /trunk/psLib/src/sys/psAbort.c
===================================================================
--- /trunk/psLib/src/sys/psAbort.c	(revision 10998)
+++ /trunk/psLib/src/sys/psAbort.c	(revision 10999)
@@ -10,9 +10,13 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-29 17:57:20 $
+ *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdarg.h>
Index: /trunk/psLib/src/sys/psLine.c
===================================================================
--- /trunk/psLib/src/sys/psLine.c	(revision 10998)
+++ /trunk/psLib/src/sys/psLine.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdarg.h>
Index: /trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.c	(revision 10998)
+++ /trunk/psLib/src/sys/psLogMsg.c	(revision 10999)
@@ -11,11 +11,13 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-08-29 20:23:54 $
+ *  @version $Revision: 1.64 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <limits.h>
Index: /trunk/psLib/src/sys/psSlurp.c
===================================================================
--- /trunk/psLib/src/sys/psSlurp.c	(revision 10998)
+++ /trunk/psLib/src/sys/psSlurp.c	(revision 10999)
@@ -5,6 +5,6 @@
  *  @author Joshua Hoblitt, University of Hawaii
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 21:13:48 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2006 University of Hawaii
@@ -12,5 +12,5 @@
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
 #endif
 
Index: /trunk/psLib/src/sys/psString.c
===================================================================
--- /trunk/psLib/src/sys/psString.c	(revision 10998)
+++ /trunk/psLib/src/sys/psString.c	(revision 10999)
@@ -13,9 +13,13 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-04 22:15:04 $
+ *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdlib.h>
Index: /trunk/psLib/src/types/parse_gcov-out.c
===================================================================
--- /trunk/psLib/src/types/parse_gcov-out.c	(revision 10998)
+++ /trunk/psLib/src/types/parse_gcov-out.c	(revision 10999)
@@ -1,2 +1,5 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
Index: /trunk/psLib/src/types/psArguments.c
===================================================================
--- /trunk/psLib/src/types/psArguments.c	(revision 10998)
+++ /trunk/psLib/src/types/psArguments.c	(revision 10999)
@@ -7,9 +7,13 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-13 01:44:44 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
Index: /trunk/psLib/src/types/psArray.c
===================================================================
--- /trunk/psLib/src/types/psArray.c	(revision 10998)
+++ /trunk/psLib/src/types/psArray.c	(revision 10999)
@@ -9,9 +9,13 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-24 22:52:56 $
+ *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /******************************************************************************/
Index: /trunk/psLib/src/types/psBitSet.c
===================================================================
--- /trunk/psLib/src/types/psBitSet.c	(revision 10998)
+++ /trunk/psLib/src/types/psBitSet.c	(revision 10999)
@@ -11,9 +11,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 21:13:48 $
+ *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
Index: /trunk/psLib/src/types/psHash.c
===================================================================
--- /trunk/psLib/src/types/psHash.c	(revision 10998)
+++ /trunk/psLib/src/types/psHash.c	(revision 10999)
@@ -12,9 +12,14 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-24 22:52:56 $
+*  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdlib.h>
 #include <stdio.h>
Index: /trunk/psLib/src/types/psList.c
===================================================================
--- /trunk/psLib/src/types/psList.c	(revision 10998)
+++ /trunk/psLib/src/types/psList.c	(revision 10999)
@@ -6,9 +6,13 @@
  *  @author Robert Daniel DeSonia, MHPCC
  *
- *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-06 04:08:53 $
+ *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdlib.h>
Index: /trunk/psLib/src/types/psLookupTable.c
===================================================================
--- /trunk/psLib/src/types/psLookupTable.c	(revision 10998)
+++ /trunk/psLib/src/types/psLookupTable.c	(revision 10999)
@@ -7,9 +7,14 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-25 04:58:38 $
+*  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <string.h>
Index: /trunk/psLib/src/types/psMetadata.c
===================================================================
--- /trunk/psLib/src/types/psMetadata.c	(revision 10998)
+++ /trunk/psLib/src/types/psMetadata.c	(revision 10999)
@@ -12,9 +12,13 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.147 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-14 04:46:45 $
+ *  @version $Revision: 1.148 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 /******************************************************************************/
Index: /trunk/psLib/src/types/psMetadataConfig.c
===================================================================
--- /trunk/psLib/src/types/psMetadataConfig.c	(revision 10998)
+++ /trunk/psLib/src/types/psMetadataConfig.c	(revision 10999)
@@ -10,9 +10,13 @@
 *  @author Eric Van Alst, MHPCC
 *
-*  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-11-28 22:18:31 $
+*  @version $Revision: 1.126 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-09 22:38:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <fitsio.h>
Index: /trunk/psLib/src/types/psMetadataItemCompare.c
===================================================================
--- /trunk/psLib/src/types/psMetadataItemCompare.c	(revision 10998)
+++ /trunk/psLib/src/types/psMetadataItemCompare.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <string.h>
Index: /trunk/psLib/src/types/psMetadataItemParse.c
===================================================================
--- /trunk/psLib/src/types/psMetadataItemParse.c	(revision 10998)
+++ /trunk/psLib/src/types/psMetadataItemParse.c	(revision 10999)
@@ -1,2 +1,6 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
Index: /trunk/psLib/src/types/psPixels.c
===================================================================
--- /trunk/psLib/src/types/psPixels.c	(revision 10998)
+++ /trunk/psLib/src/types/psPixels.c	(revision 10999)
@@ -7,9 +7,13 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 21:13:48 $
+ *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-01-09 22:38:53 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
