Commit Graph

6 Commits

Author SHA1 Message Date
Fredrik Fornwall 51c7760090 Drop need of setting TERMUX_PKG_FOLDERNAME
Instead figure out the top level source folder ourselves.
2017-09-20 00:48:04 +02:00
Fredrik Fornwall d30c926ca3 bvi: -Werror=implicit-function-declaration 2017-07-07 09:13:34 +02:00
ElTopo 35aecce3a3 add new package: redir (#772)
* add bvi package

* add new package: cgdb

* add gdb in cgdb's TERMUX_PKG_DEPENDS

* add new package: redir

* bvi package revision 1: fix column number issue with clang (gcc does not seem to have this issue)
bvi (compiled with clang) incorrectly displayed only 12 bytes for each line on a 80-column terminal (instead of 16 bytes normally). command :set cm=## also had similar problems.
I found the issue was caused by the following statements:
       sprintf(addr_form,  "%%0%dllX  ", AnzAdd);
       AnzAdd = sprintf(tmp, addr_form, block_begin);

	   ('block_begin''s data type is off_t)
	   gcc automatically typecasts 'block_begin' from off_t to loff_t,
	   on the otherhand, clang takes address of 'block_begin' and uses
	   it as loff_t thus writes some garbage value in 'tmp' string.
2017-02-20 22:14:52 +01:00
Fredrik Fornwall a98feb2337 bvi: Add patch to avoid hard links 2017-01-25 01:43:34 +01:00
Fredrik Fornwall afaa9e8b84 bvi: Add source checksum 2017-01-25 01:39:15 +01:00
ElTopo fad0fde667 add bvi package (#656) 2017-01-25 01:36:06 +01:00