Index: trunk/psphot/src/Makefile.am
===================================================================
--- trunk/psphot/src/Makefile.am	(revision 8475)
+++ trunk/psphot/src/Makefile.am	(revision 8512)
@@ -13,4 +13,5 @@
 libpsphot_la_SOURCES = \
 	psphotErrorCodes.c	\
+	psphotVersion.c		\
 	psphotModelGroupInit.c	\
 	psphotArguments.c	\
Index: trunk/psphot/src/psphot.h
===================================================================
--- trunk/psphot/src/psphot.h	(revision 8475)
+++ trunk/psphot/src/psphot.h	(revision 8512)
@@ -10,4 +10,6 @@
 
 // top-level psphot functions
+const char *psphotCVSName(void);
+
 pmConfig       *psphotArguments (int argc, char **argv);
 bool            psphotParseCamera (pmConfig *config);
Index: trunk/psphot/src/psphotVersion.c
===================================================================
--- trunk/psphot/src/psphotVersion.c	(revision 8512)
+++ trunk/psphot/src/psphotVersion.c	(revision 8512)
@@ -0,0 +1,9 @@
+#include "psphot.h"
+
+const char *
+psphotCVSName(void)
+{
+   static char *name = "$Name: not supported by cvs2svn $";
+
+   return(name);
+}
