xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 1b485eae9a20ac849c76e71bf58ef51d86ff9f6a

Remove check for stdscr from the configure
Thanks to jtbm37.
Author: xaizek
Author date (UTC): 2013-10-31 18:40
Committer name: xaizek
Committer date (UTC): 2013-10-31 18:45
Parent(s): 588dd722ecdd99d612d8e99e09831e4b9da26e53
Signing key:
Tree: 6d1bb388e976cf6408163882a2130cceb19c9071
File Lines added Lines deleted
ChangeLog 2 0
configure 0 7
configure.in 0 1
File ChangeLog changed (mode: 100644) (index 95133ffc7..563f09e97)
1 1 0.7.6-beta2 to current 0.7.6-beta2 to current
2 2
3 Removed check for stdscr from the configure. Thanks to jtbm37.
4
3 5 Made command name column of the :command menu automatically expand for Made command name column of the :command menu automatically expand for
4 6 long names. Thanks to MadMaverick9. long names. Thanks to MadMaverick9.
5 7
File configure changed (mode: 100755) (index 7bf078304..3ea15f8af)
... ... else
8224 8224 as_fn_error $? "start_color() function not found." "$LINENO" 5 as_fn_error $? "start_color() function not found." "$LINENO" 5
8225 8225 fi fi
8226 8226
8227 ac_fn_c_check_func "$LINENO" "stdscr" "ac_cv_func_stdscr"
8228 if test "x$ac_cv_func_stdscr" = xyes; then :
8229
8230 else
8231 as_fn_error $? "stdscr() function not found." "$LINENO" 5
8232 fi
8233
8234 8227 ac_fn_c_check_func "$LINENO" "use_default_colors" "ac_cv_func_use_default_colors" ac_fn_c_check_func "$LINENO" "use_default_colors" "ac_cv_func_use_default_colors"
8235 8228 if test "x$ac_cv_func_use_default_colors" = xyes; then : if test "x$ac_cv_func_use_default_colors" = xyes; then :
8236 8229
File configure.in changed (mode: 100644) (index 73503e9c2..7bd485507)
... ... AC_CHECK_FUNC([resizeterm], [], [AC_MSG_ERROR([resizeterm() function not found.]
396 396 AC_CHECK_FUNC([scrollok], [], [AC_MSG_ERROR([scrollok() function not found.])]) AC_CHECK_FUNC([scrollok], [], [AC_MSG_ERROR([scrollok() function not found.])])
397 397 AC_CHECK_FUNC([set_escdelay], [AC_DEFINE([HAVE_SET_ESCDELAY_FUNC], [1], [set_escdelay() function is available.])]) AC_CHECK_FUNC([set_escdelay], [AC_DEFINE([HAVE_SET_ESCDELAY_FUNC], [1], [set_escdelay() function is available.])])
398 398 AC_CHECK_FUNC([start_color], [], [AC_MSG_ERROR([start_color() function not found.])]) AC_CHECK_FUNC([start_color], [], [AC_MSG_ERROR([start_color() function not found.])])
399 AC_CHECK_FUNC([stdscr], [], [AC_MSG_ERROR([stdscr() function not found.])])
400 399 AC_CHECK_FUNC([use_default_colors], [], [AC_MSG_ERROR([use_default_colors() function not found.])]) AC_CHECK_FUNC([use_default_colors], [], [AC_MSG_ERROR([use_default_colors() function not found.])])
401 400 AC_CHECK_FUNC([waddch], [], [AC_MSG_ERROR([waddch() function not found.])]) AC_CHECK_FUNC([waddch], [], [AC_MSG_ERROR([waddch() function not found.])])
402 401 AC_CHECK_FUNC([waddnstr], [], [AC_MSG_ERROR([waddnstr() function not found.])]) AC_CHECK_FUNC([waddnstr], [], [AC_MSG_ERROR([waddnstr() function not found.])])
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master