Advertisement
rotrevrep

Untitled

Aug 21st, 2014
674
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.63 KB | None | 0 0
  1. make all-recursive
  2. make[1]: Entering directory `/home/yannick/Documents/libgit2-glib'
  3. Making all in libgit2-glib
  4. make[2]: Entering directory `/home/yannick/Documents/libgit2-glib/libgit2-glib'
  5. make all-am
  6. make[3]: Entering directory `/home/yannick/Documents/libgit2-glib/libgit2-glib'
  7. CC ggit-cherry-pick-options.lo
  8. In file included from ggit-cherry-pick-options.c:1:0:
  9. ggit-cherry-pick-options.h:56:1: error: unknown type name 'git_cherry_pick_options'
  10. const git_cherry_pick_options *
  11. ^
  12. ggit-cherry-pick-options.c:10:2: error: unknown type name 'git_cherry_pick_options'
  13. git_cherry_pick_options options;
  14. ^
  15. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_set_property':
  16. ggit-cherry-pick-options.c:50:22: error: request for member 'mainline' in something not a structure or union
  17. self->priv->options.mainline = g_value_get_uint (value);
  18. ^
  19. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_get_property':
  20. ggit-cherry-pick-options.c:77:47: error: request for member 'mainline' in something not a structure or union
  21. g_value_set_uint (value, self->priv->options.mainline);
  22. ^
  23. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_class_init':
  24. ggit-cherry-pick-options.c:95:2: error: unknown type name 'git_cherry_pick_options'
  25. git_cherry_pick_options defopts = GIT_CHERRY_PICK_OPTIONS_INIT;
  26. ^
  27. ggit-cherry-pick-options.c:95:36: error: 'GIT_CHERRY_PICK_OPTIONS_INIT' undeclared (first use in this function)
  28. git_cherry_pick_options defopts = GIT_CHERRY_PICK_OPTIONS_INIT;
  29. ^
  30. ggit-cherry-pick-options.c:95:36: note: each undeclared identifier is reported only once for each function it appears in
  31. ggit-cherry-pick-options.c:111:61: error: request for member 'mainline' in something not a structure or union
  32. defopts.mainline,
  33. ^
  34. ggit-cherry-pick-options.c:95:26: warning: variable 'defopts' set but not used [-Wunused-but-set-variable]
  35. git_cherry_pick_options defopts = GIT_CHERRY_PICK_OPTIONS_INIT;
  36. ^
  37. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_init':
  38. ggit-cherry-pick-options.c:131:2: error: implicit declaration of function 'git_cherry_pick_init_options' [-Werror=implicit-function-declaration]
  39. git_cherry_pick_init_options (&self->priv->options, GIT_CHERRY_PICK_OPTIONS_VERSION);
  40. ^
  41. ggit-cherry-pick-options.c:131:2: warning: nested extern declaration of 'git_cherry_pick_init_options' [-Wnested-externs]
  42. ggit-cherry-pick-options.c:131:54: error: 'GIT_CHERRY_PICK_OPTIONS_VERSION' undeclared (first use in this function)
  43. git_cherry_pick_init_options (&self->priv->options, GIT_CHERRY_PICK_OPTIONS_VERSION);
  44. ^
  45. ggit-cherry-pick-options.c: At top level:
  46. ggit-cherry-pick-options.c:148:1: error: unknown type name 'git_cherry_pick_options'
  47. const git_cherry_pick_options *
  48. ^
  49. ggit-cherry-pick-options.c: In function '_ggit_cherry_pick_options_get_cherry_pick_options':
  50. ggit-cherry-pick-options.c:156:26: error: request for member 'checkout_opts' in something not a structure or union
  51. options->priv->options.checkout_opts =
  52. ^
  53. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_get_mainline':
  54. ggit-cherry-pick-options.c:182:31: error: request for member 'mainline' in something not a structure or union
  55. return options->priv->options.mainline;
  56. ^
  57. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_set_mainline':
  58. ggit-cherry-pick-options.c:199:24: error: request for member 'mainline' in something not a structure or union
  59. options->priv->options.mainline = mainline;
  60. ^
  61. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_set_checkout_options':
  62. ggit-cherry-pick-options.c:240:53: error: request for member 'checkout_opts' in something not a structure or union
  63. git_checkout_init_options (&options->priv->options.checkout_opts, GIT_CHECKOUT_OPTIONS_VERSION);
  64. ^
  65. ggit-cherry-pick-options.c:246:25: error: request for member 'checkout_opts' in something not a structure or union
  66. options->priv->options.checkout_opts = *_ggit_checkout_options_get_checkout_options (options->priv->checkout_options);
  67. ^
  68. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_set_merge_options':
  69. ggit-cherry-pick-options.c:289:50: error: request for member 'merge_opts' in something not a structure or union
  70. git_merge_init_options (&options->priv->options.merge_opts, GIT_MERGE_OPTIONS_VERSION);
  71. ^
  72. ggit-cherry-pick-options.c:295:25: error: request for member 'merge_opts' in something not a structure or union
  73. options->priv->options.merge_opts = *_ggit_merge_options_get_merge_options (options->priv->merge_options);
  74. ^
  75. ggit-cherry-pick-options.c: In function 'ggit_cherry_pick_options_get_mainline':
  76. ggit-cherry-pick-options.c:183:1: warning: control reaches end of non-void function [-Wreturn-type]
  77. }
  78. ^
  79. cc1: some warnings being treated as errors
  80. make[3]: *** [ggit-cherry-pick-options.lo] Error 1
  81. make[3]: Leaving directory `/home/yannick/Documents/libgit2-glib/libgit2-glib'
  82. make[2]: *** [all] Error 2
  83. make[2]: Leaving directory `/home/yannick/Documents/libgit2-glib/libgit2-glib'
  84. make[1]: *** [all-recursive] Error 1
  85. make[1]: Leaving directory `/home/yannick/Documents/libgit2-glib'
  86. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement