aboutsummaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
Diffstat (limited to 'vendor')
-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