libpqxx:6.3

Last commit made on 2019-06-14
Get this branch:
git clone -b 6.3 https://git.launchpad.net/libpqxx

Branch merges

Branch information

Name:
6.3
Repository:
lp:libpqxx

Recent commits

b852a78... by Jeroen T. Vermeulen

Update NEWS.

255a876... by Joseph Durel <email address hidden>

Fix `pqxx::internal::inner_type<>` not drilling down past const/volatile (prevented consts from being passed to `exec_params()` etc.) (#193)

7d2ca54... by Jeroen T. Vermeulen

Start 6.3 branch.

If you're a software professional and you know your branching
strategies, this may strike you as lunacy. But it's how I like to do
release branches: development is almost entirely linear with releases
coming straight from `master`, and just occasionally when I really
need to update an older version, I start a "release branch."

That may not even be the right name, but boy, does it work well for me.
You get a release branch when you need one, but only pay the cost of
one very rarely — and even then, only once the code has largely
stabilised and updates are rare. Basically, it's a rare one-off way
to fix occasional bugs.

493fc23... by Jeroen T. Vermeulen

Update NEWS.

0959e81... by tt4g <email address hidden>

Improve generate config-public-compiler.h when using CMake (#170)

When CMake in-source build, the source directory and the binary directory are the same.

CMake set the same value for `AC_CONFIG_H_IN` and `CM_CONFIG_H_IN`.
`file(WRITE "${CM_CONFIG_H_IN}" "")` command is clear file contents so that the generated `config-public-compiler.h` is also empty.

This problem can be avoided by changing the value of `CM_CONFIG_H_IN`.

5d4d1c7... by tt4g <email address hidden>

Fixes install missing header when using CMake out-of-source build (#169)

`include/pqxx/config-public-compiler.h` is not installed when installing using CMake out-of-source build.

a2688e5... by Jeroen T. Vermeulen

Throw when unable to read client encoding.

There's probably more we could do to diagnose error conditions, but this
should make the most likely debugging scenarios a bit easier.

Fixes #168.

3cb1936... by Jeroen T. Vermeulen

Bump development version to 6.3.3.

112a33c... by Jeroen T. Vermeulen

Update NEWS.

836f975... by Jeroen T. Vermeulen

Update CMake templates, and regenerate.

Fixes #166.

Also, completes the fix for #167.