https://github.com/floooh/fips-libcurl
Precompiled, stripped down libcurl libs for Oryol
https://github.com/floooh/fips-libcurl
fips
Last synced: 9 months ago
JSON representation
Precompiled, stripped down libcurl libs for Oryol
- Host: GitHub
- URL: https://github.com/floooh/fips-libcurl
- Owner: floooh
- License: other
- Created: 2015-01-14T18:59:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T13:37:57.000Z (almost 8 years ago)
- Last Synced: 2025-03-25T22:41:27.442Z (10 months ago)
- Topics: fips
- Language: C
- Size: 1.81 MB
- Stars: 7
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
### CURL headers
libcurl is used in Oryol as HTTP client on 64-bit Linux platforms. To prevent any compatibility problems with
different Linux configs it is linked statically into the executable, and stripped from all protocols
except HTTP (no HTTPS support either).
libcurl.a has been created like this:
1. git clone https://github.com/bagder/curl.git
2. cd curl
3. ./buildconfig (+ install any missing packages it complains about)
4. copy the oryol_curl_config.sh script to the curl directory
5. run oryol_curl_config.sh instead of ./configure
6. make
7. the resulting lib is curl/lib/.libs/libcurl.a, copy this to oryol/libs/linux