]> Git Repo - qemu.git/commitdiff
qemu-ga: add missing libpcre to MSI build
authorThomas Lamprecht <[email protected]>
Thu, 1 Jun 2017 12:47:46 +0000 (14:47 +0200)
committerMichael Roth <[email protected]>
Mon, 17 Jul 2017 23:58:37 +0000 (18:58 -0500)
glib depends on libpcre which was not shipped with the MSI, thus
starting of the qemu-ga.exe failed with the respective error message.

Tell WIXL to ship this library with the MSI to avoid this problem.

Signed-off-by: Thomas Lamprecht <[email protected]>
CC: Stefan Weil <[email protected]>
CC: Michael Roth <[email protected]>
Reviewed-by: Marc-AndrĂ© Lureau <[email protected]>
Signed-off-by: Michael Roth <[email protected]>
qga/installer/qemu-ga.wxs

index fa2260cafa9f18a122bebeb0a2903ff3e83ef356..5af11627f8e985803db7b0ade9052debe8e178fc 100644 (file)
           <Component Id="libwinpthread" Guid="{6C117C78-0F47-4B07-8F34-6BEE11643829}">
             <File Id="libwinpthread_1.dll" Name="libwinpthread-1.dll" Source="$(var.Mingw_bin)/libwinpthread-1.dll" KeyPath="yes" DiskId="1"/>
           </Component>
+          <Component Id="libpcre" Guid="{7A86B45E-A009-489A-A849-CE3BACF03CD0}">
+            <File Id="libpcre_1.dll" Name="libpcre-1.dll" Source="$(var.Mingw_bin)/libpcre-1.dll" KeyPath="yes" DiskId="1"/>
+          </Component>
           <Component Id="registry_entries" Guid="{D075D109-51CA-11E3-9F8B-000C29858960}">
             <RegistryKey Root="HKLM"
                          Key="Software\$(env.QEMU_GA_MANUFACTURER)\$(env.QEMU_GA_DISTRO)\Tools\QemuGA">
       <ComponentRef Id="libssp" />
       <ComponentRef Id="libwinpthread" />
       <ComponentRef Id="registry_entries" />
+      <ComponentRef Id="libpcre" />
     </Feature>
 
     <InstallExecuteSequence>
This page took 0.026428 seconds and 4 git commands to generate.