[patch] Client-only installation on Windows

From: "MauMau" <maumau307(at)gmail(dot)com>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: [patch] Client-only installation on Windows
Date: 2013-12-06 14:16:35
Message-ID: 214A4CD7A66A4C509E3A51F392CDF1D9@maumau
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello,

According to this page,

http://www.postgresql.org/docs/current/static/install-procedure.html

client-only installation is possible on UNIX/Linux like this:

gmake -C src/bin install
gmake -C src/include install
gmake -C src/interfaces install
gmake -C doc install

With the attached patch, you can do client-only installation on Windows like
this:

install.bat <install_dir> client

This installs:

* client applications (both core and contrib)
* DLLs for libpq and ECPG
* header files
* import libraries
* pg_service.conf.sample and psqlrc.sample
* symbol files (*.pdb) for the above modules

If the second argument is given as "client" or omitted, all files are
installed. With 9.4, the whole installation takes up about 80 MB, and the
client-only installation takes up only 24 MB.

Any comments would be appreciated.

Regards
MauMau

Attachment Content-Type Size
client_only_install_win.patch application/octet-stream 6.3 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Kevin Grittner 2013-12-06 14:33:12 Re: Reference to parent query from ANY sublink
Previous Message MauMau 2013-12-06 14:12:57 Re: Re: [RFC] Shouldn't we remove annoying FATAL messages from server log?