Re: [Patch] Windows installer: allow manually setting WIXDIR as appropriate. - Mailing list pgadmin-hackers

From Nikolai Zhubr
Subject Re: [Patch] Windows installer: allow manually setting WIXDIR as appropriate.
Date
Msg-id 560EF2C6.9040402@yandex.ru
Whole thread Raw
In response to [Patch] Windows installer: allow manually setting WIXDIR as appropriate.  (Nikolai Zhubr <n-a-zhubr@yandex.ru>)
Responses Re: [Patch] Windows installer: allow manually setting WIXDIR as appropriate.  ("J.F. Oster" <jinfroster@mail.ru>)
Re: [Patch] Windows installer: allow manually setting WIXDIR as appropriate.  (Dave Page <dpage@pgadmin.org>)
List pgadmin-hackers
Hi again,

there is some problem in my previous patch, it did not actually work,
here goes a better one:

--- pkg/win32/Make.bat.orig    Fri Sep 25 13:20:24 2015
+++ pkg/win32/Make.bat    Fri Oct 02 21:55:27 2015
@@ -9,7 +9,9 @@
  SET APPKEYWORDS=PostgreSQL, pgAdmin
  SET APPCOMMENTS=PostgreSQL Tools
  SET APPDESCRIPTION=Management and administration tools for the
PostgreSQL DBMS
+IF NOT (%WIXDIR%)==() GOTO DONE_WIXDIR
  SET WIXDIR="C:\Program Files (x86)\Windows Installer XML v3\bin"
+:DONE_WIXDIR

  SET BUILDTREE="../.."


Thank you,
Nikolai

02.10.2015 22:33, I wrote:
> Hi all,
>
> How about allowing wix3 to be located in a different path, pointed to by
> setting WIXDIR environment variable _manually_ before building.
>
> The following patch allows doing so, while fully retaining previous
> behaviour in case this variable was not manually set.
>
> (E.g. when building in a 32bit windows, the "Program Files (x86)" is not
> good enough, and I'd rather not modify the scripts for just setting a
> correct path)
>
> --- pkg/win32/Make.bat.orig Fri Sep 25 13:20:24 2015
> +++ pkg/win32/Make.bat Fri Oct 02 21:55:27 2015
> @@ -9,7 +9,9 @@
> SET APPKEYWORDS=PostgreSQL, pgAdmin
> SET APPCOMMENTS=PostgreSQL Tools
> SET APPDESCRIPTION=Management and administration tools for the
> PostgreSQL DBMS
> +IF NOT "%WIXDIR%"=="" GOTO DONE_WIXDIR
> SET WIXDIR="C:\Program Files (x86)\Windows Installer XML v3\bin"
> +:DONE_WIXDIR
>
> SET BUILDTREE="../.."
>
>
> Thank you,
> Nikolai
>
>



pgadmin-hackers by date:

Previous
From: Nikolai Zhubr
Date:
Subject: [Patch] Windows installer: allow manually setting WIXDIR as appropriate.
Next
From: Nikolai Zhubr
Date:
Subject: Re: Building pgadmin on windows - instructions?