Commit 6a950a6ce72c96d0ad797e75f33f8c1c3761c7f4

Authored by Perry Werneck
1 parent 2a2ce4a3

Updating windows package builder.

Showing 2 changed files with 3 additions and 3 deletions   Show diff stats
win/pack.sh
... ... @@ -5,7 +5,7 @@ LIBRARY_NAME="lib3270"
5 5 CORE_LIBRARIES="lib3270 libv3270"
6 6 PACKAGE_PLUGINS="ipc"
7 7 PACKAGE_LANGUAGE_BINDINGS="hllapi"
8   -TARGET_ARCHS="x86_32"
  8 +TARGET_ARCHS="x86_32 x82_64"
9 9 GIT_URL="https://github.com/PerryWerneck"
10 10  
11 11 PROJECTDIR=$(dirname $(dirname $(readlink -f ${0})))
... ...
win/pw3270.nsi.in
... ... @@ -6,9 +6,9 @@
6 6 Name "@PACKAGE@"
7 7 Caption "@PACKAGE@ - @PACKAGE_DESCRIPTION@"
8 8 !ifdef WITHGTK
9   -outfile "@PACKAGE@-@PACKAGE_VERSION@-gtk-@GTK_MODVERSION@-@host_cpu@.exe"
  9 +outfile "@PACKAGE@-@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@.@PACKAGE_MAJOR_RELEASE@.@PACKAGE_MINOR_RELEASE@-gtk-@GTK_MODVERSION@-@host_cpu@.exe"
10 10 !else
11   -outfile "@PACKAGE@-@PACKAGE_VERSION@-requires-gtk-@GTK_MODVERSION@-@host_cpu@.exe"
  11 +outfile "@PACKAGE@-@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@.@PACKAGE_MAJOR_RELEASE@.@PACKAGE_MINOR_RELEASE@-requires-gtk-@GTK_MODVERSION@-@host_cpu@.exe"
12 12 !endif
13 13  
14 14 XPStyle on
... ...