| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent d6b9cc3 commit 7f8edce
28 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,7 +12,7 @@ INCLUDE (CheckCSourceCompiles) | |||
| 12 | 12 | INCLUDE (CheckStructHasMember) | |
| 13 | 13 | INCLUDE (CheckLibraryExists) | |
| 14 | 14 | ||
| 15 | - PROJECT (c-ares LANGUAGES C VERSION "1.33.0" ) | ||
| 15 | + PROJECT (c-ares LANGUAGES C VERSION "1.33.1" ) | ||
| 16 | 16 | ||
| 17 | 17 | # Set this version before release | |
| 18 | 18 | SET (CARES_VERSION "${PROJECT_VERSION}") | |
@@ -30,7 +30,7 @@ INCLUDE (GNUInstallDirs) # include this *AFTER* PROJECT(), otherwise paths are w | |||
| 30 | 30 | # For example, a version of 4:0:2 would generate output such as: | |
| 31 | 31 | # libname.so -> libname.so.2 | |
| 32 | 32 | # libname.so.2 -> libname.so.2.2.0 | |
| 33 | - SET (CARES_LIB_VERSIONINFO "20:0:18") | ||
| 33 | + SET (CARES_LIB_VERSIONINFO "20:1:18") | ||
| 34 | 34 | ||
| 35 | 35 | ||
| 36 | 36 | OPTION (CARES_STATIC "Build as a static library" OFF) | |
@@ -772,12 +772,11 @@ IF (CARES_INSTALL) | |||
| 772 | 772 | INSTALL (EXPORT ${PROJECT_NAME}-targets COMPONENT Devel DESTINATION ${CMAKECONFIG_INSTALL_DIR} NAMESPACE ${PROJECT_NAME}::) | |
| 773 | 773 | INSTALL (FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake" "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake" COMPONENT Devel DESTINATION ${CMAKECONFIG_INSTALL_DIR}) | |
| 774 | 774 | ||
| 775 | - # pkgconfig support | ||
| 776 | - IF (NOT CARES_SHARED) | ||
| 777 | - FOREACH (LIB ${CARES_DEPENDENT_LIBS}) | ||
| 778 | - SET (CARES_PRIVATE_LIBS "${CARES_PRIVATE_LIBS} -l${LIB}") | ||
| 779 | - ENDFOREACH () | ||
| 780 | - ENDIF () | ||
| 775 | + # pkgconfig support for static builds | ||
| 776 | + FOREACH (LIB ${CARES_DEPENDENT_LIBS}) | ||
| 777 | + SET (CARES_PRIVATE_LIBS "${CARES_PRIVATE_LIBS} -l${LIB}") | ||
| 778 | + ENDFOREACH () | ||
| 779 | + | ||
| 781 | 780 | CONFIGURE_FILE("libcares.pc.cmake" "libcares.pc" @ONLY) | |
| 782 | 781 | INSTALL (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcares.pc" COMPONENT Devel DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") | |
| 783 | 782 | ENDIF () | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -328,6 +328,8 @@ FGREP = @FGREP@ | |||
| 328 | 328 | FILECMD = @FILECMD@ | |
| 329 | 329 | GCOV = @GCOV@ | |
| 330 | 330 | GENHTML = @GENHTML@ | |
| 331 | + GMOCK112_CFLAGS = @GMOCK112_CFLAGS@ | ||
| 332 | + GMOCK112_LIBS = @GMOCK112_LIBS@ | ||
| 331 | 333 | GMOCK_CFLAGS = @GMOCK_CFLAGS@ | |
| 332 | 334 | GMOCK_LIBS = @GMOCK_LIBS@ | |
| 333 | 335 | GREP = @GREP@ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,3 +1,35 @@ | |||
| 1 | + ## c-ares version 1.33.1 - August 23 2024 | ||
| 2 | + | ||
| 3 | + This is a bugfix release. | ||
| 4 | + | ||
| 5 | + Bugfixes: | ||
| 6 | + * Work around systemd-resolved quirk that returns unexpected codes for single | ||
| 7 | + label names. Also adds test cases to validate the work around works and | ||
| 8 | + will continue to work in future releases. | ||
| 9 | + [PR #863](https://github.com/c-ares/c-ares/pull/863), | ||
| 10 | + See Also https://github.com/systemd/systemd/issues/34101 | ||
| 11 | + * Fix sysconfig ndots default value, also adds containerized test case to | ||
| 12 | + prevent future regressions. | ||
| 13 | + [PR #862](https://github.com/c-ares/c-ares/pull/862) | ||
| 14 | + * Fix blank DNS name returning error code rather than valid record for | ||
| 15 | + commands like: `adig -t SOA .`. Also adds test case to prevent future | ||
| 16 | + regressions. | ||
| 17 | + [9e574af](https://github.com/c-ares/c-ares/commit/9e574af) | ||
| 18 | + * Fix calculation of query times > 1s. | ||
| 19 | + [2b2eae7](https://github.com/c-ares/c-ares/commit/2b2eae7) | ||
| 20 | + * Fix building on old Linux releases that don't have `TCP_FASTOPEN_CONNECT`. | ||
| 21 | + [b7a89b9](https://github.com/c-ares/c-ares/commit/b7a89b9) | ||
| 22 | + * Fix minor Android build warnings. | ||
| 23 | + [PR #848](https://github.com/c-ares/c-ares/pull/848) | ||
| 24 | + | ||
| 25 | + Thanks go to these friendly people for their efforts and contributions for this | ||
| 26 | + release: | ||
| 27 | + * Brad House (@bradh352) | ||
| 28 | + * Erik Lax (@eriklax) | ||
| 29 | + * Hans-Christian Egtvedt (@egtvedt) | ||
| 30 | + * Mikael Lindemann (@mikaellindemann) | ||
| 31 | + * Nodar Chkuaselidze (@nodech) | ||
| 32 | + | ||
| 1 | 33 | ## c-ares version 1.33.0 - August 2 2024 | |
| 2 | 34 | ||
| 3 | 35 | This is a feature and bugfix release. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | ||
| 2 | 2 | # aminclude_static.am generated automatically by Autoconf | |
| 3 | - # from AX_AM_MACROS_STATIC on Fri Aug 2 08:48:39 EDT 2024 | ||
| 3 | + # from AX_AM_MACROS_STATIC on Fri Aug 23 09:37:25 EDT 2024 | ||
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | 6 | # Code coverage | |
| Back | FazBrowse Home | New Git URL |
0 commit comments