diff options
author | Alberto Gonzalez Iniesta <agi@inittab.org> | 2012-02-21 15:53:40 +0100 |
---|---|---|
committer | Alberto Gonzalez Iniesta <agi@inittab.org> | 2012-02-21 15:53:40 +0100 |
commit | 349cfa7acb95abe865209a28e417ec74b56f9bba (patch) | |
tree | ad65334821b587c4ecdd461be84c94305ffdb888 /install-win32/m4todef.pl |
Imported Upstream version 2.2.1upstream/2.2.1
Diffstat (limited to 'install-win32/m4todef.pl')
-rw-r--r-- | install-win32/m4todef.pl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/install-win32/m4todef.pl b/install-win32/m4todef.pl new file mode 100644 index 0000000..d2705b0 --- /dev/null +++ b/install-win32/m4todef.pl @@ -0,0 +1,15 @@ +#!/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"; + } +} |