diff options
author | Fabiano FidĂȘncio <fidencio@redhat.com> | 2015-06-22 01:12:36 +0200 |
---|---|---|
committer | Fabiano FidĂȘncio <fidencio@redhat.com> | 2015-06-23 16:43:03 +0200 |
commit | 9f96eabdebadeb465f2cc03a05d500028ba49893 (patch) | |
tree | cdaeebe3e4d9b7f76d14e43825faea799ae49f16 | |
parent | c33f37efe334dde0554d0c33c33115a80d8b39d9 (diff) |
nsis: add libepoxy-0.dll (a new gtk3 dependency)
The new dependecy was introduced in gtk+ 3.15.3.
-rwxr-xr-x | data/virt-viewer.nsis.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/virt-viewer.nsis.in b/data/virt-viewer.nsis.in index 8c54454..ca96fbf 100755 --- a/data/virt-viewer.nsis.in +++ b/data/virt-viewer.nsis.in @@ -102,6 +102,7 @@ Section "VirtViewer" File "@prefix@/bin/libcairo-2.dll" !if ${GTK_VERSION} == 3.0 File "@prefix@/bin/libcairo-gobject-2.dll" + File "@prefix@/bin/libepoxy-0.dll" !endif File "@prefix@/bin/libcrypto-10.dll" File "@prefix@/bin/libexpat-1.dll" @@ -647,6 +648,7 @@ Section "Uninstall" Delete /rebootok "$INSTDIR\bin\libcairo-2.dll" !if ${GTK_VERSION} == 3.0 Delete /rebootok "$INSTDIR\bin\libcairo-gobject-2.dll" + Delete /rebootok "$INSTDIR\bin\libepoxy-0.dll" !endif Delete /rebootok "$INSTDIR\bin\libatk-1.0-0.dll" !if ${HaveOVirt} == True |