Index: /trunk/pstamp/src/Makefile.am
===================================================================
--- /trunk/pstamp/src/Makefile.am	(revision 25708)
+++ /trunk/pstamp/src/Makefile.am	(revision 25709)
@@ -1,6 +1,10 @@
 bin_PROGRAMS = ppstamp pstamprequest pstampdump
+
+include_HEADERS = \
+	pstamp.h
 
 noinst_HEADERS = \
 	ppstamp.h  \
+	pstampint.h \
         pstampErrorCodes.h
 
Index: /trunk/pstamp/src/ppstamp.h
===================================================================
--- /trunk/pstamp/src/ppstamp.h	(revision 25708)
+++ /trunk/pstamp/src/ppstamp.h	(revision 25709)
@@ -6,5 +6,5 @@
 #endif
 
-#include "pstamp.h"
+#include "pstampint.h"
 #include "ppstampOptions.h"
 
Index: /trunk/pstamp/src/pstamp.h
===================================================================
--- /trunk/pstamp/src/pstamp.h	(revision 25708)
+++ /trunk/pstamp/src/pstamp.h	(revision 25709)
@@ -1,30 +1,4 @@
 #ifndef PSTAMP_H
 #define PSTAMP_H
-
-#include <stdio.h>
-#include <string.h>
-#include <strings.h>  // for strcasecmp
-#include <unistd.h>   // for unlink
-#include "pslib.h"
-#include "psmodules.h"
-#include "pstampErrorCodes.h"
-
-typedef enum {
-    PSTAMP_UNKNOWN = -1,
-    PSTAMP_RAW,
-    PSTAMP_CHIP,
-    PSTAMP_WARP,
-    PSTAMP_DIFF,
-    PSTAMP_STACK
-} pstampImageType;
-
-
-// command modes for pstampparse 
-typedef enum {
-    PSP_MODE_UNKNOWN = 0,
-    PSP_MODE_QUEUE_JOB,
-    PSP_MODE_LIST_URI,
-    PSP_MODE_LIST_JOB
-} pspMode;
 
 // error codes returned to users in results flie
Index: /trunk/pstamp/src/pstampGetROI.c
===================================================================
--- /trunk/pstamp/src/pstampGetROI.c	(revision 25708)
+++ /trunk/pstamp/src/pstampGetROI.c	(revision 25709)
@@ -3,5 +3,5 @@
 #endif
 
-#include "pstamp.h"
+#include "pstampint.h"
 #include "pstampROI.h"
 #include "ohana.h"
Index: /trunk/pstamp/src/pstampint.h
===================================================================
--- /trunk/pstamp/src/pstampint.h	(revision 25709)
+++ /trunk/pstamp/src/pstampint.h	(revision 25709)
@@ -0,0 +1,31 @@
+#ifndef PSTAMP_INT_H
+#define PSTAMP_INT_H
+
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>  // for strcasecmp
+#include <unistd.h>   // for unlink
+#include "pslib.h"
+#include "psmodules.h"
+#include "pstampErrorCodes.h"
+
+#include "pstamp.h"
+typedef enum {
+    PSTAMP_UNKNOWN = -1,
+    PSTAMP_RAW,
+    PSTAMP_CHIP,
+    PSTAMP_WARP,
+    PSTAMP_DIFF,
+    PSTAMP_STACK
+} pstampImageType;
+
+
+// command modes for pstampparse 
+typedef enum {
+    PSP_MODE_UNKNOWN = 0,
+    PSP_MODE_QUEUE_JOB,
+    PSP_MODE_LIST_URI,
+    PSP_MODE_LIST_JOB
+} pspMode;
+
+#endif
Index: /trunk/pstamp/src/pstamprequest.c
===================================================================
--- /trunk/pstamp/src/pstamprequest.c	(revision 25708)
+++ /trunk/pstamp/src/pstamprequest.c	(revision 25709)
@@ -1,5 +1,5 @@
 #include <pslib.h>
 #include <string.h>
-#include "pstamp.h"
+#include "pstampint.h"
 #include "pstampROI.h"
 
