Overview
Comment: |
Downloads: |
Tarball
| ZIP archive
| SQL archive |
Timelines: |
family
| ancestors
| descendants
| both
| trunk
|
Files: |
files
| file ages
| folders
|
SHA3-256: |
5e202503fce1cf0fd217a18149bbb2d44d46adb0b997a91a633b1a4433f41a0b |
User & Date: |
js
2020-08-24 21:44:39 |
Context
2020-08-31
| | |
21:33 |
|
check-in: b821df3a30 user: js tags: trunk
|
2020-08-24
| | |
21:44 |
|
check-in: 5e202503fc user: js tags: trunk
|
21:40 |
|
check-in: b86ecbb616 user: js tags: trunk
|
| | |
Changes
Added Makefile.
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
SUBDIRS = src
DISTCLEAN = ObjSQLite.oc \
aclocal.m4 \
autom4te.cache \
buildsys.mk \
config.h \
config.log \
config.status \
extra.mk
include buildsys.mk
include extra.mk
install-extra:
i=ObjSQLite.oc; \
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
${INSTALL_STATUS}; \
if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
fi
uninstall-extra:
i=ObjOpenSQLite.oc; \
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
if test -f $$packagesdir/$$i; then \
if rm -f $$packagesdir/$$i; then \
${DELETE_OK}; \
else \
${DELETE_FAILED}; \
fi \
fi; \
rmdir $$packagesdir >/dev/null 2>&1 || true
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added ObjSQLite.oc.in.
|
1
2
3
|
+
+
+
|
package_format 1
CPPFLAGS="$CPPFLAGS @SQLITE_CPPFLAGS@"
LIBS="-lobjsqlite @SQLITE_LIBS@ $LIBS"
|
| |
Added autogen.sh.
|
1
2
3
4
5
6
7
8
9
10
|
+
+
+
+
+
+
+
+
+
+
|
#!/bin/sh
set -e
# Set a version for OpenBSD
: ${AUTOCONF_VERSION:=2.69}
: ${AUTOMAKE_VERSION:=1.16}
export AUTOCONF_VERSION AUTOMAKE_VERSION
aclocal -I build-aux/m4
autoconf
|
| | | | | | | | |
Added build-aux/config.guess.