Codebase list virt-viewer / 03c014c
msi: drop gtk2 support As virt-viewer builds for Windows are using GTK3 nowadays, we can easily drop GTK2 support and avoid maintenance effort in something that is not used/tested anymore. Fabiano FidĂȘncio 8 years ago
2 changed file(s) with 12 addition(s) and 31 deletion(s). Raw diff Collapse all Expand all
6868 --directory-ref=INSTALLDIR > virt-viewer-files.wxs && \
6969 MANUFACTURER="$(MANUFACTURER)" wixl -D SourceDir=$(prefix) \
7070 -D DESTDIR=$$DESTDIR$(prefix) \
71 -D GtkVersion=$(GTK_API_VERSION) \
7271 -D HaveSpiceGtk=$(HaveSpiceGtk) \
7372 -D HaveGtkVnc=$(HaveGtkVnc) \
7473 -D HaveLibvirt=$(HaveLibvirt) \
1515 <?define Win64 = "no"?>
1616 <?endif?>
1717
18 <?if $(var.GtkVersion) = "2.0"?>
19 <?if $(var.HaveSpiceGtk) = "True"?>
20 <?require spice-gtk.wxi?>
21 <?endif?>
22 <?if $(var.HaveGtkVnc) = "True"?>
23 <?require gtk-vnc.wxi?>
24 <?endif?>
25 <?else?>
26 <?if $(var.HaveSpiceGtk) = "True"?>
27 <?require spice-gtk3.wxi?>
28 <?endif?>
29 <?if $(var.HaveGtkVnc) = "True"?>
30 <?require gtk-vnc2.wxi?>
31 <?endif?>
32 <?require adwaita-icons-needed.wxi?>
18 <?if $(var.HaveSpiceGtk) = "True"?>
19 <?require spice-gtk3.wxi?>
3320 <?endif?>
21 <?if $(var.HaveGtkVnc) = "True"?>
22 <?require gtk-vnc2.wxi?>
23 <?endif?>
24 <?require adwaita-icons-needed.wxi?>
3425 <?if $(var.HaveLibvirt) = "True"?>
3526 <?require libvirt.wxi?>
3627 <?endif?>
130121 </DirectoryRef>
131122
132123 <Feature Id="Complete" Level="1">
133 <?if $(var.GtkVersion) = "2.0"?>
134 <?if $(var.HaveSpiceGtk) = "True"?>
135 <ComponentGroupRef Id="CG.spice-gtk"/>
136 <?endif?>
137 <?if $(var.HaveGtkVnc) = "True"?>
138 <ComponentGroupRef Id="CG.gtk-vnc"/>
139 <?endif?>
140 <?else?>
141 <?if $(var.HaveSpiceGtk) = "True"?>
142 <ComponentGroupRef Id="CG.spice-gtk3"/>
143 <?endif?>
144 <?if $(var.HaveGtkVnc) = "True"?>
145 <ComponentGroupRef Id="CG.gtk-vnc2"/>
146 <?endif?>
147 <ComponentGroupRef Id="CG.adwaita-icons-needed"/>
124 <?if $(var.HaveSpiceGtk) = "True"?>
125 <ComponentGroupRef Id="CG.spice-gtk3"/>
148126 <?endif?>
127 <?if $(var.HaveGtkVnc) = "True"?>
128 <ComponentGroupRef Id="CG.gtk-vnc2"/>
129 <?endif?>
130 <ComponentGroupRef Id="CG.adwaita-icons-needed"/>
149131 <?if $(var.HaveLibvirt) = "True"?>
150132 <ComponentGroupRef Id="CG.libvirt"/>
151133 <?endif?>