From 349cfa7acb95abe865209a28e417ec74b56f9bba Mon Sep 17 00:00:00 2001 From: Alberto Gonzalez Iniesta Date: Tue, 21 Feb 2012 15:53:40 +0100 Subject: Imported Upstream version 2.2.1 --- install-win32/m4todef.pl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 install-win32/m4todef.pl (limited to 'install-win32/m4todef.pl') 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 () { + chomp; + if (/^\s*$/) { + print "\n"; + } elsif (/^define\((\w+),\[(.*?)\]\)/) { + print "!define $1 \"$2\"\n"; + } elsif (/^dnl(.*)$/) { + print "#$1\n"; + } +} -- cgit v1.2.3