-
Notifications
You must be signed in to change notification settings - Fork 833
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
Fix for curl build #6594
Fix for curl build #6594
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: curl Test | ||
|
||
on: | ||
push: | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: autogen | ||
run: ./autogen.sh | ||
- name: configure | ||
run: ./configure --enable-all | ||
- name: make | ||
run: make | ||
- name: install | ||
run: sudo make install | ||
- uses: actions/checkout@master | ||
with: | ||
repository: curl/curl | ||
path: curl | ||
- name: Install test dependency | ||
working-directory: ./curl | ||
run: sudo apt-get install nghttp2 | ||
- name: curl buildconf | ||
working-directory: ./curl | ||
run: ./buildconf | ||
- name: curl configure | ||
working-directory: ./curl | ||
run: ./configure --with-wolfssl | ||
- name: curl make | ||
working-directory: ./curl | ||
run: make | ||
- name: curl unit tests | ||
working-directory: ./curl | ||
run: make test | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,6 @@ decouple library dependencies with standard string, memory and so on. | |
#ifndef WOLF_CRYPT_TYPES_H | ||
#define WOLF_CRYPT_TYPES_H | ||
|
||
#ifdef HAVE_CONFIG_H | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you double check that all .c files in the library proper have this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looked like they all did. I did however find more references to config.h that I removed/replaced with the appropriate header |
||
#include <config.h> | ||
#endif | ||
#include <wolfssl/wolfcrypt/settings.h> | ||
#include <wolfssl/wolfcrypt/wc_port.h> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably a good idea to call
make -j
to get it building faster.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah good suggestion. I'll add it when I'm doing another PR