-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
znc: Update from version 1.9.1 to 1.10.1 #6636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
efa615a
znc: Update from version 1.9.1 to 1.10.1
th0ma7 3fa91ab
znc: Add fix to workaround missing rpath in znc libraries
th0ma7 26c3984
znc: Fix typo in changelog
th0ma7 e06ff25
znc: Enable debug info in resulting binaries
th0ma7 091a27f
znc: Enable debug mode when starting with strace on binary
th0ma7 edfd590
znc: Path to enforce ldflags to modules compilation
th0ma7 9a4687d
znc: Disable SHA-NI hardware encryption (not support on celeron)
th0ma7 3594391
argon2: Adjust build flags for Denverton CPU compatibility
th0ma7 7a90b98
argon2: Additional fixes for Atom (Denverton) CPU compatibility
th0ma7 e9e3995
argon2: Additional fixes (again) for Atom (Denverton) CPU
th0ma7 0e594f4
znc: Remove debug info symbols and daemon debug foreground options
th0ma7 368b76c
argon2: Ensure compatibility with evansport CPU
th0ma7 af28d0b
znc: Remove OpenSSL export as no longer necessary
th0ma7 fbab169
znc: Update changelog to reflect fixes
th0ma7 ac17694
znc: Bump package version for release
th0ma7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| znc-1.9.1.tar.gz SHA1 fbaf45d698151b647316007430b690d58705d6ef | ||
| znc-1.9.1.tar.gz SHA256 e8a7cf80e19aad510b4e282eaf61b56bc30df88ea2e0f64fadcdd303c4894f3c | ||
| znc-1.9.1.tar.gz MD5 85ec4aec1c5d072c63c4b58f442e9710 | ||
| znc-1.10.1.tar.gz SHA1 1e3eee8ccfea3eae10c145e8c81b087470edbb7f | ||
| znc-1.10.1.tar.gz SHA256 4e6e76851dbf2606185972b53ec5decad68fe53b63a56e4df8b8b3c0a6c46800 | ||
| znc-1.10.1.tar.gz MD5 6b2ffec8c6507ddcaff854457022a832 |
17 changes: 17 additions & 0 deletions
17
cross/znc/patches/001-force-modules-rpath-using-linker-flags.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| 001-force-modules-rpath-using-linker-flags.patch | ||
|
|
||
| This patch is needed to ensure all rpath are properly assigned | ||
| to modules shared objects as otherwise only default cmake rpath | ||
| is being used while LDFLAGS extra rpath not being considered | ||
|
|
||
| --- modules/CMakeLists.txt-orig 2025-07-01 21:17:15.000000000 +0000 | ||
| +++ modules/CMakeLists.txt 2025-07-09 11:18:52.139294029 +0000 | ||
| @@ -17,6 +17,8 @@ | ||
| # This is not recommended, but whatever. | ||
| file(GLOB all_modules LIST_DIRECTORIES FALSE "*") | ||
|
|
||
| +set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS}") | ||
| + | ||
| function(add_cxx_module mod modpath) | ||
| znc_add_library("module_${mod}" MODULE "${modpath}") | ||
| set_target_properties("module_${mod}" PROPERTIES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.