ObjSQLite3  Check-in [2aa27f332c]

Overview
Comment:Migrate build system to Meson
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2aa27f332cc29dfdf07022ae56e1b0e0e896c3bdc204883e51ecd20772ff96e7
User & Date: js on 2024-08-04 20:38:38
Other Links: manifest | tags
Context
2024-08-05
00:28
Fix different signedness in comparison warning check-in: 23b9889d29 user: js tags: trunk
2024-08-04
20:38
Migrate build system to Meson check-in: 2aa27f332c user: js tags: trunk
2024-07-21
15:30
Add STATIC_LIBS to ObjSQLite3.oc check-in: 55f7614f69 user: js tags: trunk
Changes

Modified .fossil-settings/ignore-glob from [e0ff999907] to [fff69385a5].

1
2
3

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22



1








2










-
-
-
+
-
-
-
-
-
-
-
-

-
-
-
-
-
-
-
-
-
-
*.a
*.dep
*.dll
build
*.dylib
*.exe
*.framework
*.library
*.o
*.orig
*.so
*.so.*
ObjSQLite3.oc
aclocal.m4
autom4te.cache
buildsys.mk
config.log
config.status
configure
extra.mk
tests/tests
tests/tests.db
tests/tests.exe

Deleted Makefile version [9212b7c232].

Modified ObjSQLite3.oc.in from [10c32dd7b2] to [2ce2ce1644].

1
2
3
4
5



1
2



3
4
5


-
-
-
+
+
+
package_format 1
CPPFLAGS="$CPPFLAGS @SQLITE3_CPPFLAGS@"
LIBS="-lobjsqlite3 @SQLITE3_LIBS@ $LIBS"
FRAMEWORK_LIBS="-framework ObjSQLite3 @SQLITE3_LIBS@ $FRAMEWORK_LIBS"
STATIC_LIBS="${libdir}/libobjsqlite3.a @SQLITE3_LIBS@ $STATIC_LIBS"
LIBS="-L@libdir@ -lobjsqlite3 @SQLITE3_LIBS@ $LIBS"
FRAMEWORK_LIBS="-L@libdir@ -lobjsqlite3 @SQLITE3_LIBS@ $FRAMEWORK_LIBS"
STATIC_LIBS="@libdir@/libobjsqlite3.a @SQLITE3_LIBS@ $STATIC_LIBS"

Deleted autogen.sh version [11497cc624].

Deleted build-aux/config.guess version [eff4d47d66].

Deleted build-aux/config.sub version [85c85f0251].

Deleted build-aux/install-sh version [1cccb4aa97].

Deleted build-aux/m4/ax_check_compiler_flags.m4 version [eb1353b82e].

Deleted build-aux/m4/buildsys.m4 version [2df76d7ffd].

Deleted buildsys.mk.in version [9eda233348].

Deleted configure.ac version [89efa37ffa].

Deleted extra.mk.in version [53ce7c54d3].

Added meson.build version [3eadd6eeb5].

Deleted src/Makefile version [e1db19875f].

Deleted src/exceptions/Makefile version [2ec17b93d3].

Modified src/exceptions/SL3PrepareStatementFailedException.m from [7f5b066ab2] to [1346cca4db].

29
30
31
32
33
34
35
36

37
38
39
40
41
42
43
29
30
31
32
33
34
35

36
37
38
39
40
41
42
43







-
+







			      errorCode: (int)errorCode
{
	OF_UNRECOGNIZED_SELECTOR
}

+ (instancetype)exceptionWithConnection: (SL3Connection *)connection
			   SQLStatement: (OFConstantString *)SQLStatement
			      errorCode: (int)errorCode;
			      errorCode: (int)errorCode
{
	return [[[self alloc] initWithConnection: connection
				    SQLStatement: SQLStatement
				       errorCode: errorCode] autorelease];
}

- (instancetype)initWithConnection: (SL3Connection *)connection

Added src/meson.build version [b306796aaa].

Deleted tests/Makefile version [7d657de8c8].

Added tests/meson.build version [4ebc7f4ac0].