summaryrefslogtreecommitdiff
path: root/package/fbterm
AgeCommit message (Collapse)Author
2017-01-29package/fbterm: Fix building against libiconvBernd Kuhls
Fixes http://autobuild.buildroot.net/results/d5d/d5d9705eea16f07848a313d9c83f491569734c5d/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-09-08package/fbterm: fix download siteJulien BOIBESSOT
fbterm-1.7.0.tar.gz is no more accessible from http://fbterm.googlecode.com/files Signed-off-by: Julien BOIBESSOT <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-08-14package/fbterm: fix C++11 compliance with gcc-6Yann E. MORIN
gcc-6 has enabled more warnings by default, and turned some existing warnings into errors. Fixes (all on arc or arm): http://autobuild.buildroot.org/results/8c4/8c4a6cf492bccf4e1b99897bd9658e21b89b31ab/ http://autobuild.buildroot.org/results/875/875a9deb15d47d348bb53dafdbb7ed2f2bbd3da8/ http://autobuild.buildroot.org/results/af4/af4935f0ad2054b7dc2443e2d126fe8e50996f66/ [...] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-06-15fbterm: uses fork(), needs mmuPeter Korsgaard
Fixes: http://autobuild.buildroot.org/results/7d7/7d7081e7ce6e2be71b8df3b6213142c5ceeeccce/ http://autobuild.buildroot.org/results/54c/54cc2f443eddc1459b2006683f001d473ba65924/ And at the same time, cleanup the 'depends on' lines. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-02-19fbterm: fix musl compile (missing string.h include)Peter Seiderer
Fixes [1]: mouse.cpp: In function 's32 open_gpm(Gpm_Connect*)': mouse.cpp:58:37: error: 'memset' was not declared in this scope memset((s8 *)&addr, 0, sizeof(addr)); ^ mouse.cpp:60:64: error: 'strncpy' was not declared in this scope strncpy(addr.sun_path, GPM_NODE_CTL, sizeof(addr.sun_path) - 1); in case BR2_PACKAGE_GPM is defined. Add proper gpm dependency and configure option too. [1] http://autobuild.buildroot.net/results/a60/a602d61e68f662217ad868de79711a8ea892a3a9 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-10-10fbterm: fix musl compilePeter Seiderer
- add missing include, fixes: fbio.cpp:33:8: error: ‘fd_set’ does not name a type static fd_set fds; improxy.cpp:439:3: error: ‘fd_set’ was not declared in this scope - add missing WAIT_ANY define, fixes: fbterm.cpp: In member function ‘void FbTerm::processSignal(u32)’: fbterm.cpp:212:22: error: ‘WAIT_ANY’ was not declared in this scope s32 pid = waitpid(WAIT_ANY, 0, WNOHANG); Fixes: http://autobuild.buildroot.net/results/ab2/ab2334700b44bac233994b76f2acf1795f0 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-05-11fbterm: fix linking issue when static linking and a toolchain with threadsPeter Korsgaard
Fixes: http://autobuild.buildroot.net/results/899/899eb7e36dc31b7dcb51c0dd23d91965111d22c4/ http://autobuild.buildroot.net/results/43a/43a34d8b64f536caa579709508bb5e00633ba6e7/ http://autobuild.buildroot.net/results/f34/f343d015b127f29d614e7ea38b173d3a5c270d84/ http://autobuild.buildroot.net/results/da8/da88f40dfc51aea122c146e5bfee19b031cfaab6/ And many more. Fontconfig uses pthreads if available, but fbterm forgets to link with it breaking static builds. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-04-19package/fbterm: add hashBernd Kuhls
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2013-10-14Config.in files: unify comments of toolchain option dependenciesThomas De Schampheleire
This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2013-06-28fbterm: define licenseGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-06-06Normalize separator size to 80Alexandre Belloni
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-07-17all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-05-16package: add fbterm, a framebuffer-based terminal emulatorDimitry Golubovsky
[Peter: fix dependencies / white space] Signed-off-by: Dmitry <golubovsky@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>