Advertisement
Guest User

twf

a guest
Mar 28th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. [korobi@lenovo-arch twf-0.4]$ make
  2. make all-recursive
  3. make[1]: Entering directory '/home/korobi/Downloads/twf-0.4'
  4. Making all in src
  5. make[2]: Entering directory '/home/korobi/Downloads/twf-0.4/src'
  6. if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\" -DTWF_DATA=\""/usr/local/share/twf"\" -pthread -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/libdrm -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -rdynamic -g -O2 -MT themes.o -MD -MP -MF ".deps/themes.Tpo" -c -o themes.o themes.c; \
  7. then mv -f ".deps/themes.Tpo" ".deps/themes.Po"; else rm -f ".deps/themes.Tpo"; exit 1; fi
  8. themes.c: In function ‘get_themes’:
  9. themes.c:50:20: warning: implicit declaration of function ‘getenv’ [-Wimplicit-function-declaration]
  10. homedir = (gchar*)getenv ("HOME");
  11. ^
  12. themes.c:50:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  13. homedir = (gchar*)getenv ("HOME");
  14. ^
  15. themes.c:62:8: warning: implicit declaration of function ‘strcmp’ [-Wimplicit-function-declaration]
  16. if (strcmp(dent->d_name,"." ) == 0) continue;
  17. ^
  18. themes.c:71:66: error: ‘strcmp’ undeclared (first use in this function)
  19. list = g_list_insert_sorted(list, dent->d_name, (GCompareFunc)strcmp);
  20. ^
  21. themes.c:71:66: note: each undeclared identifier is reported only once for each function it appears in
  22. Makefile:299: recipe for target 'themes.o' failed
  23. make[2]: *** [themes.o] Error 1
  24. make[2]: Leaving directory '/home/korobi/Downloads/twf-0.4/src'
  25. Makefile:277: recipe for target 'all-recursive' failed
  26. make[1]: *** [all-recursive] Error 1
  27. make[1]: Leaving directory '/home/korobi/Downloads/twf-0.4'
  28. Makefile:206: recipe for target 'all' failed
  29. make: *** [all] Error 2
  30. [korobi@lenovo-arch twf-0.4]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement