Index: trunk/psModules/src/Makefile.am
===================================================================
--- trunk/psModules/src/Makefile.am	(revision 9572)
+++ trunk/psModules/src/Makefile.am	(revision 9573)
@@ -2,5 +2,5 @@
 lib_LTLIBRARIES = libpsmodules.la
 
-libpsmodules_la_SOURCES = dummy.c
+libpsmodules_la_SOURCES = 
 libpsmodules_la_CPPFLAGS = $(SRCINC)
 libpsmodules_la_LIBADD = $(SRCSUBLIBS) $(PSMODULES_LIBS)
@@ -10,5 +10,3 @@
 	psmodules.h
 
-EXTRA_DIST = psErrorCodes.dat
-
 CLEANFILES = *~
Index: trunk/psModules/src/parseErrorCodes.pl
===================================================================
--- trunk/psModules/src/parseErrorCodes.pl	(revision 9572)
+++ 	(revision )
@@ -1,97 +1,0 @@
-#!/usr/bin/perl
-
-# Provides functions for handling long command line options
-use Getopt::Long;
-
-my @ErrorCodes        = ();
-my @ErrorDescriptions = ();
-
-my $data = "psErrorCodes.dat";
-
-# Assign variables based on the presence of command line options to the script
-GetOptions(
-    "data=s"  => \$data,
-    "verbose" => \$verbose,
-    "help"    => \$help
-);
-
-if ($help) {
-    print "Usage: parseErrorCodes ", "[--data=$data] ", "[--help] ",
-      "[--verbose] filename [filename ...]\n\n";
-    exit(0);
-}
-
-print "Using data file '$data'\n" if $verbose;
-unless ( open( DATAFILE, "<", $data ) ) {
-    die "Can not open data file $data.";
-}
-
-print "Datafile:\n" if $verbose;
-while (<DATAFILE>) {
-    chop;
-    if (/^\s*\#/) {
-        print "C $_\n" if $verbose;
-    }
-    else {
-        if (/^\s*(\w+)\s+([\%\w].*)/) {
-            my $ErrorCode        = $1;
-            my $ErrorDescription = $2;
-            print "  $ErrorCode: '$ErrorDescription'\n" if $verbose;
-            push( @ErrorCodes,        $ErrorCode );
-            push( @ErrorDescriptions, $ErrorDescription );
-        } else {
-            print "I $_\n" if $verbose;
-        }
-    }
-}
-close(DATAFILE);
-
-my $found = $#ErrorCodes + 1;
-print "\nFound $found error codes.\n" if $verbose;
-
-foreach (@ARGV) {
-    my $filename = $_;
-    my @result   = ();
-
-    die "Failed to open input file"
-      if !open( INFILE, "<", $filename );
-
-    print "\nOutput File:\n" if $verbose;
-    while (<INFILE>) {
-        chop;
-        push( @result, $_ );
-        if (/^\s*\/\/~Start(.*)$/) {
-            $line = $1;
-            for ( $n = 0 ; $n < $found ; $n++ ) {
-                $_ = $line;
-                s/\$1/$ErrorCodes[$n]/g;
-                s/\$2/$ErrorDescriptions[$n]/g;
-                s/\$n/$n/g;
-                push( @result, $_ );
-                print "$_\n" if $verbose;
-            }
-
-            $break = 0;
-            while ( ( $break == 0 ) && ( $_ = <INFILE> ) ) {
-                if (/^\s*\/\/~End/) {
-                    $break = 1;
-                }
-            }
-            chop;
-            push( @result, $_ );
-        }
-    }
-
-    close(INFILE);
-
-    die "Failed to overwrite input file"
-      if !open( OUTFILE, ">", $filename );
-
-    foreach (@result) {
-        print OUTFILE "$_\n";
-        print "$_\n" if $verbose;
-    }
-
-    close(OUTFILE);
-
-}
Index: trunk/psModules/src/psErrorCodes.dat
===================================================================
--- trunk/psModules/src/psErrorCodes.dat	(revision 9572)
+++ 	(revision )
@@ -1,18 +1,0 @@
-#
-#  This file is used to generate psErrorCode.h content
-#
-# Format:
-#    ERROR_CLASS_NAME    ERROR_CLASS_DESCRIPTION
-#
-# Note: the ERROR_CLASS_NAME will appear in the code with a "PS_ERR_" prefix
-#
-UNKNOWN                        unknown error
-IO                             I/O error
-LOCATION_INVALID               specified location is unknown
-MEMORY_CORRUPTION              memory corruption detected
-MEMORY_DEREF_USAGE             dereferenced memory still used
-BAD_PARAMETER_VALUE            parameter is out-of-range
-BAD_PARAMETER_TYPE             parameter is of unsupported type
-BAD_PARAMETER_NULL             parameter is null
-BAD_PARAMETER_SIZE             size of parameter's data is outside of acceptable range.
-UNEXPECTED_NULL                unexpected NULL found
