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
| From 84c42091cbae3735c52e895221f3f95a87155756 Mon Sep 17 00:00:00 2001 | |
| From: rexim <[email protected]> | |
| Date: Wed, 30 Jun 2021 20:43:47 +0700 | |
| Subject: [PATCH] Make it possible to include files over https | |
| --- | |
| Makefile | 2 +- | |
| tcc.c | 5 +++++ | |
| tccpp.c | 43 +++++++++++++++++++++++++++++++++++++++++++ | |
| 3 files changed, 49 insertions(+), 1 deletion(-) |
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
| // cc `pkg-config --cflags openssl` -o simple_openssl_client simple_openssl_client.c `pkg-config --libs openssl` | |
| // Copyright 2021 Alexey Kutepov <[email protected]> | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining | |
| // a copy of this software and associated documentation files (the | |
| // "Software"), to deal in the Software without restriction, including | |
| // without limitation the rights to use, copy, modify, merge, publish, | |
| // distribute, sublicense, and/or sell copies of the Software, and to | |
| // permit persons to whom the Software is furnished to do so, subject to |