We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get the error:
Compiling fl_i18n_example.cxx ... c++ -Wall -g -L. -Wunused -fno-exceptions -DUSE_THREADS -DUSE_GETTEXT -I/usr/local/include -I. -I/usr/include/g++ -I/usr/include -I/usr/local/include -I/usr/local/include/freetype2 -O2 -pipe -fstack-protector -isystem /usr/local/include -fno-strict-aliasing -isystem /usr/local/include -fvisibility-inlines-hidden -I/usr/local/include -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE -D_REENTRANT -c fl_i18n_example.cxx c++: warning: argument unused during compilation: '-L.' [-Wunused-command-line-argument] In file included from fl_i18n_example.cxx:3: ./fl_i18n.H:34:10: fatal error: 'config.h' file not found #include "config.h" ^~~~~~~~~~ 1 error generated. *** Error code 1
Full log is here https://poudriere.passap.ru/data/HEAD-amd64-testing/2017-08-03_12h24m00s/logs/errors/icc-examin-0.56.log
If I apply the following patch, then build succeeds:
--- fl_i18n/fl_i18n.H.orig 2017-08-03 12:43:05.703182000 +0300 +++ fl_i18n/fl_i18n.H 2017-08-03 12:43:23.617338000 +0300 @@ -31,7 +31,7 @@ #ifndef FL_I18N_H #define FL_I18N_H -#include "config.h" +#include "../config.h" #define FL_I18N_VERSION 101 #if defined(_WIN32) && !defined(__MINGW32__)
Full log is here: https://poudriere.passap.ru/data/HEAD-amd64-testing/2017-08-03_13h17m26s/logs/icc-examin-0.56.log
This is just FYI. I'm not sure what to do with this knowledge. ;-)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I get the error:
Full log is here
https://poudriere.passap.ru/data/HEAD-amd64-testing/2017-08-03_12h24m00s/logs/errors/icc-examin-0.56.log
If I apply the following patch, then build succeeds:
Full log is here: https://poudriere.passap.ru/data/HEAD-amd64-testing/2017-08-03_13h17m26s/logs/icc-examin-0.56.log
This is just FYI. I'm not sure what to do with this knowledge. ;-)
The text was updated successfully, but these errors were encountered: