X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=mkfiles.pl;h=ae15ac488d66caec8b68db0c021c490058b4d2d9;hb=510f49e405e71ba5c97875e7a019364e1ef5fac9;hp=bc77ec087679e45597eb046a43a8024c7c046734;hpb=d31d1f4bb5f675eced02b9fa61106a002e894209;p=PuTTY.git diff --git a/mkfiles.pl b/mkfiles.pl index bc77ec08..ae15ac48 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -17,7 +17,24 @@ use warnings; use FileHandle; +use File::Basename; use Cwd; +use Digest::SHA qw(sha512_hex); + +if ($#ARGV >= 0 and ($ARGV[0] eq "-u" or $ARGV[0] eq "-U")) { + # Convenience for Unix users: -u means that after we finish what + # we're doing here, we also run mkauto.sh and then 'configure' in + # the Unix subdirectory. So it's a one-stop shop for regenerating + # the actual end-product Unix makefile. + # + # Arguments supplied after -u go to configure. + # + # -U is identical, but runs 'configure' at the _top_ level, for + # people who habitually do that. + $do_unix = ($ARGV[0] eq "-U" ? 2 : 1); + shift @ARGV; + @confargs = @ARGV; +} open IN, "Recipe" or do { # We want to deal correctly with being run from one of the @@ -28,9 +45,10 @@ open IN, "Recipe" or do { }; # HACK: One of the source files in `charset' is auto-generated by -# sbcsgen.pl. We need to generate that _now_, before attempting -# dependency analysis. -eval 'chdir "charset"; require "sbcsgen.pl"; chdir ".."'; +# sbcsgen.pl, and licence.h is likewise generated by licence.pl. We +# need to generate those _now_, before attempting dependency analysis. +eval 'chdir "charset"; require "./sbcsgen.pl"; chdir ".."; select STDOUT;'; +eval 'require "./licence.pl"; select STDOUT;'; @srcdirs = ("./"); @@ -64,9 +82,25 @@ while () { if ($_[0] eq "!srcdir") { push @srcdirs, $_[1]; next; } if ($_[0] eq "!makefile" and &mfval($_[1])) { $makefiles{$_[1]}=$_[2]; next;} if ($_[0] eq "!specialobj" and &mfval($_[1])) { $specialobj{$_[1]}->{$_[2]} = 1; next;} + if ($_[0] eq "!cflags" and &mfval($_[1])) { + ($rest = $_) =~ s/^\s*\S+\s+\S+\s+\S+\s*//; # find rest of input line + if ($rest eq "") { + # Make sure this file doesn't get lumped together with any + # other file's cflags. + $rest = "F" . $_[2]; + } else { + # Give this file a specific set of cflags, but permit it to + # go together with other files using the same set. + $rest = "C" . $rest; + } + $cflags{$_[1]}->{$_[2]} = $rest; + next; + } if ($_[0] eq "!forceobj") { $forceobj{$_[1]} = 1; next; } if ($_[0] eq "!begin") { - if (&mfval($_[1])) { + if ($_[1] =~ /^>(.*)/) { + $divert = \$auxfiles{$1}; + } elsif (&mfval($_[1])) { $sect = $_[2] ? $_[2] : "end"; $divert = \($makefile_extra{$_[1]}->{$sect}); } else { @@ -106,9 +140,10 @@ while () { $i = shift @objs; if ($groups{$i}) { foreach $j (@{$groups{$i}}) { unshift @objs, $j; } - } elsif (($i eq "[G]" or $i eq "[C]" or $i eq "[M]" or - $i eq "[X]" or $i eq "[U]" or $i eq "[MX]") and defined $prog) { + } elsif (($i =~ /^\[([A-Z]*)\]$/) and defined $prog) { $type = substr($i,1,(length $i)-2); + die "unrecognised program type for $prog [$type]\n" + if ! grep { $type eq $_ } qw(G C X U MX XT UT); } else { push @$listref, $i; } @@ -123,6 +158,12 @@ while () { close IN; +foreach $aux (sort keys %auxfiles) { + open AUX, ">$aux"; + print AUX $auxfiles{$aux}; + close AUX; +} + # Now retrieve the complete list of objects and resource files, and # construct dependency data for them. While we're here, expand the # object list for each program, and complain if its type isn't set. @@ -177,11 +218,13 @@ foreach $i (@prognames) { # file name into a listref containing further source file names. %further = (); +%allsourcefiles = (); # this is wanted by some makefiles while (scalar @scanlist > 0) { $file = shift @scanlist; next if defined $further{$file}; # skip if we've already done it $further{$file} = []; $dirfile = &findfile($file); + $allsourcefiles{$dirfile} = 1; open IN, "$dirfile" or die "unable to open source file $file\n"; while () { chomp; @@ -226,9 +269,9 @@ sub mfval($) { # prints a warning and returns false; if (grep { $type eq $_ } ("vc","vcproj","cygwin","borland","lcc","devcppproj","gtk","unix", - "ac","osx",)) { - return 1; - } + "am","osx","vstudio10","vstudio12","clangcl")) { + return 1; + } warn "$.:unknown makefile type '$type'\n"; return 0; } @@ -391,15 +434,139 @@ sub manpages { return (); } +$orig_dir = cwd; + # Now we're ready to output the actual Makefiles. +if (defined $makefiles{'clangcl'}) { + $dirpfx = &dirpfx($makefiles{'clangcl'}, "/"); + + ##-- Makefile for cross-compiling using clang-cl, lld-link, and + ## MinGW's windres for resource compilation. + # + # This makefile allows a complete Linux-based cross-compile, but + # using the real Visual Studio header files and libraries. In + # order to run it, you will need: + # + # - MinGW windres on your PATH. + # * On Ubuntu as of 16.04, you can apt-get install + # binutils-mingw-w64-x86-64 and binutils-mingw-w64-i686 + # which will provide (respectively) 64- and 32-bit versions, + # under the names to which RCCMD is defined below. + # - clang-cl and lld-link on your PATH. + # * I built these from the up-to-date LLVM project trunk git + # repositories, as of 2017-02-05. + # - case-mashed copies of the Visual Studio include directories. + # * On a real VS installation, run vcvars32.bat and look at + # the resulting value of %INCLUDE%. Take a full copy of each + # of those directories, and inside the copy, for each + # include file that has an uppercase letter in its name, + # make a lowercased symlink to it. Additionally, one of the + # directories will contain files called driverspecs.h and + # specstrings.h, and those will need symlinks called + # DriverSpecs.h and SpecStrings.h. + # * Now, on Linux, define the environment variable INCLUDE to + # be a list, separated by *semicolons* (in the Windows + # style), of those directories, but before all of them you + # must also include lib/clang/5.0.0/include from the clang + # installation area (which contains in particular a + # clang-compatible stdarg.h overriding the Visual Studio + # one). + # - similarly case-mashed copies of the library directories. + # * Again, on a real VS installation, run vcvars32 or + # vcvarsx86_amd64 (as appropriate), look at %LIB%, make a + # copy of each directory, and provide symlinks within that + # directory so that all the files can be opened as + # lowercase. + # * Then set LIB to be a semicolon-separated list of those + # directories (but you'll need to change which set of + # directories depending on whether you want to do a 32-bit + # or 64-bit build). + # - for a 64-bit build, set 'Platform=x64' in the environment as + # well, or else on the make command line. + # * This is a variable understood only by this makefile - none + # of the tools we invoke will know it - but it's consistent + # with the way the VS scripts like vcvarsx86_amd64.bat set + # things up, and since the environment has to change + # _anyway_ between 32- and 64-bit builds (different set of + # paths in $LIB) it's reasonable to have the choice of + # compilation target driven by another environment variable + # set in parallel with that one. + + open OUT, ">$makefiles{'clangcl'}"; select OUT; + print + "# Makefile for cross-compiling $project_name using clang-cl, lld-link,\n". + "# and MinGW's windres, using GNU make on Linux.\n". + "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n". + "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n"; + print $help; + print + "\n". + "CCCMD = clang-cl\n". + "ifeq (\$(Platform),x64)\n". + "CCTARGET = x86_64-pc-windows-msvc18.0.0\n". + "RCCMD = x86_64-w64-mingw32-windres\n". + "else\n". + "CCTARGET = i386-pc-windows-msvc18.0.0\n". + "RCCMD = i686-w64-mingw32-windres\n". + "endif\n". + "CC = \$(CCCMD) --target=\$(CCTARGET)\n". + &splitline("RC = \$(RCCMD) --preprocessor=\$(CCCMD) ". + "--preprocessor-arg=/TC --preprocessor-arg=/E")."\n". + "LD = lld-link\n". + "\n". + "# C compilation flags\n". + &splitline("CFLAGS = /nologo /W3 /O1 " . + (join " ", map {"-I$dirpfx$_"} @srcdirs) . + " /D_WINDOWS /D_WIN32_WINDOWS=0x500 /DWINVER=0x500 ". + "/D_CRT_SECURE_NO_WARNINGS")."\n". + "LFLAGS = /incremental:no /dynamicbase /nxcompat\n". + &splitline("RCFLAGS = ".(join " ", map {"-I$dirpfx$_"} @srcdirs). + " -DWIN32 -D_WIN32 -DWINVER=0x0400")."\n". + "\n". + &def($makefile_extra{'clangcl'}->{'vars'}) . + "\n". + "\n"; + print &splitline("all:" . join "", map { " \$(BUILDDIR)$_.exe" } &progrealnames("G:C")); + print "\n\n"; + foreach $p (&prognames("G:C")) { + ($prog, $type) = split ",", $p; + $objstr = &objects($p, "\$(BUILDDIR)X.obj", "\$(BUILDDIR)X.res.o", undef); + print &splitline("\$(BUILDDIR)$prog.exe: " . $objstr), "\n"; + + $objstr = &objects($p, "\$(BUILDDIR)X.obj", "\$(BUILDDIR)X.res.o", "X.lib"); + $subsys = ($type eq "G") ? "windows" : "console"; + print &splitline("\t\$(LD) \$(LFLAGS) \$(XLFLAGS) ". + "/out:\$(BUILDDIR)$prog.exe ". + "/lldmap:\$(BUILDDIR)$prog.map ". + "/subsystem:$subsys\$(SUBSYSVER) $objstr")."\n\n"; + } + foreach $d (&deps("\$(BUILDDIR)X.obj", "\$(BUILDDIR)X.res.o", $dirpfx, "/", "vc")) { + $extradeps = $forceobj{$d->{obj_orig}} ? ["*.c","*.h","*.rc"] : []; + print &splitline(sprintf("%s: %s", $d->{obj}, + join " ", @$extradeps, @{$d->{deps}})), "\n"; + if ($d->{obj} =~ /\.res\.o$/) { + print "\t\$(RC) \$(RCFLAGS) ".$d->{deps}->[0]." -o ".$d->{obj}."\n\n"; + } else { + print "\t\$(CC) /Fo\$(BUILDDIR) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) /c \$<\n\n"; + } + } + print "\n"; + print &def($makefile_extra{'clangcl'}->{'end'}); + print "\nclean:\n". + &splitline("\trm -f \$(BUILDDIR)*.obj \$(BUILDDIR)*.exe ". + "\$(BUILDDIR)*.res.o \$(BUILDDIR)*.map ". + "\$(BUILDDIR)*.exe.manifest")."\n"; + select STDOUT; close OUT; +} + if (defined $makefiles{'cygwin'}) { $dirpfx = &dirpfx($makefiles{'cygwin'}, "/"); - ##-- CygWin makefile + ##-- MinGW/CygWin makefile (called 'cygwin' for historical reasons) open OUT, ">$makefiles{'cygwin'}"; select OUT; print - "# Makefile for $project_name under cygwin.\n". + "# Makefile for $project_name under MinGW, Cygwin, or Winelib.\n". "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n". "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n"; # gcc command line option is -D not /D @@ -410,6 +577,7 @@ if (defined $makefiles{'cygwin'}) { "# You can define this path to point at your tools if you need to\n". "# TOOLPATH = c:\\cygwin\\bin\\ # or similar, if you're running Windows\n". "# TOOLPATH = /pkg/mingw32msvc/i386-mingw32msvc/bin/\n". + "# TOOLPATH = i686-w64-mingw32-\n". "CC = \$(TOOLPATH)gcc\n". "RC = \$(TOOLPATH)windres\n". "# Uncomment the following two lines to compile under Winelib\n". @@ -418,15 +586,15 @@ if (defined $makefiles{'cygwin'}) { "# You may also need to tell windres where to find include files:\n". "# RCINC = --include-dir c:\\cygwin\\include\\\n". "\n". - &splitline("CFLAGS = -mno-cygwin -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT". - " -D_NO_OLDNAMES -DNO_MULTIMON -DNO_HTMLHELP " . + &splitline("CFLAGS = -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT". + " -D_NO_OLDNAMES " . (join " ", map {"-I$dirpfx$_"} @srcdirs)) . "\n". - "LDFLAGS = -mno-cygwin -s\n". - &splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1". - " --define WINVER=0x0400")."\n". + "LDFLAGS = -s\n". + &splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1 ". + "--define WINVER=0x0400 ".(join " ", map {"-I$dirpfx$_"} @srcdirs))."\n". "\n". - $makefile_extra{'cygwin'}->{'vars'} . + &def($makefile_extra{'cygwin'}->{'vars'}) . "\n". ".SUFFIXES:\n". "\n"; @@ -450,15 +618,15 @@ if (defined $makefiles{'cygwin'}) { join " ", @{$d->{deps}})), "\n"; } if ($d->{obj} =~ /\.res\.o$/) { - print "\t\$(RC) \$(RCFL) \$(RCFLAGS) ".$d->{deps}->[0]." ".$d->{obj}."\n\n"; + print "\t\$(RC) \$(RCFL) \$(RCFLAGS) ".$d->{deps}->[0]." -o ".$d->{obj}."\n\n"; } else { print "\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c ".$d->{deps}->[0]."\n\n"; } } print "\n"; - print $makefile_extra{'cygwin'}->{'end'}; + print &def($makefile_extra{'cygwin'}->{'end'}); print "\nclean:\n". - "\trm -f *.o *.exe *.res.o *.map\n". + "\trm -f *.o *.exe *.res.o *.so *.map\n". "\n". "FORCE:\n"; select STDOUT; close OUT; @@ -505,7 +673,7 @@ if (defined $makefiles{'borland'}) { "BCB = \$(MAKEDIR)\\..\n". "!endif\n". "\n". - $makefile_extra{'borland'}->{'vars'} . + &def($makefile_extra{'borland'}->{'vars'}) . "\n". ".c.obj:\n". &splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT)". @@ -562,7 +730,7 @@ if (defined $makefiles{'borland'}) { } } print "\n"; - print $makefile_extra{'borland'}->{'end'}; + print &def($makefile_extra{'borland'}->{'end'}); print "\nclean:\n". "\t-del *.obj\n". "\t-del *.exe\n". @@ -599,78 +767,90 @@ if (defined $makefiles{'vc'}) { "# C compilation flags\n". "CFLAGS = /nologo /W3 /O1 " . (join " ", map {"-I$dirpfx$_"} @srcdirs) . - " /D_WINDOWS /D_WIN32_WINDOWS=0x500 /DWINVER=0x500\n". - "LFLAGS = /incremental:no /fixed\n". - "RCFLAGS = -DWIN32 -D_WIN32 -DWINVER=0x0400\n". + " /D_WINDOWS /D_WIN32_WINDOWS=0x500 /DWINVER=0x500 /D_CRT_SECURE_NO_WARNINGS\n". + "LFLAGS = /incremental:no /dynamicbase /nxcompat\n". + "RCFLAGS = ".(join " ", map {"-I$dirpfx$_"} @srcdirs). + " -DWIN32 -D_WIN32 -DWINVER=0x0400\n". "\n". - $makefile_extra{'vc'}->{'vars'} . + &def($makefile_extra{'vc'}->{'vars'}) . "\n". "\n"; - print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C")); + print &splitline("all:" . join "", map { " \$(BUILDDIR)$_.exe" } &progrealnames("G:C")); print "\n\n"; foreach $p (&prognames("G:C")) { ($prog, $type) = split ",", $p; - $objstr = &objects($p, "X.obj", "X.res", undef); - print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n"; - print "\tlink \$(LFLAGS) \$(XLFLAGS) -out:$prog.exe -map:$prog.map \@$prog.rsp\n\n"; - } - foreach $p (&prognames("G:C")) { - ($prog, $type) = split ",", $p; - print $prog, ".rsp: \$(MAKEFILE)\n"; - $objstr = &objects($p, "X.obj", "X.res", "X.lib"); + $objstr = &objects($p, "\$(BUILDDIR)X.obj", "\$(BUILDDIR)X.res", undef); + print &splitline("\$(BUILDDIR)$prog.exe: " . $objstr), "\n"; + + $objstr = &objects($p, "\$(BUILDDIR)X.obj", "\$(BUILDDIR)X.res", "X.lib"); + $subsys = ($type eq "G") ? "windows" : "console"; + $inlinefilename = "link_$prog"; + print "\ttype <<$inlinefilename\n"; @objlist = split " ", $objstr; @objlines = (""); foreach $i (@objlist) { - if (length($objlines[$#objlines] . " $i") > 50) { + if (length($objlines[$#objlines] . " $i") > 72) { push @objlines, ""; } $objlines[$#objlines] .= " $i"; } - $subsys = ($type eq "G") ? "windows" : "console"; - print "\techo /nologo /subsystem:$subsys > $prog.rsp\n"; for ($i=0; $i<=$#objlines; $i++) { - print "\techo$objlines[$i] >> $prog.rsp\n"; + print "$objlines[$i]\n"; } - print "\n"; + print "<<\n"; + print "\tlink \$(LFLAGS) \$(XLFLAGS) -out:\$(BUILDDIR)$prog.exe -map:\$(BUILDDIR)$prog.map -nologo -subsystem:$subsys\$(SUBSYSVER) \@$inlinefilename\n\n"; } - foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\", "vc")) { + foreach $d (&deps("\$(BUILDDIR)X.obj", "\$(BUILDDIR)X.res", $dirpfx, "\\", "vc")) { $extradeps = $forceobj{$d->{obj_orig}} ? ["*.c","*.h","*.rc"] : []; print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @$extradeps, @{$d->{deps}})), "\n"; - if ($d->{obj} =~ /.obj$/) { - print "\tcl \$(COMPAT) \$(CFLAGS) \$(XFLAGS) /c ".$d->{deps}->[0],"\n\n"; - } else { - print "\trc \$(RCFL) -r \$(RCFLAGS) ".$d->{deps}->[0],"\n\n"; + if ($d->{obj} =~ /.res$/) { + print "\trc /Fo@{[$d->{obj}]} \$(RCFL) -r \$(RCFLAGS) ".$d->{deps}->[0],"\n\n"; } } print "\n"; - print $makefile_extra{'vc'}->{'end'}; + foreach $real_srcdir ("", @srcdirs) { + $srcdir = $real_srcdir; + if ($srcdir ne "") { + $srcdir =~ s!/!\\!g; + $srcdir = $dirpfx . $srcdir; + $srcdir =~ s!\\\.\\!\\!; + $srcdir = "{$srcdir}"; + } + # The double colon at the end of the line makes this a + # 'batch-mode inference rule', which means that nmake will + # aggregate multiple invocations of the rule and issue just + # one cl command with multiple source-file arguments. That + # noticeably speeds up builds, since starting up the cl + # process is a noticeable overhead and now has to be done far + # fewer times. + print "${srcdir}.c.obj::\n\tcl /Fo\$(BUILDDIR) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) /c \$<\n\n"; + } + print &def($makefile_extra{'vc'}->{'end'}); print "\nclean: tidy\n". - "\t-del *.exe\n\n". + "\t-del \$(BUILDDIR)*.exe\n\n". "tidy:\n". - "\t-del *.obj\n". - "\t-del *.res\n". - "\t-del *.pch\n". - "\t-del *.aps\n". - "\t-del *.ilk\n". - "\t-del *.pdb\n". - "\t-del *.rsp\n". - "\t-del *.dsp\n". - "\t-del *.dsw\n". - "\t-del *.ncb\n". - "\t-del *.opt\n". - "\t-del *.plg\n". - "\t-del *.map\n". - "\t-del *.idb\n". - "\t-del debug.log\n"; + "\t-del \$(BUILDDIR)*.obj\n". + "\t-del \$(BUILDDIR)*.res\n". + "\t-del \$(BUILDDIR)*.pch\n". + "\t-del \$(BUILDDIR)*.aps\n". + "\t-del \$(BUILDDIR)*.ilk\n". + "\t-del \$(BUILDDIR)*.pdb\n". + "\t-del \$(BUILDDIR)*.rsp\n". + "\t-del \$(BUILDDIR)*.dsp\n". + "\t-del \$(BUILDDIR)*.dsw\n". + "\t-del \$(BUILDDIR)*.ncb\n". + "\t-del \$(BUILDDIR)*.opt\n". + "\t-del \$(BUILDDIR)*.plg\n". + "\t-del \$(BUILDDIR)*.map\n". + "\t-del \$(BUILDDIR)*.idb\n". + "\t-del \$(BUILDDIR)debug.log\n"; select STDOUT; close OUT; } if (defined $makefiles{'vcproj'}) { $dirpfx = &dirpfx($makefiles{'vcproj'}, "\\"); - $orig_dir = cwd; - ##-- MSVC 6 Workspace and projects # # Note: All files created in this section are written in binary @@ -930,6 +1110,360 @@ if (defined $makefiles{'vcproj'}) { } } +if (defined $makefiles{'vstudio10'} || defined $makefiles{'vstudio12'}) { + + ##-- Visual Studio 2010+ Solution and Projects + + if (defined $makefiles{'vstudio10'}) { + create_vs_solution('vstudio10', "2010", "11.00", "v100"); + } + + if (defined $makefiles{'vstudio12'}) { + create_vs_solution('vstudio12', "2012", "12.00", "v110"); + } + + sub create_vs_solution { + my ($makefilename, $name, $version, $toolsver) = @_; + + $dirpfx = &dirpfx($makefiles{$makefilename}, "\\"); + + @deps = &deps("X.obj", "X.res", $dirpfx, "\\", $makefilename); + %all_object_deps = map {$_->{obj} => $_->{deps}} @deps; + + my @prognames = &prognames("G:C"); + + # Create the solution file. + mkdir $makefiles{$makefilename} + if(! -f $makefiles{$makefilename}); + chdir $makefiles{$makefilename}; + + open OUT, ">$project_name.sln"; select OUT; + + print + "Microsoft Visual Studio Solution File, Format Version $version\n" . + "# Visual Studio $name\n"; + + my %projguids = (); + foreach $progname (@prognames) { + ($windows_project, $type) = split ",", $progname; + + $projguids{$windows_project} = $guid = + &invent_guid("project:$progname"); + + print + "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"$windows_project\", \"$windows_project\\$windows_project.vcxproj\", \"{$guid}\"\n" . + "EndProject\n"; + } + + print + "Global\n" . + " GlobalSection(SolutionConfigurationPlatforms) = preSolution\n" . + " Debug|Win32 = Debug|Win32\n" . + " Release|Win32 = Release|Win32\n" . + " EndGlobalSection\n" . + " GlobalSection(ProjectConfigurationPlatforms) = postSolution\n" ; + + foreach my $projguid (values %projguids) { + print + " {$projguid}.Debug|Win32.ActiveCfg = Debug|Win32\n" . + " {$projguid}.Debug|Win32.Build.0 = Debug|Win32\n" . + " {$projguid}.Release|Win32.ActiveCfg = Release|Win32\n" . + " {$projguid}.Release|Win32.Build.0 = Release|Win32\n"; + } + + print + " EndGlobalSection\n" . + " GlobalSection(SolutionProperties) = preSolution\n" . + " HideSolutionNode = FALSE\n" . + " EndGlobalSection\n" . + "EndGlobal\n"; + + select STDOUT; close OUT; + + foreach $progname (@prognames) { + ($windows_project, $type) = split ",", $progname; + create_vs_project(\%all_object_deps, $windows_project, $type, $projguids{$windows_project}, $toolsver); + } + + chdir $orig_dir; + } + + sub create_vs_project { + my ($all_object_deps, $windows_project, $type, $projguid, $toolsver) = @_; + + # Break down the project's dependency information into the appropriate + # groups. + %seen_objects = (); + %lib_files = (); + %source_files = (); + %header_files = (); + %resource_files = (); + %icon_files = (); + + @object_files = split " ", &objects($progname, "X.obj", "X.res", "X.lib"); + foreach $object_file (@object_files) { + next if defined $seen_objects{$object_file}; + $seen_objects{$object_file} = 1; + + if($object_file =~ /\.lib$/io) { + $lib_files{$object_file} = 1; + next; + } + + $object_deps = $all_object_deps{$object_file}; + foreach $object_dep (@$object_deps) { + if($object_dep eq $object_deps->[0]) { + if($object_dep =~ /\.c$/io) { + $source_files{$object_dep} = 1; + } elsif($object_dep =~ /\.rc$/io) { + $resource_files{$object_dep} = 1; + } + } elsif ($object_dep =~ /\.[ch]$/io) { + $header_files{$object_dep} = 1; + } elsif ($object_dep =~ /\.ico$/io) { + $icon_files{$object_dep} = 1; + } + } + } + + $libs = join ";", sort keys %lib_files; + @source_files = sort keys %source_files; + @header_files = sort keys %header_files; + @resources = sort keys %resource_files; + @icons = sort keys %icon_files; + $subsystem = ($type eq "G") ? "Windows" : "Console"; + + mkdir $windows_project + if(! -d $windows_project); + chdir $windows_project; + open OUT, ">$windows_project.vcxproj"; select OUT; + open FILTERS, ">$windows_project.vcxproj.filters"; + + # The bulk of the project file is just boilerplate stuff, so we + # can mostly just dump it out here. Note, buried in the ClCompile + # item definition, that we use a debug information format of + # ProgramDatabase, which disables the edit-and-continue support + # that breaks most of the project builds. + print + "\n" . + "\n" . + " \n" . + " \n" . + " Debug\n" . + " Win32\n" . + " \n" . + " \n" . + " Release\n" . + " Win32\n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " {$projguid}\n" . + " \n" . + " \n" . + " \n" . + " Application\n" . + " false\n" . + " MultiByte\n" . + " $toolsver\n" . + " \n" . + " \n" . + " Application\n" . + " false\n" . + " MultiByte\n" . + " $toolsver\n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " \n" . + " .\\Release\\\n" . + " .\\Release\\\n" . + " false\n" . + " \n" . + " \n" . + " .\\Debug\\\n" . + " .\\Debug\\\n" . + " true\n" . + " \n" . + " \n" . + " \n" . + " MultiThreaded\n" . + " OnlyExplicitInline\n" . + " true\n" . + " true\n" . + " MaxSpeed\n" . + " true\n" . + " Level3\n" . + " " . (join ";", map {"..\\..\\$dirpfx$_"} @srcdirs) . ";%(AdditionalIncludeDirectories)\n" . + " WIN32;NDEBUG;_WINDOWS;POSIX;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)\n" . + " .\\Release\\\n" . + " .\\Release\\$windows_project.pch\n" . + " .\\Release\\\n" . + " .\\Release\\\n" . + " \n" . + " \n" . + " true\n" . + " NDEBUG;%(PreprocessorDefinitions)\n" . + " .\\Release\\$windows_project.tlb\n" . + " true\n" . + " Win32\n" . + " \n" . + " \n" . + " 0x0809\n" . + " NDEBUG;%(PreprocessorDefinitions)\n" . + " \n" . + " \n" . + " true\n" . + " .\\Release\\$windows_project.bsc\n" . + " \n" . + " \n" . + " true\n" . + " $subsystem\n" . + " .\\Release\\$windows_project.exe\n" . + " $libs;%(AdditionalDependencies)\n" . + " \n" . + " \n" . + " \n" . + " \n" . + " MultiThreadedDebug\n" . + " Default\n" . + " false\n" . + " Disabled\n" . + " true\n" . + " Level3\n" . + " true\n" . + " ProgramDatabase\n" . + " " . (join ";", map {"..\\..\\$dirpfx$_"} @srcdirs) . ";%(AdditionalIncludeDirectories)\n" . + " WIN32;_DEBUG;_WINDOWS;POSIX;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)\n" . + " .\\Debug\\\n" . + " .\\Debug\\$windows_project.pch\n" . + " .\\Debug\\\n" . + " .\\Debug\\\n" . + " EnableFastChecks\n" . + " \n" . + " \n" . + " true\n" . + " _DEBUG;%(PreprocessorDefinitions)\n" . + " .\\Debug\\$windows_project.tlb\n" . + " true\n" . + " Win32\n" . + " \n" . + " \n" . + " 0x0809\n" . + " _DEBUG;%(PreprocessorDefinitions)\n" . + " \n" . + " \n" . + " true\n" . + " .\\Debug\\$windows_project.bsc\n" . + " \n" . + " \n" . + " true\n" . + " true\n" . + " $subsystem\n" . + " \$(TargetPath)\n" . + " $libs;%(AdditionalDependencies)\n" . + " \n" . + " \n"; + + # The VC++ projects don't have physical structure to them, instead + # the files are organized by logical "filters" that are stored in + # a separate file, so different users can organize things differently. + # The filters file contains a copy of the ItemGroup elements from + # the main project file that list the included items, but tack + # on a filter name where needed. + print FILTERS + "\n" . + "\n"; + + print " \n"; + print FILTERS " \n"; + foreach $icon_file (@icons) { + $icon_file =~ s/..\\windows\\//; + print " \n"; + print FILTERS + " \n" . + " Resource Files\n" . + " \n"; + } + print FILTERS " \n"; + print " \n"; + + print " \n"; + print FILTERS " \n"; + foreach $resource_file (@resources) { + $resource_file =~ s/..\\windows\\//; + print + " \n" . + " ..\\..;%(AdditionalIncludeDirectories)\n" . + " ..\\..;%(AdditionalIncludeDirectories)\n" . + " \n"; + print FILTERS + " \n" . + " Resource Files\n" . + " \n"; + } + print FILTERS " \n"; + print " \n"; + + print " \n"; + print FILTERS " \n"; + foreach $source_file (@source_files) { + $source_file =~ s/..\\windows\\//; + print " \n"; + print FILTERS + " \n" . + " Source Files\n" . + " "; + } + print FILTERS " \n"; + print " \n"; + + print " \n"; + print FILTERS " \n"; + foreach $header_file (@header_files) { + $header_file =~ s/..\\windows\\//; + print " \n"; + print FILTERS + " \n" . + " Header Files\n" . + " "; + } + print FILTERS " \n"; + print " \n"; + + print + " \n" . + ""; + + print FILTERS + " \n" . + " \n" . + " {" . &invent_guid("sources:$windows_project") . "}\n" . + " \n" . + " \n" . + " {" . &invent_guid("headers:$windows_project") . "}\n" . + " \n" . + " \n" . + " {" . &invent_guid("resources:$windows_project") . "}\n" . + " \n" . + " \n" . + ""; + + select STDOUT; close OUT; close FILTERS; + chdir ".."; + } +} + if (defined $makefiles{'gtk'}) { $dirpfx = &dirpfx($makefiles{'gtk'}, "/"); @@ -954,7 +1488,7 @@ if (defined $makefiles{'gtk'}) { "# building with GTK 1.2, or you can set it to `pkg-config gtk+-2.0 x11'\n". "# if you want to enforce 2.0. The default is to try 2.0 and fall back\n". "# to 1.2 if it isn't found.\n". - "GTK_CONFIG = sh -c 'pkg-config gtk+-2.0 x11 \$\$0 2>/dev/null || gtk-config \$\$0'\n". + "GTK_CONFIG = sh -c 'pkg-config gtk+-3.0 x11 \$\$0 2>/dev/null || pkg-config gtk+-2.0 x11 \$\$0 2>/dev/null || gtk-config \$\$0'\n". "\n". "-include Makefile.local\n". "\n". @@ -990,15 +1524,17 @@ if (defined $makefiles{'gtk'}) { ".SUFFIXES:\n". "\n". "\n"; - print &splitline("all:" . join "", map { " $_" } &progrealnames("X:U")); + print &splitline("all:" . join "", map { " $_" } + &progrealnames("X:XT:U:UT")); print "\n\n"; - foreach $p (&prognames("X:U")) { + foreach $p (&prognames("X:XT:U:UT")) { ($prog, $type) = split ",", $p; + ($ldflags = $type) =~ s/T$//; $objstr = &objects($p, "X.o", undef, undef); print &splitline($prog . ": " . $objstr), "\n"; $libstr = &objects($p, undef, undef, "-lX"); print &splitline("\t\$(CC) -o \$@ " . - $objstr . " \$(${type}LDFLAGS) $libstr", 69), "\n\n"; + $objstr . " \$(${ldflags}LDFLAGS) $libstr", 69), "\n\n"; } foreach $d (&deps("X.o", undef, $dirpfx, "/", "gtk")) { if ($forceobj{$d->{obj_orig}}) { @@ -1010,9 +1546,9 @@ if (defined $makefiles{'gtk'}) { print &splitline("\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c $d->{deps}->[0]\n"); } print "\n"; - print $makefile_extra{'gtk'}->{'end'}; + print &def($makefile_extra{'gtk'}->{'end'}); print "\nclean:\n". - "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n"; + "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:XT:U:UT")) . "\n"; print "\nFORCE:\n"; select STDOUT; close OUT; } @@ -1057,9 +1593,9 @@ if (defined $makefiles{'unix'}) { ".SUFFIXES:\n". "\n". "\n"; - print &splitline("all:" . join "", map { " $_" } &progrealnames("U")); + print &splitline("all:" . join "", map { " $_" } &progrealnames("U:UT")); print "\n\n"; - foreach $p (&prognames("U")) { + foreach $p (&prognames("U:UT")) { ($prog, $type) = split ",", $p; $objstr = &objects($p, "X.o", undef, undef); print &splitline($prog . ": " . $objstr), "\n"; @@ -1079,76 +1615,120 @@ if (defined $makefiles{'unix'}) { print "\n"; print &def($makefile_extra{'unix'}->{'end'}); print "\nclean:\n". - "\trm -f *.o". (join "", map { " $_" } &progrealnames("U")) . "\n"; + "\trm -f *.o". (join "", map { " $_" } &progrealnames("U:UT")) . "\n"; print "\nFORCE:\n"; select STDOUT; close OUT; } -if (defined $makefiles{'ac'}) { - $dirpfx = &dirpfx($makefiles{'ac'}, "/"); +if (defined $makefiles{'am'}) { + die "Makefile.am in a subdirectory is not supported\n" + if &dirpfx($makefiles{'am'}, "/") ne ""; - ##-- Unix/autoconf makefile - open OUT, ">$makefiles{'ac'}"; select OUT; + ##-- Unix/autoconf Makefile.am + open OUT, ">$makefiles{'am'}"; select OUT; print - "# Makefile.in for $project_name under Unix with Autoconf.\n". + "# Makefile.am for $project_name under Unix with Autoconf/Automake.\n". "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n". - "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n"; - # gcc command line option is -D not /D - ($_ = $help) =~ s/([=" ])\/D/$1-D/gs; - print $_; - print - "\n". - "CC = \@CC\@\n". - "\n". - &splitline("CFLAGS = \@CFLAGS\@ \@PUTTYCFLAGS\@ \@CPPFLAGS\@ " . - "\@DEFS\@ \@GTK_CFLAGS\@ " . - (join " ", map {"-I$dirpfx$_"} @srcdirs))."\n". - "XLDFLAGS = \@LDFLAGS\@ \@LIBS\@ \@GTK_LIBS\@\n". - "ULDFLAGS = \@LDFLAGS\@ \@LIBS\@\n". - "INSTALL=\@INSTALL\@\n". - "INSTALL_PROGRAM=\$(INSTALL)\n". - "INSTALL_DATA=\$(INSTALL)\n". - "prefix=\@prefix\@\n". - "exec_prefix=\@exec_prefix\@\n". - "bindir=\@bindir\@\n". - "datarootdir=\@datarootdir\@\n". - "mandir=\@mandir\@\n". - "man1dir=\$(mandir)/man1\n". - "\n". - &def($makefile_extra{'gtk'}->{'vars'}) . - "\n". - ".SUFFIXES:\n". - "\n". - "\n". - "all: \@all_targets\@\n". - &splitline("all-cli:" . join "", map { " $_" } &progrealnames("U"))."\n". - &splitline("all-gtk:" . join "", map { " $_" } &progrealnames("X"))."\n"; - print "\n"; - foreach $p (&prognames("X:U")) { + "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n\n"; + + # 2014-02-22: as of automake-1.14 we begin to get complained at if + # we don't use this option + print "AUTOMAKE_OPTIONS = subdir-objects\n\n"; + + # Complete list of source and header files. Not used by the + # auto-generated parts of this makefile, but Recipe might like to + # have it available as a variable so that mandatory-rebuild things + # (version.o) can conveniently be made to depend on it. + @sources = ("allsources", "=", + sort grep {$_ ne "empty.h"} keys %allsourcefiles); + print &splitline(join " ", @sources), "\n\n"; + + @cliprogs = ("bin_PROGRAMS", "="); + foreach $p (&prognames("U")) { ($prog, $type) = split ",", $p; - $objstr = &objects($p, "X.o", undef, undef); - print &splitline($prog . ": " . $objstr), "\n"; - $libstr = &objects($p, undef, undef, "-lX"); - print &splitline("\t\$(CC) -o \$@ " . - $objstr . " \$(${type}LDFLAGS) $libstr", 69), "\n\n"; + push @cliprogs, $prog; } - foreach $d (&deps("X.o", undef, $dirpfx, "/", "gtk")) { - if ($forceobj{$d->{obj_orig}}) { - printf("%s: FORCE\n", $d->{obj}); - } else { - print &splitline(sprintf("%s: %s", $d->{obj}, - join " ", @{$d->{deps}})), "\n"; + @allprogs = @cliprogs; + foreach $p (&prognames("X")) { + ($prog, $type) = split ",", $p; + push @allprogs, $prog; + } + print "if HAVE_GTK\n"; + print &splitline(join " ", @allprogs), "\n"; + print "else\n"; + print &splitline(join " ", @cliprogs), "\n"; + print "endif\n\n"; + + @noinstcliprogs = ("noinst_PROGRAMS", "="); + foreach $p (&prognames("UT")) { + ($prog, $type) = split ",", $p; + push @noinstcliprogs, $prog; + } + @noinstallprogs = @noinstcliprogs; + foreach $p (&prognames("XT")) { + ($prog, $type) = split ",", $p; + push @noinstallprogs, $prog; + } + print "if HAVE_GTK\n"; + print &splitline(join " ", @noinstallprogs), "\n"; + print "else\n"; + print &splitline(join " ", @noinstcliprogs), "\n"; + print "endif\n\n"; + + %objtosrc = (); + foreach $d (&deps("X", undef, "", "/", "am")) { + $objtosrc{$d->{obj}} = $d->{deps}->[0]; + } + + print &splitline(join " ", "AM_CPPFLAGS", "=", + map {"-I\$(srcdir)/$_"} @srcdirs), "\n"; + + @amcflags = ("\$(COMPAT)", "\$(XFLAGS)", "\$(WARNINGOPTS)"); + print "if HAVE_GTK\n"; + print &splitline(join " ", "AM_CFLAGS", "=", + "\$(GTK_CFLAGS)", @amcflags), "\n"; + print "else\n"; + print &splitline(join " ", "AM_CFLAGS", "=", @amcflags), "\n"; + print "endif\n\n"; + + %amspeciallibs = (); + foreach $obj (sort { $a cmp $b } keys %{$cflags{'am'}}) { + my $flags = $cflags{'am'}->{$obj}; + $flags = "" if $flags !~ s/^C//; + print "lib${obj}_a_SOURCES = ", $objtosrc{$obj}, "\n"; + print &splitline(join " ", "lib${obj}_a_CFLAGS", "=", @amcflags, + $flags), "\n"; + $amspeciallibs{$obj} = "lib${obj}.a"; + } + print &splitline(join " ", "noinst_LIBRARIES", "=", + sort { $a cmp $b } values %amspeciallibs), "\n\n"; + + foreach $p (&prognames("X:XT:U:UT")) { + ($prog, $type) = split ",", $p; + print "if HAVE_GTK\n" if $type eq "X" || $type eq "XT"; + @progsources = ("${prog}_SOURCES", "="); + %sourcefiles = (); + @ldadd = (); + $objstr = &objects($p, "X", undef, undef); + foreach $obj (split / /,$objstr) { + if ($amspeciallibs{$obj}) { + push @ldadd, $amspeciallibs{$obj}; + } else { + $sourcefiles{$objtosrc{$obj}} = 1; + } } - print &splitline("\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c $d->{deps}->[0]\n"); + push @progsources, sort { $a cmp $b } keys %sourcefiles; + print &splitline(join " ", @progsources), "\n"; + if ($type eq "X" || $type eq "XT") { + push @ldadd, "\$(GTK_LIBS)"; + } + if (@ldadd) { + print &splitline(join " ", "${prog}_LDADD", "=", @ldadd), "\n"; + } + print "endif\n" if $type eq "X" || $type eq "XT"; + print "\n"; } - print "\n"; - print $makefile_extra{'gtk'}->{'end'}; - print "\nclean:\n". - "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n"; - print "\ndistclean: clean\n". - "\t". &splitline("rm -f config.status config.cache config.log ". - "configure.lineno config.status.lineno Makefile") . "\n"; - print "\nFORCE:\n"; + print &def($makefile_extra{'am'}->{'end'}); select STDOUT; close OUT; } @@ -1175,11 +1755,11 @@ if (defined $makefiles{'lcc'}) { (join " ", map {"-I$dirpfx$_"} @srcdirs) . "\n". "# Resource compilation flags\n". - "RCFLAGS = \n". + "RCFLAGS = ".(join " ", map {"-I$dirpfx$_"} @srcdirs)."\n". "\n". "# Get include directory for resource compiler\n". "\n". - $makefile_extra{'lcc'}->{'vars'} . + &def($makefile_extra{'lcc'}->{'vars'}) . "\n"; print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C")); print "\n\n"; @@ -1210,7 +1790,7 @@ if (defined $makefiles{'lcc'}) { } } print "\n"; - print $makefile_extra{'lcc'}->{'end'}; + print &def($makefile_extra{'lcc'}->{'end'}); print "\nclean:\n". "\t-del *.obj\n". "\t-del *.exe\n". @@ -1241,9 +1821,9 @@ if (defined $makefiles{'osx'}) { "MLDFLAGS = -framework Cocoa\n". "ULDFLAGS =\n". "\n" . - $makefile_extra{'osx'}->{'vars'} . + &def($makefile_extra{'osx'}->{'vars'}) . "\n" . - &splitline("all:" . join "", map { " $_" } &progrealnames("MX:U")) . + &splitline("all:" . join "", map { " $_" } &progrealnames("MX:U:UT")) . "\n"; foreach $p (&prognames("MX")) { ($prog, $type) = split ",", $p; @@ -1271,7 +1851,7 @@ if (defined $makefiles{'osx'}) { print &splitline("\t\$(CC) \$(MLDFLAGS) -o \$@ " . $objstr . " $libstr", 69), "\n\n"; } - foreach $p (&prognames("U")) { + foreach $p (&prognames("U:UT")) { ($prog, $type) = split ",", $p; $objstr = &objects($p, "X.o", undef, undef); print &splitline($prog . ": " . $objstr), "\n"; @@ -1295,7 +1875,7 @@ if (defined $makefiles{'osx'}) { } print "\n".&def($makefile_extra{'osx'}->{'end'}); print "\nclean:\n". - "\trm -f *.o *.dmg". (join "", map { " $_" } &progrealnames("U")) . "\n". + "\trm -f *.o *.dmg". (join "", map { " $_" } &progrealnames("U:UT")) . "\n". "\trm -rf *.app\n". "\n". "FORCE:\n"; @@ -1336,6 +1916,8 @@ if (defined $makefiles{'devcppproj'}) { create_devcpp_project(\%all_object_deps, $progname); } + chdir $orig_dir; + sub create_devcpp_project { my ($all_object_deps, $progname) = @_; # Construct program's dependency info (Taken from 'vcproj', seems to work right here, too.) @@ -1491,3 +2073,88 @@ if (defined $makefiles{'devcppproj'}) { chdir ".."; } } + +# All done, so do the Unix postprocessing if asked to. + +if ($do_unix) { + chdir $orig_dir; + system "./mkauto.sh"; + die "mkfiles.pl: mkauto.sh returned $?\n" if $? > 0; + if ($do_unix == 1) { + chdir ($targetdir = "unix") + or die "$targetdir: chdir: $!\n"; + } + system "./configure", @confargs; + die "mkfiles.pl: configure returned $?\n" if $? > 0; +} + +sub invent_guid($) { + my ($name) = @_; + + # Invent a GUID for use in Visual Studio project files. We need + # a few of these for every executable file we build. + # + # In order to avoid having to use the non-core Perl module + # Data::GUID, and also arrange for GUIDs to be stable, we generate + # our GUIDs by hashing a pile of fixed (but originally randomly + # generated) data with the filename for which we need an id. + # + # Hashing _just_ the filenames would clearly be cheating (it's + # quite conceivable that someone might hash the same string for + # another reason and so generate a colliding GUID), but hashing a + # whole SHA-512 data block of random gibberish as well should make + # these GUIDs pseudo-random enough to not collide with anyone + # else's. + + my $randdata = pack "N*", + 0xD4AB035F,0x76998BA0,0x2DCCB0BD,0x6D3FA320,0x53638051,0xFE312F35, + 0xDE1CECC0,0x784DF852,0x6C9F4589,0x54B7AC23,0x14E7A1C4,0xF9BF04DF, + 0x19C08B6D,0x3FB69EF1,0xB2DA9043,0xDB5362F3,0x25718DB6,0x733560DA, + 0xFEF871B0,0xFECF7A0C,0x67D19C95,0xB492E911,0xF5D562A3,0xFCE1D478, + 0x02C50434,0xF7326B7E,0x93D39872,0xCF0D0269,0x9EF24C0F,0x827689AD, + 0x88BD20BC,0x74EA6AFE,0x29223682,0xB9AB9287,0x7EA7CE4F,0xCF81B379, + 0x9AE4A954,0x81C7AD97,0x2FF2F031,0xC51DA3C2,0xD311CCE7,0x0A31EB8B, + 0x1AB04242,0xAF53B714,0xFC574D40,0x8CB4ED01,0x29FEB16F,0x4904D7ED, + 0xF5C5F5E1,0xF138A4C2,0xA9D881CE,0xCEA65187,0x4421BA97,0x0EE8428E, + 0x9556E384,0x6D0484C9,0x561BD84B,0xD9516A40,0x6B4FD33F,0xDDFFE4C8, + 0x3D5DF8A5,0xFE6B7D99,0x3443371B,0xF4E30A3E,0xE62B9FDA,0x6BAA75DB, + 0x9EF3C2C7,0x6815CA42,0xE6536076,0xF851E6E2,0x39D16E69,0xBCDF3BB6, + 0x50EFFA41,0x378CDF2A,0xB5EC0D0C,0x1E94C433,0xE818241A,0x2689EB1F, + 0xB649CEF9,0xD7344D46,0x59C1BB13,0x27511FDF,0x7DAD1768,0xB355E29E, + 0xDFAE550C,0x2433005B,0x09DE10B0,0xAA00BA6B,0xC144ED2D,0x8513D007, + 0xB0315232,0x7A10DAB6,0x1D97654E,0xF048214D,0xE3059E75,0x83C225D1, + 0xFC7AB177,0x83F2B553,0x79F7A0AF,0x1C94582C,0xF5E4AF4B,0xFB39C865, + 0x58ABEB27,0xAAB28058,0x52C15A89,0x0EBE9741,0x343F4D26,0xF941202A, + 0xA32FD32F,0xDCC055B8,0x64281BF3,0x468BD7BA,0x0CEE09D3,0xBB5FD2B6, + 0xA528D412,0xA6A6967E,0xEAAF5DAE,0xDE7B2FAE,0xCA36887B,0x0DE196EB, + 0x74B95EF0,0x9EB8B7C2,0x020BFC83,0x1445086F,0xBF4B61B2,0x89AFACEC, + 0x80A5CD69,0xC790F744,0x435A6998,0x8DE7AC48,0x32F31BC9,0x8F760D3D, + 0xF02A74CB,0xD7B47E20,0x9EC91035,0x70FDE74D,0x9B531362,0x9D81739A, + 0x59ADC2EB,0x511555B5,0xCA84B8D5,0x3EC325FF,0x2E442A4C,0x82AF30D9, + 0xBFD3EC87,0x90C59E07,0x1C6DC991,0x2D16B822,0x7EA44EB5,0x3A655A39, + 0xAB640886,0x09311821,0x777801D9,0x489DBE61,0xA1FFEC65,0x978B49B1, + 0x7DB700CD,0x263CF3D6,0xF977E89F,0xBA0B3D01,0x6C6CED19,0x1BE6F23A, + 0x19E0ED98,0x8E71A499,0x70BA3271,0x3FB7EE98,0xABA46848,0x2B797959, + 0x72C6DE59,0xE08B795C,0x02936C39,0x02185CCB,0xD6F3CE18,0xD0157A40, + 0x833DEC3F,0x319B00C4,0x97B59513,0x900B81FD,0x9A022379,0x16E44E1A, + 0x0C4CC540,0xCA98E7F9,0xF9431A26,0x290BCFAC,0x406B82C0,0xBC1C4585, + 0x55C54528,0x811EBB77,0xD4EDD4F3,0xA70DC02E,0x8AD5C0D1,0x28D64EF4, + 0xBEFF5C69,0x99852C4A,0xB4BBFF7B,0x069230AC,0xA3E141FA,0x4E99FB0E, + 0xBC154DAA,0x323C7F15,0x86E0247E,0x2EEA3054,0xC9CA1D32,0x8964A006, + 0xC93978AC,0xF9B2C159,0x03F2079E,0xB051D284,0x4A7EA9A9,0xF001DA1F, + 0xD47A0DAA,0xCF7B6B73,0xF18293B2,0x84303E34,0xF8BC76C4,0xAFBEE24F, + 0xB589CA80,0x77B5BF86,0x21B9FD5B,0x1A5071DF,0xA3863110,0x0E50CA61, + 0x939151A5,0xD2A59021,0x83A9CDCE,0xCEC69767,0xC906BB16,0x3EE1FF4D, + 0x1321EAE4,0x0BF940D6,0x52471E61,0x8A087056,0x66E54293,0xF84AAB9B, + 0x08835EF1,0x8F12B77A,0xD86935A5,0x200281D7,0xCD3C37C9,0x30ABEC05, + 0x7067E8A0,0x608C4838,0xC9F51CDE,0xA6D318DE,0x41C05B2A,0x694CCE0E, + 0xC7842451,0xA3194393,0xFBDC2C84,0xA6D2B577,0xC91E7924,0x01EDA708, + 0x22FBB61E,0x662F9B7B,0xDE3150C3,0x2397058C; + my $digest = sha512_hex($name . "\0" . $randdata); + return sprintf("%s-%s-%04x-%04x-%s", + substr($digest,0,8), + substr($digest,8,4), + 0x4000 | (0xFFF & hex(substr($digest,12,4))), + 0x8000 | (0x3FFF & hex(substr($digest,16,4))), + substr($digest,20,12)); +}