Index: /trunk/psLib/ChangeLog
===================================================================
--- /trunk/psLib/ChangeLog	(revision 3124)
+++ /trunk/psLib/ChangeLog	(revision 3124)
@@ -0,0 +1,1 @@
+Initial Version
Index: unk/psLib/swig/PsLib.i
===================================================================
--- /trunk/psLib/swig/PsLib.i	(revision 3123)
+++ 	(revision )
@@ -1,45 +1,0 @@
-%module PsLib
-
-%{
-#define PS_ALLOW_MALLOC 
-#define SWIG
-#include "pslib.h"
-%}
-
-%include "cpointer.i"
-
-/**
- * Typemap to map FILE* input to the script's native file descriptor wrapper.
- * Used for such functions as psErrorStackPrint and psTraceSetDestination.
- */
-%typemap(in) FILE * {
-#if defined(SWIGPERL)
-   if (!SvOK($input)) {
-      $1 = NULL;      
-   } else {
-      $1 = PerlIO_findFILE(IoIFP(sv_2io($input)));
-   }
-#elif defined(SWIGPYTHON)
-    if ($input == Py_None) {
-	$1 = NULL;
-    } else if (!PyFile_Check($input)) {
-	PyErr_SetString(PyExc_TypeError, "Need a file!");
-	goto fail;
-    } else {
-	$1 = PyFile_AsFile($input);
-    }
-#endif
-}
-
-%{
-typedef struct { float re, im; } swig_psC32;  ///< 32-bit complex floating point
-typedef struct { double re, im; } swig_psC64; ///< 64-bit complex floating point
-%}
-
-/* the actual including of headers are found in each of the directories. */
-%include "sysUtils.i"
-%include "image.i"
-%include "fileUtils.i"
-%include "dataManip.i"
-%include "collections.i"
-%include "astronomy.i"
Index: /trunk/psLib/swig/pslib.i
===================================================================
--- /trunk/psLib/swig/pslib.i	(revision 3124)
+++ /trunk/psLib/swig/pslib.i	(revision 3124)
@@ -0,0 +1,45 @@
+%module pslib
+
+%{
+#define PS_ALLOW_MALLOC 
+#define SWIG
+#include "pslib.h"
+%}
+
+%include "cpointer.i"
+
+/**
+ * Typemap to map FILE* input to the script's native file descriptor wrapper.
+ * Used for such functions as psErrorStackPrint and psTraceSetDestination.
+ */
+%typemap(in) FILE * {
+#if defined(SWIGPERL)
+   if (!SvOK($input)) {
+      $1 = NULL;      
+   } else {
+      $1 = PerlIO_findFILE(IoIFP(sv_2io($input)));
+   }
+#elif defined(SWIGPYTHON)
+    if ($input == Py_None) {
+	$1 = NULL;
+    } else if (!PyFile_Check($input)) {
+	PyErr_SetString(PyExc_TypeError, "Need a file!");
+	goto fail;
+    } else {
+	$1 = PyFile_AsFile($input);
+    }
+#endif
+}
+
+%{
+typedef struct { float re, im; } swig_psC32;  ///< 32-bit complex floating point
+typedef struct { double re, im; } swig_psC64; ///< 64-bit complex floating point
+%}
+
+/* the actual including of headers are found in each of the directories. */
+%include "sysUtils.i"
+%include "image.i"
+%include "fileUtils.i"
+%include "dataManip.i"
+%include "collections.i"
+%include "astronomy.i"
