Overview
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 2020-08-31 21:33:32 |
Context
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 | |
Changes
Changes to Makefile.
1 | 1 2 3 4 5 6 7 8 9 | - + | SUBDIRS = src |
︙ |
Name change from ObjSQLite.oc.in to ObjSQLite3.oc.in.
1 | 1 2 3 | - - + + | package_format 1 |
Changes to configure.ac.
| 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) |
Changes to extra.mk.in.
| 1 2 3 4 5 6 7 8 9 10 | - - - + + + |
|
Changes to src/Makefile.
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 |
︙ |
Name change from src/ObjSQLite.h to src/ObjSQLite3.h.
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> * |
Name change from src/SLConnection.h to src/SL3Connection.h.
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 |
Name change from src/SLConnection.m to src/SL3Connection.m.
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> * |
︙ |
Changes to src/exceptions/Makefile.
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} |
Name change from src/exceptions/SLException.h to src/exceptions/SL3Exception.h.
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> * |
Name change from src/exceptions/SLException.m to src/exceptions/SL3Exception.m.
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> * |
︙ |