here is the log Frank
# Log file generated by
#
#   './configure '
#

***** Checking environment *****
Determined build machine: linux.amd64, target machine: linux.amd64


***** Checking kBuild *****
found


***** Checking gcc *****
found version 4.9.3


***** Checking Open Watcom *****
found version 1.9


***** Checking iasl *****
found version 20140214


***** Checking xslt *****
found


***** Checking mkisofs *****
found genisoimage 1.1.11 (Linux)


***** Checking pthread *****
compiling the following source file:
#include <cstdio>
#include <pthread.h>
extern "C" int main(void)
{
  pthread_mutex_t mutex;
  if (pthread_mutex_init(&mutex, NULL)) {
    printf("pthread_mutex_init() failed\n");
    return 1;
  }
  if (pthread_mutex_lock(&mutex)) {
    printf("pthread_mutex_lock() failed\n");
    return 1;
  }
  if (pthread_mutex_unlock(&mutex)) {
    printf("pthread_mutex_unlock() failed\n");
    return 1;
  }
  printf("found, OK.\n");
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-lpthread"
executing the binary
found, OK.


***** Checking libxml2 *****
compiling the following source file:
#include <cstdio>
#include <libxml/xmlversion.h>
extern "C" int main(void)
{
  printf("found version %s", LIBXML_DOTTED_VERSION);
#if LIBXML_VERSION >= 20626
  printf(", OK.\n");
  return 0;
#else
  printf(", expected version 2.6.26 or higher\n");
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-lxml2   -lpthread -I/usr/include/libxml2"
executing the binary
found version 2.9.1, OK.


***** Checking libIDL *****
found version 0.8.14


***** Checking ssl *****
compiling the following source file:
#include <cstdio>
#include <openssl/opensslv.h>
#include <openssl/ssl.h>
extern "C" int main(void)
{
  printf("found version %s", OPENSSL_VERSION_TEXT);
  SSL_library_init();
#if OPENSSL_VERSION_NUMBER >= 0x00908000
  printf(", OK.\n");
  return 0;
#else
  printf(", expected version 0.9.8 or higher\n");
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc " -lssl -lcrypto"
executing the binary
found version OpenSSL 1.0.1f 6 Jan 2014, OK.


***** Checking libcurl *****
compiling the following source file:
#include <cstdio>
#include <curl/curl.h>
extern "C" int main(void)
{
  printf("found version %s", LIBCURL_VERSION);
#if 10000*LIBCURL_VERSION_MAJOR + 100*LIBCURL_VERSION_MINOR + LIBCURL_VERSION_PATCH >= 71901
  printf(", OK.\n");
  return 0;
#else
  printf(", expected version 7.19.1 or higher\n");
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-lcurl "
executing the binary
found version 7.35.0, OK.


***** Checking libvpx *****
compiling the following source file:
#include <cstdio>
#include <vpx/vpx_codec.h>
extern "C" int main(void)
{
  int version = vpx_codec_version();
  int verMajor = VPX_VERSION_MAJOR(version);
  int verMinor = VPX_VERSION_MINOR(version);
  int verPatch = VPX_VERSION_PATCH(version);
  printf("found version %d.%d.%d", verMajor, verMinor, verPatch);
  if (   verMajor == 1 && verMinor >= 0
      || verMajor == 0 && verMinor == 9 && verPatch >= 5)
  {
      printf(", OK.\n");
      return 0;
  }
  else
  {
      printf(", expected version 0.9.5 or higher\n");
      return 1;
   }
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-lvpx -lm   "
/trunk/.tmp_src.cc: In function 'int main()':
/trunk/.tmp_src.cc:10:24: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
   if (   verMajor == 1 && verMinor >= 0
                        ^
executing the binary
found version 1.3.0, OK.


***** Checking zlib *****
compiling the following source file:
#include <cstdio>
#include <zlib.h>
extern "C" int main(void)
{
  printf("found version %s", ZLIB_VERSION);
#if ZLIB_VERNUM >= 0x1210
  printf(", OK.\n");
  return 0;
#else
  printf(", expected version 1.2.1 or higher\n");
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-lz "
executing the binary
found version 1.2.8, OK.


***** Checking libpng *****
compiling the following source file:
#include <cstdio>
#include <png.h>
extern "C" int main(void)
{
  printf("found version %s", PNG_LIBPNG_VER_STRING);
#if PNG_LIBPNG_VER >= 10205
  printf(", OK.\n");
  return 0;
#else
  printf(", expected version 1.2.5 or higher\n");
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-lpng "
executing the binary
found version 1.2.50, OK.


***** Checking SDL *****
compiling the following source file:
#include <cstdio>
#include <SDL.h>
#include <SDL_main.h>
#undef main
extern "C" int main(int argc, char** argv)
{
  printf("found version %d.%d.%d",
         SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL);
#if SDL_VERSION_ATLEAST(1,2,7)
  printf(", OK.\n");
  return 0;
#else
  printf(", expected version 1.2.7 or higher\n");
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib/x86_64-linux-gnu -lSDL  -I/usr/include/SDL "
executing the binary
found version 1.2.15, OK.


***** Checking X libraries *****
compiling the following source file:
#include <cstdio>
#include <X11/Xlib.h>
extern "C" int main(void)
{
  Display *dpy;
  int scrn_num;
  Screen *scrn;
  Window win;

  dpy      = XOpenDisplay(NULL);
  scrn_num = DefaultScreen(dpy);
  scrn     = ScreenOfDisplay(dpy, scrn_num);
  win      = XCreateWindow(dpy, RootWindowOfScreen(scrn), 0, 0, 100, 100,
                           0, 16, InputOutput, CopyFromParent, 0, NULL);
  XDestroyWindow(dpy, win);
  XCloseDisplay(dpy);
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -I/usr/local/include"
found


***** Checking Xcursor *****
compiling the following source file:
#include <cstdio>
#include <X11/Xlib.h>
#include <X11/Xcursor/Xcursor.h>
extern "C" int main(void)
{
  XcursorImage *cursor = XcursorImageCreate (10, 10);
  XcursorImageDestroy(cursor);
  return 0;
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXcursor -I/usr/local/include"
found


***** Checking Xinerama *****
compiling the following source file:
#include <X11/Xlib.h>
#include <X11/extensions/Xinerama.h>
extern "C" int main(void)
{
  Display *dpy;
  Bool flag;
  dpy = XOpenDisplay(NULL);
  if (dpy)
  {
    flag = XineramaIsActive(dpy);
    XCloseDisplay(dpy);
  }
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXinerama -I/usr/local/include"
/trunk/.tmp_src.cc: In function 'int main()':
/trunk/.tmp_src.cc:6:8: warning: variable 'flag' set but not used [-Wunused-but-set-variable]
   Bool flag;
        ^
found


***** Checking Xrandr *****
compiling the following source file:
#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>
extern "C" int main(void)
{
  Display *dpy;
  Bool flag;
  int major, minor;
  dpy = XOpenDisplay(NULL);
  if (dpy)
  {
    flag = XRRQueryVersion(dpy, &major, &minor);
    XCloseDisplay(dpy);
  }
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXrandr -I/usr/local/include"
/trunk/.tmp_src.cc: In function 'int main()':
/trunk/.tmp_src.cc:6:8: warning: variable 'flag' set but not used [-Wunused-but-set-variable]
   Bool flag;
        ^
found


***** Checking Xmu *****
compiling the following source file:
#include <cstdio>
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xmu/StdCmap.h>
extern "C" int main(void)
{
  Display *dpy;
  int scrn_num;
  Screen *scrn;

  dpy = XOpenDisplay(NULL);
  if (dpy)
  {
    scrn_num = DefaultScreen(dpy);
    scrn     = ScreenOfDisplay(dpy, scrn_num);
    Status status = XmuLookupStandardColormap(dpy, RootWindowOfScreen(scrn), 0,
                    24, XA_RGB_DEFAULT_MAP, False, True);
    printf("Status = %x\n", status);
    XCloseDisplay(dpy);
  }
  return 0;
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXmu -I/usr/local/include"
found


***** Checking Mesa / GLU *****
compiling the following source file:
#include <cstdio>
#include <X11/Xlib.h>
#include <GL/glx.h>
#include <GL/glu.h>
extern "C" int main(void)
{
  Display *dpy;
  int major, minor;

  dpy = XOpenDisplay(NULL);
  if (dpy)
  {
    Bool glx_version = glXQueryVersion(dpy, &major, &minor);
    XCloseDisplay(dpy);
    if (glx_version)
    {
      printf("found version %u.%u, OK.\n", major, minor);
      return 0;
    }
  }
  printf("found (inactive), OK.\n");
  return 0;
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lGL -I/usr/local/include"
executing the binary
found version 1.4, OK.


***** Checking Qt5 *****
(Qt5 from pkg-config)
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib/x86_64-linux-gnu -lQt5Core   -lpthread -I/usr/include/qt5/QtCore -I/usr/include/qt5  "
executing the binary (LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu)


(Qt5 from '/usr/lib/qt5')
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib/qt5/lib -lQt5CoreVBox -lpthread -I/usr/lib/qt5/include -I/usr/lib/qt5/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib/qt5/lib -lQt5Core -lpthread -I/usr/lib/qt5/include -I/usr/lib/qt5/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


(Qt5 from '/usr/share/qt5')
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/share/qt5/lib -lQt5CoreVBox -lpthread -I/usr/share/qt5/include -I/usr/share/qt5/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/share/qt5/lib -lQt5Core -lpthread -I/usr/share/qt5/include -I/usr/share/qt5/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


(Qt5 from '/usr/lib64/qt5')
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib64/qt5/lib -lQt5CoreVBox -lpthread -I/usr/lib64/qt5/include -I/usr/lib64/qt5/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib64/qt5/lib -lQt5Core -lpthread -I/usr/lib64/qt5/include -I/usr/lib64/qt5/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


(Qt5 from '/usr')
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib -lQt5CoreVBox -lpthread -I/usr/include -I/usr/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/lib -lQt5Core -lpthread -I/usr/include -I/usr/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


(Qt5 from '/usr/local')
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/local/lib -lQt5CoreVBox -lpthread -I/usr/local/include -I/usr/local/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/usr/local/lib -lQt5Core -lpthread -I/usr/local/include -I/usr/local/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


(Qt5 from '/trunk/tools/linux.amd64/qt/v5.*')
compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/trunk/tools/linux.amd64/qt/v5.*/lib -lQt5CoreVBox -lpthread -I/trunk/tools/linux.amd64/qt/v5.*/include -I/trunk/tools/linux.amd64/qt/v5.*/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


compiling the following source file:
#include <QtGlobal>
extern "C" int main(void)
{
#if QT_VERSION >= 0x050302
  return 0;
#else
  return 1;
#endif
}
using the following command line:
g++  -fPIC -g -O -Wall -o /trunk/.tmp_out /trunk/.tmp_src.cc "-L/trunk/tools/linux.amd64/qt/v5.*/lib -lQt5Core -lpthread -I/trunk/tools/linux.amd64/qt/v5.*/include -I/trunk/tools/linux.amd64/qt/v5.*/include/QtCore -DQT_SHARED"
/trunk/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
 #include <QtGlobal>
                    ^
compilation terminated.


** qt5 not found!

_______________________________________________
vbox-dev mailing list
vbox-dev@virtualbox.org
https://www.virtualbox.org/mailman/listinfo/vbox-dev

Reply via email to