Remove ObjSQLite3 dependency until it's used

FossilOrigin-Name: 8d796cb21f3ceaa395141d72cdf962d9b2a193b524ab9356ea30a1d04b59d930
This commit is contained in:
Jonathan Schleifer 2020-10-03 14:47:09 +00:00
parent d2bb4edae9
commit 89453f6e66
2 changed files with 3 additions and 9 deletions

View file

@ -9,13 +9,12 @@ It is currently in early development stages.
## How to build it? ## How to build it?
You need [ObjFW](https://objfw.nil.im), You need [ObjFW](https://objfw.nil.im) and
[ObjOpenSSL](https://fossil.nil.im/objopenssl) and [ObjOpenSSL](https://fossil.nil.im/objopenssl) installed in order to do this.
[ObjSQLite3](https://fossil.nil.im/objsqlite3) installed in order to do this.
You can install them all like this: You can install them all like this:
$ for i in objfw objopenssl objsqlite3 objmatrix; do $ for i in objfw objopenssl objmatrix; do
fossil clone https://fossil.nil.im/$i $i.fossil && fossil clone https://fossil.nil.im/$i $i.fossil &&
mkdir $i && mkdir $i &&
cd $i && cd $i &&

View file

@ -21,11 +21,6 @@ AS_IF([$OBJFW_CONFIG --package ObjOpenSSL], [
], [ ], [
AC_MSG_ERROR(ObjOpenSSL not found!) AC_MSG_ERROR(ObjOpenSSL not found!)
]) ])
AS_IF([$OBJFW_CONFIG --package ObjSQLite3], [
OBJFW_CONFIG_FLAGS="$OBJFW_CONFIG_FLAGS --package ObjSQLite3"
], [
AC_MSG_ERROR(ObjSQLite3 not found!)
])
test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)" test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)"