Skip to content
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

wireshark: typo in zstd package config #845

Open
FederAndInk opened this issue Jul 18, 2024 · 1 comment
Open

wireshark: typo in zstd package config #845

FederAndInk opened this issue Jul 18, 2024 · 1 comment

Comments

@FederAndInk
Copy link

PACKAGECONFIG[zstd] = "-DENABLE_STTD=ON,-DENABLE_ZSTD=OFF, zstd"

-DENABLE_STTD=ON should be -DENABLE_ZSTD=ON

- PACKAGECONFIG[zstd] = "-DENABLE_STTD=ON,-DENABLE_ZSTD=OFF, zstd" 
+ PACKAGECONFIG[zstd] = "-DENABLE_ZSTD=ON,-DENABLE_ZSTD=OFF, zstd" 
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 2, 2024
ENABLE_STTD is a typo, correct option is ENABLE_ZSTD.

This patches the following CMake warning in do_configure:
  Manually-specified variables were not used by the project: ENABLE_STTD
After, do_configure does not show the warning.

Github issue: openembedded#845

Reported-by: Ludovic Jozeau <[email protected]>
Reviewed-by: Yoann Congal <[email protected]>
Signed-off-by: Ghislain Mangé <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
daregit pushed a commit to daregit/yocto-combined that referenced this issue Oct 5, 2024
ENABLE_STTD is a typo, correct option is ENABLE_ZSTD.

This patches the following CMake warning in do_configure:
  Manually-specified variables were not used by the project: ENABLE_STTD
After, do_configure does not show the warning.

Github issue: openembedded/meta-openembedded#845

Reported-by: Ludovic Jozeau <ludovic.jozeausmile.fr>
Reviewed-by: Yoann Congal <yoann.congalsmile.fr>
Signed-off-by: Ghislain Mangé <ghislain.mangesmile.fr>
Signed-off-by: Khem Raj <raj.khemgmail.com>
@gmange
Copy link
Contributor

gmange commented Oct 8, 2024

github-actions bot pushed a commit to Boeing/meta-openembedded-contrib that referenced this issue Oct 15, 2024
ENABLE_STTD is a typo, correct option is ENABLE_ZSTD.

This patches the following CMake warning in do_configure:
  Manually-specified variables were not used by the project: ENABLE_STTD
After, do_configure does not show the warning.

Github issue: openembedded/meta-openembedded#845

Reported-by: Ludovic Jozeau <[email protected]>
Reviewed-by: Yoann Congal <[email protected]>
Signed-off-by: Ghislain Mangé <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
(cherry picked from commit 1575853)
Signed-off-by: Armin Kuster <[email protected]>
halstead pushed a commit that referenced this issue Nov 9, 2024
ENABLE_STTD is a typo, correct option is ENABLE_ZSTD.

This patches the following CMake warning in do_configure:
  Manually-specified variables were not used by the project: ENABLE_STTD
After, do_configure does not show the warning.

Github issue: #845

Reported-by: Ludovic Jozeau <[email protected]>
Reviewed-by: Yoann Congal <[email protected]>
Signed-off-by: Ghislain Mangé <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
(cherry picked from commit 1575853)
Signed-off-by: Armin Kuster <[email protected]>
halstead pushed a commit that referenced this issue Nov 19, 2024
ENABLE_STTD is a typo, correct option is ENABLE_ZSTD.

This patches the following CMake warning in do_configure:
  Manually-specified variables were not used by the project: ENABLE_STTD
After, do_configure does not show the warning.

Github issue: #845

Reported-by: Ludovic Jozeau <[email protected]>
Reviewed-by: Yoann Congal <[email protected]>
Signed-off-by: Ghislain Mangé <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
(cherry picked from commit 1575853)
Signed-off-by: Armin Kuster <[email protected]>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jan 27, 2025
License-Update: Still MIT licensed.  Just removed a header from the license file.
  c-ares/c-ares@595cf21

Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.33.0

Features:

    Add DNS cookie support (RFC7873 + RFC9018) to help prevent off-path cache poisoning attacks. PR openembedded#833
    Implement TCP FastOpen (TFO) RFC7413, which will make TCP reconnects 0-RTT on supported systems. PR openembedded#840

Changes:

    Reorganize source tree. PR openembedded#822
    Refactoring of connection handling to prevent code duplication. PR openembedded#839
    New dynamic array data structure to prevent simple logic flaws in array handling in various code paths. PR openembedded#841

Bugfixes:

    ares_destroy() race condition during shutdown due to missing lock. PR openembedded#831
    Android: Preserve thread name after attaching it to JVM. PR openembedded#838
    Windows UWP (Store) support fix. PR openembedded#845

Signed-off-by: Jason Schonberg <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jan 28, 2025
License-Update: Still MIT licensed.  Just removed a header from the license file.
  c-ares/c-ares@595cf21

Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.33.0

Features:

    Add DNS cookie support (RFC7873 + RFC9018) to help prevent off-path cache poisoning attacks. PR openembedded#833
    Implement TCP FastOpen (TFO) RFC7413, which will make TCP reconnects 0-RTT on supported systems. PR openembedded#840

Changes:

    Reorganize source tree. PR openembedded#822
    Refactoring of connection handling to prevent code duplication. PR openembedded#839
    New dynamic array data structure to prevent simple logic flaws in array handling in various code paths. PR openembedded#841

Bugfixes:

    ares_destroy() race condition during shutdown due to missing lock. PR openembedded#831
    Android: Preserve thread name after attaching it to JVM. PR openembedded#838
    Windows UWP (Store) support fix. PR openembedded#845

Signed-off-by: Jason Schonberg <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants