summaryrefslogtreecommitdiff
path: root/build/import/libsqlite
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:19 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:19 +0300
commite5d0186db99492a139237067bab841a5b83463af (patch)
tree61719595e998314e58383c5081da16d7457a63e7 /build/import/libsqlite
parentc53136bd7d266fccaca679d0471dd8ac0ce91373 (diff)
Turn libodb-sqlite repository into package for muti-package repositorylibodb-sqlite
Diffstat (limited to 'build/import/libsqlite')
-rw-r--r--build/import/libsqlite/configuration-rules.make13
-rwxr-xr-xbuild/import/libsqlite/configure53
-rw-r--r--build/import/libsqlite/rules.make27
-rw-r--r--build/import/libsqlite/stub.make30
-rw-r--r--build/import/libsqlite/version1
5 files changed, 0 insertions, 124 deletions
diff --git a/build/import/libsqlite/configuration-rules.make b/build/import/libsqlite/configuration-rules.make
deleted file mode 100644
index c7fcbed..0000000
--- a/build/import/libsqlite/configuration-rules.make
+++ /dev/null
@@ -1,13 +0,0 @@
-# file : build/import/libsqlite/configuration-rules.make
-# license : GNU GPL v2; see accompanying LICENSE file
-
-$(dcf_root)/import/libsqlite/configuration-dynamic.make: | $(dcf_root)/import/libsqlite/.
- $(call message,,$(scf_root)/import/libsqlite/configure $@)
-
-ifndef %foreign%
-
-disfigure::
- $(call message,rm $(dcf_root)/import/libsqlite/configuration-dynamic.make,\
-rm -f $(dcf_root)/import/libsqlite/configuration-dynamic.make)
-
-endif
diff --git a/build/import/libsqlite/configure b/build/import/libsqlite/configure
deleted file mode 100755
index 0ae364f..0000000
--- a/build/import/libsqlite/configure
+++ /dev/null
@@ -1,53 +0,0 @@
-#! /usr/bin/env bash
-
-# file : build/import/libsqlite/configure
-# license : GNU GPL v2; see accompanying LICENSE file
-
-
-# $1 - out config file
-#
-# bld_root - build root
-# project_name - project name
-#
-
-source $bld_root/dialog.bash
-
-
-$echo
-$echo "Configuring external dependency on 'SQLite library' for '$project_name'."
-$echo
-
-$echo
-$echo "Would you like to configure dependency on the installed version"
-$echo "of 'SQLite library' as opposed to the development build?"
-$echo
-
-installed=`read_y_n y`
-
-path=
-type=
-
-if [ "$installed" = "n" ]; then
-
- $echo
- $echo "Please enter the 'SQLite library' root directory."
- $echo
-
- root=`read_path --directory --exist`
-
- $echo
- $echo "Please select the library type you would like to use:"
- $echo
- $echo "(1) archive"
- $echo "(2) shared object"
- $echo
-
- type=`read_option "archive shared" "shared"`
-fi
-
-echo libsqlite_installed := $installed >$1
-
-if [ "$installed" = "n" ]; then
- echo libsqlite_root := $root >>$1
- echo libsqlite_type := $type >>$1
-fi
diff --git a/build/import/libsqlite/rules.make b/build/import/libsqlite/rules.make
deleted file mode 100644
index 7e346bd..0000000
--- a/build/import/libsqlite/rules.make
+++ /dev/null
@@ -1,27 +0,0 @@
-# file : build/import/libsqlite/rules.make
-# license : GNU GPL v2; see accompanying LICENSE file
-
-$(dcf_root)/import/libsqlite/%: root := $(libsqlite_root)
-
-ifeq ($(libsqlite_type),archive)
-
-$(dcf_root)/import/libsqlite/sqlite.l: $(libsqlite_root)/.libs/libsqlite3.a
- @echo $< >$@
-else
-
-$(dcf_root)/import/libsqlite/sqlite.l: $(libsqlite_root)/.libs/libsqlite3.so
- @echo $< >$@
- @echo rpath:$(root)/.libs >>$@
-endif
-
-$(dcf_root)/import/libsqlite/sqlite.l.cpp-options:
- @echo include: -I$(root) >$@
-
-ifndef %foreign%
-
-disfigure::
- $(call message,rm $(dcf_root)/import/libsqlite/sqlite.l,\
-rm -f $(dcf_root)/import/libsqlite/sqlite.l)
- $(call message,,rm -f $(dcf_root)/import/libsqlite/sqlite.l.cpp-options)
-
-endif
diff --git a/build/import/libsqlite/stub.make b/build/import/libsqlite/stub.make
deleted file mode 100644
index 2d9e519..0000000
--- a/build/import/libsqlite/stub.make
+++ /dev/null
@@ -1,30 +0,0 @@
-# file : build/import/libsqlite/stub.make
-# license : GNU GPL v2; see accompanying LICENSE file
-
-$(call include-once,$(scf_root)/import/libsqlite/configuration-rules.make,$(dcf_root))
-
-libsqlite_installed :=
-
-$(call -include,$(dcf_root)/import/libsqlite/configuration-dynamic.make)
-
-ifdef libsqlite_installed
-
-ifeq ($(libsqlite_installed),y)
-
-$(call export,l: -lsqlite3,cpp-options: )
-
-else
-
-$(call include-once,$(scf_root)/import/libsqlite/rules.make,$(dcf_root))
-
-$(call export,\
- l: $(dcf_root)/import/libsqlite/sqlite.l,\
- cpp-options: $(dcf_root)/import/libsqlite/sqlite.l.cpp-options)
-
-endif
-
-else
-
-.NOTPARALLEL:
-
-endif
diff --git a/build/import/libsqlite/version b/build/import/libsqlite/version
deleted file mode 100644
index 6e8bf73..0000000
--- a/build/import/libsqlite/version
+++ /dev/null
@@ -1 +0,0 @@
-0.1.0