diff options
| author | Robert Isaacs <risaacs99@gmail.com> | 2018-10-25 14:06:54 -0400 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-10-25 11:06:54 -0700 |
| commit | f21d4f17e401376f2962543d07d4d81e056f02d8 (patch) | |
| tree | 8140976527965951fbe499785686727545cd6d16 | |
| parent | 7f6b4fed7e02615567ca98c601f9820bbb2ab055 (diff) | |
| download | vcpkg-f21d4f17e401376f2962543d07d4d81e056f02d8.tar.gz vcpkg-f21d4f17e401376f2962543d07d4d81e056f02d8.zip | |
Include libpq-events header file (#4559)
* Include libpq-events header file
Missing the libpq events header file. This file is needed to use the asynchronous libpq interfaces.
* [libpq] Bump control version
| -rw-r--r-- | ports/libpq/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | ports/libpq/CONTROL | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ports/libpq/CMakeLists.txt b/ports/libpq/CMakeLists.txt index 57b86e255..68da9356c 100644 --- a/ports/libpq/CMakeLists.txt +++ b/ports/libpq/CMakeLists.txt @@ -120,6 +120,7 @@ set(pg_libpq_interface ${CMAKE_CURRENT_BINARY_DIR}/include/pg_config_ext.h ${CMAKE_CURRENT_BINARY_DIR}/include/pg_config.h src/interfaces/libpq/libpq-fe.h + src/interfaces/libpq/libpq-events.h ) set(pg_libpq_catalog_interface src/include/catalog/pg_type.h @@ -147,4 +148,4 @@ if(INSTALL_INCLUDES) install(FILES ${pg_libpq_interface} DESTINATION include) install(DIRECTORY src/include/libpq DESTINATION include) install(FILES ${pg_libpq_catalog_interface} DESTINATION include/catalog) -endif()
\ No newline at end of file +endif() diff --git a/ports/libpq/CONTROL b/ports/libpq/CONTROL index 225d886de..2755a2831 100644 --- a/ports/libpq/CONTROL +++ b/ports/libpq/CONTROL @@ -1,4 +1,4 @@ Source: libpq -Version: 9.6.1-4 +Version: 9.6.1-5 Description: The official database access API of postgresql Build-Depends: openssl, zlib (linux) |
