> Date: Tue, 19 Feb 2013 14:14:38 GMT > From: k...@freefriends.org (Karl Berry) > Cc: bug-texinfo@gnu.org > > So will the change below to install-info/Makefile.am do the trick? > > Looks like it. Please send the manifest file. > > Also, will 'transform' rename the file to install-info.exe.manifest > at "make install" time? > > I believe so. I guess we'll find out.
In the meantime, I succeeded in installing automake 1.13.1 and autoconf 2.69 (not easily, but that's not Texinfo's fault), and found a small problem with the patch I sent. I submit a correct one below, and it includes the manifest file (which must have DOS CR-LF EOL format). Thanks. --- /dev/null 1970-01-01 02:00:00.000000000 +0200 +++ install-info/ginstall-info.exe.manifest 2012-05-13 07:33:07.376404000 +0300 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> + <v3:trustInfo xmlns:v3="urn:schemas-microsoft-com:asm.v3"> + <v3:security> + <v3:requestedPrivileges> + <v3:requestedExecutionLevel level="asInvoker" /> + </v3:requestedPrivileges> + </v3:security> + </v3:trustInfo> +</assembly> --- install-info/Makefile.am~ 2012-06-11 20:54:27.000000000 +0300 +++ install-info/Makefile.am 2013-02-19 08:29:29.270065900 +0200 @@ -14,6 +14,11 @@ SUBDIRS = tests bin_PROGRAMS = ginstall-info +w32_script = ginstall-info.exe.manifest +if HOST_IS_WINDOWS + dist_bin_SCRIPTS = $(w32_script) +endif + # Use `ginstall-info' in the definition of PROGRAMS and in dependencies # because automake generates an install-info target in every Makefile # (this is easier than changing Automake.)