aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-13 09:09:33 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-13 09:09:33 -0700
commit0385c87c8434873bdb8b86d35700cdd61286b749 (patch)
treef66b037d03a1faf28d9612c0aea53aeb333c4062
parent2ade60747db41771498ab2b85ce6e3c3389f2c26 (diff)
feat(vendor): remove dependence on readline and ncurses
-rwxr-xr-xvendor/sync47
1 files changed, 0 insertions, 47 deletions
diff --git a/vendor/sync b/vendor/sync
index 6797185..380448a 100755
--- a/vendor/sync
+++ b/vendor/sync
@@ -183,51 +183,6 @@ build_wlroots()
}
# ------------------------------------------------------------------------
-# readline
-
-READLINE_URL="https://git.savannah.gnu.org/git/readline.git"
-READLINE_TAG="readline-8.1-rc3"
-
-build_readline()
-{
- git clone $READLINE_URL readline
- cd readline && git checkout $READLINE_TAG
- ./configure \
- --prefix=$ROOT \
- --includedir=$ROOT/include/vendor \
- --disable-shared
- make && make install
-
- cd $VENDOR
- echo $READLINE_TAG > readline/build.tag
-}
-
-# ------------------------------------------------------------------------
-# ncurses
-
-NCURSES_URL="https://github.com/mirror/ncurses.git"
-NCURSES_TAG="v6.2"
-
-build_ncurses()
-{
- git clone $NCURSES_URL ncurses
- cd ncurses && git checkout $NCURSES_TAG
- ./configure \
- --prefix=$ROOT \
- --includedir=$ROOT/include/vendor \
- --with-normal \
- --disable-shared \
- --without-cxx \
- --without-cxx-binding \
- --without-manpages \
- --enable-widec
- make && make install.libs && make install.includes
-
- cd $VENDOR
- echo $NCURSES_TAG > ncurses/build.tag
-}
-
-# ------------------------------------------------------------------------
# utility functions
update()
@@ -251,5 +206,3 @@ update blas $BLAS_TAG
update zlib $ZLIB_TAG
update wlroots $WLROOTS_TAG
-update ncurses $NCURSES_TAG
-update readline $READLINE_TAG