From 0385c87c8434873bdb8b86d35700cdd61286b749 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Wed, 13 Oct 2021 09:09:33 -0700 Subject: feat(vendor): remove dependence on readline and ncurses --- vendor/sync | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) (limited to 'vendor') diff --git a/vendor/sync b/vendor/sync index 6797185..380448a 100755 --- a/vendor/sync +++ b/vendor/sync @@ -182,51 +182,6 @@ build_wlroots() echo $WLROOTS_TAG > wlroots/build.tag } -# ------------------------------------------------------------------------ -# 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 @@ -251,5 +206,3 @@ update blas $BLAS_TAG update zlib $ZLIB_TAG update wlroots $WLROOTS_TAG -update ncurses $NCURSES_TAG -update readline $READLINE_TAG -- cgit v1.2.1