Index: /trunk/psLib/configure.ac
===================================================================
--- /trunk/psLib/configure.ac	(revision 5069)
+++ /trunk/psLib/configure.ac	(revision 5070)
@@ -25,4 +25,6 @@
 SRCDIRS="sys astro db fft fits imageops math mathtypes types xml"
 SRCINC=`echo "${SRCDIRS=}" | ${SED} "s|\(\\w\+\)|-I\${SRCPATH=}/\1|g"`
+dnl needed for psErrorText.h which is BUILT_SOURCES but also distributed
+SRCINC="-I\${top_srcdir}/src ${SRCINC=}"
 
 SRCSUBLIBS=`echo "${SRCDIRS=}" | ${SED} "s|\(\\w\+\)|\1/libpslib\1.la|g"`
Index: /trunk/psLib/src/math/psSpline.c
===================================================================
--- /trunk/psLib/src/math/psSpline.c	(revision 5069)
+++ /trunk/psLib/src/math/psSpline.c	(revision 5070)
@@ -7,6 +7,6 @@
 *  splines.
 *
-*  @version $Revision: 1.124 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-09-19 19:53:13 $
+*  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-09-19 22:50:28 $
 *
 *
@@ -264,5 +264,6 @@
     derivs2[n-1] = (u[n-1] - (qn * u[n-2])) / ((qn * derivs2[n-2]) + 1.0);
 
-    for (k=(n-2);k>=0;k--) {
+    //XXX: Changed from k=n-2;k>=0; because k is now unsigned//
+    for (k=(n-1);k>0;k--) {
         derivs2[k] = derivs2[k] * derivs2[k+1] + u[k];
 
Index: /trunk/psLib/src/mathtypes/psImage.h
===================================================================
--- /trunk/psLib/src/mathtypes/psImage.h	(revision 5069)
+++ /trunk/psLib/src/mathtypes/psImage.h	(revision 5070)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.69 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-16 23:56:51 $
+ *  @version $Revision: 1.70 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-19 22:50:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -55,6 +55,6 @@
     const int numCols;                 ///< Number of columns in image
     const int numRows;                 ///< Number of rows in image.
-    const int col0;                    ///< Column position relative to parent.
-    const int row0;                    ///< Row position relative to parent.
+    int col0;                          ///< Column position relative to parent.
+    int row0;                          ///< Row position relative to parent.
 
     union {
Index: /trunk/psLib/src/sys/psTrace.h
===================================================================
--- /trunk/psLib/src/sys/psTrace.h	(revision 5069)
+++ /trunk/psLib/src/sys/psTrace.h	(revision 5070)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-15 21:22:22 $
+ *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-19 22:50:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -46,5 +46,5 @@
     #   define psTracePrintLevels()         /* do nothing */
     #   define psTraceSetDestination(fp)    /* do nothing */
-    #   define psTraceSetDestination()      /* do nothing */
+    #   define psTraceGetDestination()      /* do nothing */
     #   define PS_TRACE_ON 0
 
Index: /trunk/psLib/test/math/tst_psFunc07.c
===================================================================
--- /trunk/psLib/test/math/tst_psFunc07.c	(revision 5069)
+++ /trunk/psLib/test/math/tst_psFunc07.c	(revision 5070)
@@ -40,5 +40,5 @@
     psS32 memLeaks=0;
     psS32  currentId = psMemGetId();
-    psS32 i;
+    unsigned int i;
     psSpline1D *tmpSpline = NULL;
     psVector *x = NULL;
