1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/x11-wm/obpager
Tobias Kortkamp b1c5f262f7 x11-wm/obpager: Fix build with Clang 6
src/OBPager.cc:937:19: error: non-constant-expression cannot be narrowed from type 'int' to 'char' in initializer list [-Wc++11-narrowing]
        char text[2] = { (mDesktopNum % 9) + '1', '\0' };
                         ^~~~~~~~~~~~~~~~~~~~~~~
src/OBPager.cc:937:19: note: insert an explicit cast to silence this issue
        char text[2] = { (mDesktopNum % 9) + '1', '\0' };
                         ^~~~~~~~~~~~~~~~~~~~~~~
                         static_cast<char>(     )
1 error generated.

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/obpager-1.8.log

- Make sure the build respects CXXFLAGS
2018-08-25 13:42:44 +00:00
..
files
distinfo
Makefile
pkg-descr