Advertisement
Guest User

Untitled

a guest
Dec 10th, 2011
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. scott@scott-stallion:~/footnote/build$ cmake ..
  2. -- The C compiler identification is GNU
  3. -- The CXX compiler identification is GNU
  4. -- Check for working C compiler: /usr/bin/gcc
  5. -- Check for working C compiler: /usr/bin/gcc -- works
  6. -- Detecting C compiler ABI info
  7. -- Detecting C compiler ABI info - done
  8. -- Check for working CXX compiler: /usr/bin/c++
  9. -- Check for working CXX compiler: /usr/bin/c++ -- works
  10. -- Detecting CXX compiler ABI info
  11. -- Detecting CXX compiler ABI info - done
  12. -- checking for modules 'gtk+-3.0;granite;sqlheavy-0.1;gthread-2.0;gee-1.0'
  13. -- found gtk+-3.0, version 3.2.0
  14. -- found granite, version 0.1.4
  15. -- found sqlheavy-0.1, version 0.0.1
  16. -- found gthread-2.0, version 2.30.0
  17. -- found gee-1.0, version 0.6.2.1
  18. -- Found Vala: /usr/bin/valac
  19. -- checking for a minimum Vala version of 0.14.0
  20. -- found Vala, version 0.14.0
  21. -- Configuring done
  22. -- Generating done
  23. -- Build files have been written to: /home/scott/footnote/build
  24. scott@scott-stallion:~/footnote/build$ make
  25. [ 14%] Generating src/Widgets/Category.c, src/Widgets/Note.c, src/Widgets/TaggingArea.c, build/src/Config.c, src/Footnote.c
  26. /home/scott/footnote/src/Footnote.vala:72.19-72.65: error: invocation of void method not allowed as expression
  27. for (var res=db.execute ("SELECT name,id FROM 'categories'");!res.finished;res.next ()){
  28. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  29. /home/scott/footnote/src/Footnote.vala:72.15-72.65: error: var declaration not allowed with non-typed initializer
  30. for (var res=db.execute ("SELECT name,id FROM 'categories'");!res.finished;res.next ()){
  31. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  32. /home/scott/footnote/src/Footnote.vala:72.81-72.83: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
  33. for (var res=db.execute ("SELECT name,id FROM 'categories'");!res.finished;res.next ()){
  34. ^^^
  35. /home/scott/footnote/src/Footnote.vala:72.68-72.70: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
  36. for (var res=db.execute ("SELECT name,id FROM 'categories'");!res.finished;res.next ()){
  37. ^^^
  38. /home/scott/footnote/src/Footnote.vala:73.41-73.43: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
  39. new Category.from_existing (this, res.fetch_string (0), res.fetch_int (1));
  40. ^^^
  41. /home/scott/footnote/src/Footnote.vala:73.63-73.65: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
  42. new Category.from_existing (this, res.fetch_string (0), res.fetch_int (1));
  43. ^^^
  44. Compilation failed: 6 error(s), 0 warning(s)
  45. make[2]: *** [src/Widgets/Category.c] Error 1
  46. make[1]: *** [CMakeFiles/footnote.dir/all] Error 2
  47. make: *** [all] Error 2
  48. scott@scott-stallion:~/footnote/build$
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement