Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.67 KB | None | 0 0
  1. root@kali:~/Tools/vnc/vnc-4_1_1-unixsrc/unix# make
  2. make[1]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common'
  3. make[2]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/zlib'
  4. make[2]: Nothing to be done for 'all'.
  5. make[2]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/zlib'
  6. make[2]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/rdr'
  7. make[2]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/rdr'
  8. make[2]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/network'
  9. c++ -DX_DISPLAY_MISSING=1 -I.. -DVNC_SOCKLEN_T=socklen_t -O2 -Wall -c TcpSocket.cxx
  10. rm -f libnetwork.a
  11. ar cq libnetwork.a TcpSocket.o
  12. ranlib libnetwork.a
  13. make[2]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/network'
  14. make[2]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/Xregion'
  15. gcc -DX_DISPLAY_MISSING=1 -O2 -Wall -c Region.c
  16. rm -f libXregion.a
  17. ar cq libXregion.a Region.o
  18. ranlib libXregion.a
  19. make[2]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/Xregion'
  20. make[2]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/rfb'
  21. gcc -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c d3des.c
  22. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Blacklist.cxx
  23. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CConnection.cxx
  24. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CMsgHandler.cxx
  25. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CMsgReader.cxx
  26. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CMsgReaderV3.cxx
  27. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CMsgWriter.cxx
  28. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CMsgWriterV3.cxx
  29. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c CSecurityVncAuth.cxx
  30. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c ComparingUpdateTracker.cxx
  31. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Configuration.cxx
  32. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c ConnParams.cxx
  33. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Cursor.cxx
  34. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Decoder.cxx
  35. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Encoder.cxx
  36. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c HTTPServer.cxx
  37. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c HextileDecoder.cxx
  38. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c HextileEncoder.cxx
  39. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c KeyRemapper.cxx
  40. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c LogWriter.cxx
  41. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Logger.cxx
  42. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Logger_file.cxx
  43. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Logger_stdio.cxx
  44. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Password.cxx
  45. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c PixelBuffer.cxx
  46. PixelBuffer.cxx: In destructor ‘virtual rfb::ManagedPixelBuffer::~ManagedPixelBuffer()’:
  47. PixelBuffer.cxx:272:42: warning: deleting object of abstract class type ‘rfb::ColourMap’ which has non-virtual destructor will cause undefined behavior [-Wdelete-non-virtual-dtor]
  48. if (colourmap && own_colourmap) delete colourmap;
  49. ^~~~~~~~~
  50. PixelBuffer.cxx: In member function ‘virtual void rfb::ManagedPixelBuffer::setColourMap(rfb::ColourMap*, bool)’:
  51. PixelBuffer.cxx:288:42: warning: deleting object of abstract class type ‘rfb::ColourMap’ which has non-virtual destructor will cause undefined behavior [-Wdelete-non-virtual-dtor]
  52. if (colourmap && own_colourmap) delete colourmap;
  53. ^~~~~~~~~
  54. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c PixelFormat.cxx
  55. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c RREEncoder.cxx
  56. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c RREDecoder.cxx
  57. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c RawDecoder.cxx
  58. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c RawEncoder.cxx
  59. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Region.cxx
  60. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SConnection.cxx
  61. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SMsgHandler.cxx
  62. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SMsgReader.cxx
  63. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SMsgReaderV3.cxx
  64. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SMsgWriter.cxx
  65. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SMsgWriterV3.cxx
  66. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c ServerCore.cxx
  67. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SSecurityFactoryStandard.cxx
  68. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c SSecurityVncAuth.cxx
  69. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c Timer.cxx
  70. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c TransImageGetter.cxx
  71. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c UpdateTracker.cxx
  72. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c VNCSConnectionST.cxx
  73. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c VNCServerST.cxx
  74. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c ZRLEEncoder.cxx
  75. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c ZRLEDecoder.cxx
  76. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c encodings.cxx
  77. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c secTypes.cxx
  78. c++ -DX_DISPLAY_MISSING=1 -I.. -DHAVE_VSNPRINTF -O2 -Wall -c util.cxx
  79. rm -f librfb.a
  80. ar cq librfb.a d3des.o Blacklist.o CConnection.o CMsgHandler.o CMsgReader.o CMsgReaderV3.o CMsgWriter.o CMsgWriterV3.o CSecurityVncAuth.o ComparingUpdateTracker.o Configuration.o ConnParams.o Cursor.o Decoder.o Encoder.o HTTPServer.o HextileDecoder.o HextileEncoder.o KeyRemapper.o LogWriter.o Logger.o Logger_file.o Logger_stdio.o Password.o PixelBuffer.o PixelFormat.o RREEncoder.o RREDecoder.o RawDecoder.o RawEncoder.o Region.o SConnection.o SMsgHandler.o SMsgReader.o SMsgReaderV3.o SMsgWriter.o SMsgWriterV3.o ServerCore.o SSecurityFactoryStandard.o SSecurityVncAuth.o Timer.o TransImageGetter.o UpdateTracker.o VNCSConnectionST.o VNCServerST.o ZRLEEncoder.o ZRLEDecoder.o encodings.o secTypes.o util.o
  81. ranlib librfb.a
  82. make[2]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common/rfb'
  83. make[1]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/common'
  84. make[1]: Entering directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/unix/tx'
  85. c++ -DX_DISPLAY_MISSING=1 -I../../common -O2 -Wall -c TXWindow.cxx
  86. TXWindow.cxx: In static member function ‘static void TXWindow::init(Display*, const char*)’:
  87. TXWindow.cxx:93:76: error: narrowing conversion of ‘128’ from ‘int’ to ‘char’ inside { } [-Wnarrowing]
  88. static char tickBits[] = { 0x80, 0xc0, 0xe2, 0x76, 0x3e, 0x1c, 0x08, 0x00};
  89. ^
  90. TXWindow.cxx:93:76: error: narrowing conversion of ‘192’ from ‘int’ to ‘char’ inside { } [-Wnarrowing]
  91. TXWindow.cxx:93:76: error: narrowing conversion of ‘226’ from ‘int’ to ‘char’ inside { } [-Wnarrowing]
  92. Makefile:55: recipe for target 'TXWindow.o' failed
  93. make[1]: *** [TXWindow.o] Error 1
  94. make[1]: Leaving directory '/root/Tools/vnc/vnc-4_1_1-unixsrc/unix/tx'
  95. Makefile:10: recipe for target 'all' failed
  96. make: *** [all] Error 1
  97. root@kali:~/Tools/vnc/vnc-4_1_1-unixsrc/unix#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement