Index: trunk/ppSmooth/src/ppSmoothErrorCodes.c.in
===================================================================
--- trunk/ppSmooth/src/ppSmoothErrorCodes.c.in	(revision 26992)
+++ 	(revision )
@@ -1,26 +1,0 @@
-/*
- * The line
-    { PPSMOOTH_ERR_$X{ErrorCode}, "$X{ErrorDescription}"},
- * (without the Xs)
- * will be replaced by values from errorCodes.dat
- */
-#include "pslib.h"
-#include "ppSmoothErrorCodes.h"
-
-void ppSmoothErrorRegister(void)
-{
-    static psErrorDescription errors[] = {
-       { PPSMOOTH_ERR_BASE, "First value we use; lower values belong to psLib" },
-       { PPSMOOTH_ERR_${ErrorCode}, "${ErrorDescription}"},
-    };
-    static int nerror = PPSMOOTH_ERR_NERROR - PPSMOOTH_ERR_BASE; // number of values in enum
-
-    for (int i = 0; i < nerror; i++) {
-       psErrorDescription *tmp = psAlloc(sizeof(psErrorDescription));
-       p_psMemSetPersistent(tmp, true);
-       *tmp = errors[i];
-       psErrorRegister(tmp, 1);
-       psFree(tmp);			/* it's on the internal list */
-    }
-    nerror = 0;			                // don't register more than once
-}
Index: trunk/ppSmooth/src/ppSmoothErrorCodes.dat
===================================================================
--- trunk/ppSmooth/src/ppSmoothErrorCodes.dat	(revision 26992)
+++ 	(revision )
@@ -1,10 +1,0 @@
-#
-# This file is used to generate ppSmoothErrorClasses.h
-
-BASE = 5000		First value we use; lower values belong to psLib
-# these errors correspond to standard exit conditions
-ARGUMENTS               Incorrect arguments
-SYS                     System error
-CONFIG                  Problem in configure files
-PROG                    Programming error
-DATA                    invalid data
Index: trunk/ppSmooth/src/ppSmoothErrorCodes.h.in
===================================================================
--- trunk/ppSmooth/src/ppSmoothErrorCodes.h.in	(revision 26992)
+++ 	(revision )
@@ -1,18 +1,0 @@
-#if !defined(PPSMOOTH_ERROR_CODES_H)
-#define PPSMOOTH_ERROR_CODES_H
-/*
- * The line
- *  PPSMOOTH_ERR_$X{ErrorCode},
- * (without the X)
- *
- * will be replaced by values from errorCodes.dat
- */
-typedef enum {
-    PPSMOOTH_ERR_BASE = 5000,
-    PPSMOOTH_ERR_${ErrorCode},
-    PPSMOOTH_ERR_NERROR
-} ppSmoothErrorCode;
-
-void ppSmoothErrorRegister(void);
-
-#endif
