Overview
Comment: | Fix imports in ObjFWTLS.h |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1e58de65428a3fbbb678bb6c0f5eda66 |
User & Date: | js on 2024-11-18 21:05:21 |
Other Links: | manifest | tags |
Context
2024-11-18
| ||
21:09 | Make sure ofarc and ofhash reference ObjFWTLS check-in: f5f82456e3 user: js tags: trunk | |
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 | |
00:51 | OFGnuTLSTLSStream: Improve error codes check-in: f2e96ebd9a user: js tags: trunk | |
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} |