Overview
Comment: | Fix imports in ObjFWTLS.h |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | 1.2 |
Files: | files | file ages | folders |
SHA3-256: |
e457c20e13e90c2fd2938bb458b3c193 |
User & Date: | js on 2024-11-18 21:05:32 |
Other Links: | branch diff | manifest | tags |
Context
2024-11-18
| ||
21:10 | Make sure ofarc and ofhash reference ObjFWTLS check-in: f010109a70 user: js tags: 1.2 | |
21:05 | Fix imports in ObjFWTLS.h check-in: e457c20e13 user: js tags: 1.2 | |
21:05 | Fix imports in ObjFWTLS.h check-in: 1e58de6542 user: js tags: trunk | |
2024-11-13
| ||
00:27 | GitHub Actions: Pin NDS to last working container check-in: 6c4d17f2f6 user: js tags: 1.2 | |
Changes
Modified src/tls/ObjFWTLS.h from [ee1b068c51] to [6afd5015ee].
︙ | ︙ | |||
13 14 15 16 17 18 19 | * version 3.0 for more details. * * You should have received a copy of the GNU Lesser General Public License * version 3.0 along with this program. If not, see * <https://www.gnu.org/licenses/>. */ | > | > > > > > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | * version 3.0 for more details. * * You should have received a copy of the GNU Lesser General Public License * version 3.0 along with this program. If not, see * <https://www.gnu.org/licenses/>. */ #ifdef OBJFWTLS_LOCAL_INCLUDES # import "macros.h" #else # if defined(__has_feature) && __has_feature(modules) @import ObjFW; # else # import <ObjFW/macros.h> # endif #endif #ifdef __cplusplus extern "C" { #endif extern int _ObjFWTLS_reference; #ifdef __cplusplus } |
︙ | ︙ |
Modified utils/ofhttp/Makefile from [43152d1949] to [443b8f00c0].
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 | ${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2} CPPFLAGS += -I../../src \ -I../../src/runtime \ -I../../src/exceptions \ -I../../src/tls \ -I../.. \ -DLOCALIZATION_DIR='"${datadir}/ofhttp/localization"' LIBS := -L../../src -L../../src/tls ${OFHTTP_LIBS} -lobjfw \ -L../../src/runtime ${RUNTIME_LIBS} \ ${LIBS} LD = ${OBJC} LDFLAGS += ${LDFLAGS_RPATH} | > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | ${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2} CPPFLAGS += -I../../src \ -I../../src/runtime \ -I../../src/exceptions \ -I../../src/tls \ -I../.. \ -DOBJFWTLS_LOCAL_INCLUDES \ -DLOCALIZATION_DIR='"${datadir}/ofhttp/localization"' LIBS := -L../../src -L../../src/tls ${OFHTTP_LIBS} -lobjfw \ -L../../src/runtime ${RUNTIME_LIBS} \ ${LIBS} LD = ${OBJC} LDFLAGS += ${LDFLAGS_RPATH} |