Comment: | Rename project to ObjSQLite3 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b821df3a30cc9a96f4d9ef2e3e354396 |
User & Date: | js on 2020-08-31 21:33:32 |
Other Links: | manifest | tags |
2020-08-31
| ||
21:36 | Makefile: Fix wrong name for .oc file check-in: c256c8ae6e user: js tags: trunk | |
21:33 | Rename project to ObjSQLite3 check-in: b821df3a30 user: js tags: trunk | |
2020-08-24
| ||
21:44 | Initial commit check-in: 5e202503fc user: js tags: trunk | |
Modified Makefile from [f67b2d2366] to [6e72bff737].
1 | 1 2 3 4 5 6 7 8 9 | - + | SUBDIRS = src |
︙ |
Renamed and modified ObjSQLite.oc.in [b203d785ac] to ObjSQLite3.oc.in [688d34c7ff].
1 | 1 2 3 | - - + + | package_format 1 |
Modified configure.ac from [d62e0a3619] to [735b3a5ce7].
| 1 2 3 4 5 6 7 8 | - + |
|
︙ | |||
36 37 38 39 40 41 42 | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | - + - + - + - - - - - - - + + + + + + + - + | AC_CHECK_TOOL(AR, ar) AC_PROG_RANLIB AC_ARG_ENABLE(shared, AS_HELP_STRING([--disable-shared], [do not build shared library])) AS_IF([test x"$enable_shared" != x"no"], [ BUILDSYS_SHARED_LIB |
︙ | |||
106 107 108 109 110 111 112 | 106 107 108 109 110 111 112 113 114 115 116 117 | - - + + - + | ]) dnl We don't call AC_PROG_CPP, but only AC_PROG_OBJCPP and set CPP to OBJCPP dnl and add OBJCPPFLAGS to CPPFLAGS, thus we need to AC_SUBST these ourself. AC_SUBST(CPP) AC_SUBST(CPPFLAGS) |
Modified extra.mk.in from [486df64972] to [ff9c428f67].
| 1 2 3 4 5 6 7 8 9 10 | - - - + + + |
|
Modified src/Makefile from [cdf3bb1ec3] to [b2a42d910b].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | - - - + + + - + - + | include ../extra.mk SUBDIRS = exceptions |
︙ |
Renamed and modified src/ObjSQLite.h [d1234b0221] to src/ObjSQLite3.h [8bfc55c8f4].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + - + | /* * Copyright (c) 2020, Jonathan Schleifer <js@nil.im> * |
Renamed and modified src/SLConnection.h [1ce8856dcf] to src/SL3Connection.h [d61a9f733e].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | /* * Copyright (c) 2020, Jonathan Schleifer <js@nil.im> * |
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | - + | #import <ObjFW/ObjFW.h> #include <sqlite3.h> OF_ASSUME_NONNULL_BEGIN |
Renamed and modified src/SLConnection.m [6c201cd34d] to src/SL3Connection.m [05894e3c52].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - + - + - + - + - - - + + + + | /* * Copyright (c) 2020, Jonathan Schleifer <js@nil.im> * |
︙ |
Modified src/exceptions/Makefile from [a63d26e3c5] to [1415e43b6a].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | include ../../extra.mk STATIC_PIC_LIB_NOINST = ${EXCEPTIONS_LIB_A} STATIC_LIB_NOINST = ${EXCEPTIONS_A} |
Renamed and modified src/exceptions/SLException.h [d2f9f591c1] to src/exceptions/SL3Exception.h [cb96ce679b].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - + - + - + - + - + - + - + | /* * Copyright (c) 2020, Jonathan Schleifer <js@nil.im> * |
Renamed and modified src/exceptions/SLException.m [2d25da858b] to src/exceptions/SL3Exception.m [a42eeef0e9].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - + - + - + - + - + | /* * Copyright (c) 2020, Jonathan Schleifer <js@nil.im> * |
︙ |