summaryrefslogtreecommitdiff
path: root/install-win32/m4todef.pl
diff options
context:
space:
mode:
Diffstat (limited to 'install-win32/m4todef.pl')
-rw-r--r--install-win32/m4todef.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/install-win32/m4todef.pl b/install-win32/m4todef.pl
deleted file mode 100644
index d2705b0..0000000
--- a/install-win32/m4todef.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl
-
-# used to convert version.m4 to simple
-# definition format
-
-while (<STDIN>) {
- chomp;
- if (/^\s*$/) {
- print "\n";
- } elsif (/^define\((\w+),\[(.*?)\]\)/) {
- print "!define $1 \"$2\"\n";
- } elsif (/^dnl(.*)$/) {
- print "#$1\n";
- }
-}