Advertisement
Guest User

mirall mac 10.8

a guest
Mar 7th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Determining if the Q_WS_X11 exist failed with the following output:
  2. Change Dir: /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:/usr/bin/make "cmTryCompileExec427553419/fast"
  5. /usr/bin/make -f CMakeFiles/cmTryCompileExec427553419.dir/build.make CMakeFiles/cmTryCompileExec427553419.dir/build
  6. /opt/local/bin/cmake -E cmake_progress_report /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CMakeFiles 1
  7. Building CXX object CMakeFiles/cmTryCompileExec427553419.dir/CheckSymbolExists.cxx.o
  8. /usr/bin/c++    -I/opt/local/include    -o CMakeFiles/cmTryCompileExec427553419.dir/CheckSymbolExists.cxx.o -c /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  9. /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: use of undeclared identifier 'Q_WS_X11'
  10.   return ((int*)(&Q_WS_X11))[argc];
  11.                   ^
  12. 1 error generated.
  13. make[1]: *** [CMakeFiles/cmTryCompileExec427553419.dir/CheckSymbolExists.cxx.o] Error 1
  14. make: *** [cmTryCompileExec427553419/fast] Error 2
  15.  
  16. File /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  17. /* */
  18. #include <QtCore/qglobal.h>
  19.  
  20. int main(int argc, char** argv)
  21. {
  22.   (void)argv;
  23. #ifndef Q_WS_X11
  24.   return ((int*)(&Q_WS_X11))[argc];
  25. #else
  26.   (void)argc;
  27.   return 0;
  28. #endif
  29. }
  30.  
  31. Determining if the Q_WS_WIN exist failed with the following output:
  32. Change Dir: /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp
  33.  
  34. Run Build Command:/usr/bin/make "cmTryCompileExec346703732/fast"
  35. /usr/bin/make -f CMakeFiles/cmTryCompileExec346703732.dir/build.make CMakeFiles/cmTryCompileExec346703732.dir/build
  36. /opt/local/bin/cmake -E cmake_progress_report /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CMakeFiles 1
  37. Building CXX object CMakeFiles/cmTryCompileExec346703732.dir/CheckSymbolExists.cxx.o
  38. /usr/bin/c++    -I/opt/local/include    -o CMakeFiles/cmTryCompileExec346703732.dir/CheckSymbolExists.cxx.o -c /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  39. /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: use of undeclared identifier 'Q_WS_WIN'
  40.   return ((int*)(&Q_WS_WIN))[argc];
  41.                   ^
  42. 1 error generated.
  43. make[1]: *** [CMakeFiles/cmTryCompileExec346703732.dir/CheckSymbolExists.cxx.o] Error 1
  44. make: *** [cmTryCompileExec346703732/fast] Error 2
  45.  
  46. File /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  47. /* */
  48. #include <QtCore/qglobal.h>
  49.  
  50. int main(int argc, char** argv)
  51. {
  52.   (void)argv;
  53. #ifndef Q_WS_WIN
  54.   return ((int*)(&Q_WS_WIN))[argc];
  55. #else
  56.   (void)argc;
  57.   return 0;
  58. #endif
  59. }
  60.  
  61. Determining if the Q_WS_QWS exist failed with the following output:
  62. Change Dir: /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp
  63.  
  64. Run Build Command:/usr/bin/make "cmTryCompileExec1961146430/fast"
  65. /usr/bin/make -f CMakeFiles/cmTryCompileExec1961146430.dir/build.make CMakeFiles/cmTryCompileExec1961146430.dir/build
  66. /opt/local/bin/cmake -E cmake_progress_report /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CMakeFiles 1
  67. Building CXX object CMakeFiles/cmTryCompileExec1961146430.dir/CheckSymbolExists.cxx.o
  68. /usr/bin/c++    -I/opt/local/include    -o CMakeFiles/cmTryCompileExec1961146430.dir/CheckSymbolExists.cxx.o -c /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  69. /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: use of undeclared identifier 'Q_WS_QWS'
  70.   return ((int*)(&Q_WS_QWS))[argc];
  71.                   ^
  72. 1 error generated.
  73. make[1]: *** [CMakeFiles/cmTryCompileExec1961146430.dir/CheckSymbolExists.cxx.o] Error 1
  74. make: *** [cmTryCompileExec1961146430/fast] Error 2
  75.  
  76. File /Users/me/cloud/mirall-build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  77. /* */
  78. #include <QtCore/qglobal.h>
  79.  
  80. int main(int argc, char** argv)
  81. {
  82.   (void)argv;
  83. #ifndef Q_WS_QWS
  84.   return ((int*)(&Q_WS_QWS))[argc];
  85. #else
  86.   (void)argc;
  87.   return 0;
  88. #endif
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement