Advertisement
Guest User

Untitled

a guest
Jun 14th, 2015
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. [arch@arch Downloads]$ git clone https://github.com/kodi-pvr/pvr.demo
  2. Clonar em 'pvr.demo'...
  3. remote: Counting objects: 387, done.
  4. remote: Total 387 (delta 0), reused 0 (delta 0), pack-reused 387
  5. Receiving objects: 100% (387/387), 96.81 KiB | 0 bytes/s, done.
  6. Resolvendo deltas: 100% (178/178), done.
  7. Checking connectivity... terminado.
  8. [arch@arch Downloads]$ cd pvr.demo
  9. [arch@arch pvr.demo]$ cmake -DCMAKE_INSTALL_PREFIX=/usr
  10. -- The C compiler identification is GNU 5.1.0
  11. -- The CXX compiler identification is GNU 5.1.0
  12. -- Check for working C compiler: /usr/bin/cc
  13. -- Check for working C compiler: /usr/bin/cc -- works
  14. -- Detecting C compiler ABI info
  15. -- Detecting C compiler ABI info - done
  16. -- Detecting C compile features
  17. -- Detecting C compile features - done
  18. -- Check for working CXX compiler: /usr/bin/c++
  19. -- Check for working CXX compiler: /usr/bin/c++ -- works
  20. -- Detecting CXX compiler ABI info
  21. -- Detecting CXX compiler ABI info - done
  22. -- Detecting CXX compile features
  23. -- Detecting CXX compile features - done
  24. -- Checking to see if CXX compiler accepts flag -flto
  25. -- Checking to see if CXX compiler accepts flag -flto - yes
  26. -- PVRDEMO_VERSION=1.10.4
  27. -- Configuring done
  28. -- Generating done
  29. -- Build files have been written to: /home/arch/Downloads/pvr.demo
  30. [arch@arch pvr.demo]$ make
  31. Scanning dependencies of target pvr.demo
  32. [ 33%] Building CXX object CMakeFiles/pvr.demo.dir/src/client.cpp.o
  33. In file included from /usr/include/kodi/libKODI_guilib.h:27:0,
  34. from /home/arch/Downloads/pvr.demo/src/client.cpp:24:
  35. /usr/include/kodi/libXBMC_addon.h:88:16: error: multiple definition of ‘enum ADDON::addon_log’
  36. typedef enum addon_log
  37. ^
  38. In file included from /home/arch/Downloads/pvr.demo/src/client.h:23:0,
  39. from /home/arch/Downloads/pvr.demo/src/client.cpp:22:
  40. /usr/local/include/kodi/libXBMC_addon.h:88:16: note: previous definition here
  41. typedef enum addon_log
  42. ^
  43. In file included from /usr/include/kodi/libKODI_guilib.h:27:0,
  44. from /home/arch/Downloads/pvr.demo/src/client.cpp:24:
  45. /usr/include/kodi/libXBMC_addon.h:94:5: error: conflicting declaration ‘typedef int ADDON::addon_log_t’
  46. } addon_log_t;
  47. ^
  48. In file included from /home/arch/Downloads/pvr.demo/src/client.h:23:0,
  49. from /home/arch/Downloads/pvr.demo/src/client.cpp:22:
  50. /usr/local/include/kodi/libXBMC_addon.h:94:5: note: previous declaration as ‘typedef enum ADDON::addon_log ADDON::addon_log_t’
  51. } addon_log_t;
  52. ^
  53. In file included from /usr/include/kodi/libKODI_guilib.h:27:0,
  54. from /home/arch/Downloads/pvr.demo/src/client.cpp:24:
  55. /usr/include/kodi/libXBMC_addon.h:96:16: error: multiple definition of ‘enum ADDON::queue_msg’
  56. typedef enum queue_msg
  57. ^
  58. In file included from /home/arch/Downloads/pvr.demo/src/client.h:23:0,
  59. from /home/arch/Downloads/pvr.demo/src/client.cpp:22:
  60. /usr/local/include/kodi/libXBMC_addon.h:96:16: note: previous definition here
  61. typedef enum queue_msg
  62. ^
  63. In file included from /usr/include/kodi/libKODI_guilib.h:27:0,
  64. from /home/arch/Downloads/pvr.demo/src/client.cpp:24:
  65. /usr/include/kodi/libXBMC_addon.h:101:5: error: conflicting declaration ‘typedef int ADDON::queue_msg_t’
  66. } queue_msg_t;
  67. ^
  68. In file included from /home/arch/Downloads/pvr.demo/src/client.h:23:0,
  69. from /home/arch/Downloads/pvr.demo/src/client.cpp:22:
  70. /usr/local/include/kodi/libXBMC_addon.h:101:5: note: previous declaration as ‘typedef enum ADDON::queue_msg ADDON::queue_msg_t’
  71. } queue_msg_t;
  72. ^
  73. In file included from /usr/include/kodi/libKODI_guilib.h:27:0,
  74. from /home/arch/Downloads/pvr.demo/src/client.cpp:24:
  75. /usr/include/kodi/libXBMC_addon.h:103:9: error: redefinition of ‘class ADDON::CHelper_libXBMC_addon’
  76. class CHelper_libXBMC_addon
  77. ^
  78. In file included from /home/arch/Downloads/pvr.demo/src/client.h:23:0,
  79. from /home/arch/Downloads/pvr.demo/src/client.cpp:22:
  80. /usr/local/include/kodi/libXBMC_addon.h:103:9: error: previous definition of ‘class ADDON::CHelper_libXBMC_addon’
  81. class CHelper_libXBMC_addon
  82. ^
  83. CMakeFiles/pvr.demo.dir/build.make:62: recipe for target 'CMakeFiles/pvr.demo.dir/src/client.cpp.o' failed
  84. make[2]: *** [CMakeFiles/pvr.demo.dir/src/client.cpp.o] Error 1
  85. CMakeFiles/Makefile2:99: recipe for target 'CMakeFiles/pvr.demo.dir/all' failed
  86. make[1]: *** [CMakeFiles/pvr.demo.dir/all] Error 2
  87. Makefile:149: recipe for target 'all' failed
  88. make: *** [all] Error 2
  89. [arch@arch pvr.demo]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement