Changeset 556 for branches/vendor/nokia/qt/current/config.tests/x11
- Timestamp:
- Feb 10, 2010, 12:52:55 AM (16 years ago)
- Location:
- branches/vendor/nokia/qt/current/config.tests/x11
- Files:
-
- 3 added
- 16 edited
-
fontconfig/fontconfig.cpp (modified) (1 diff)
-
glxfbconfig/glxfbconfig.cpp (modified) (1 diff)
-
mitshm/mitshm.cpp (modified) (1 diff)
-
notype.test (modified) (1 diff)
-
notype/notypetest.cpp (modified) (1 diff)
-
opengl/opengl.cpp (modified) (1 diff)
-
sm/sm.cpp (modified) (1 diff)
-
xcursor/xcursor.cpp (modified) (1 diff)
-
xfixes/xfixes.cpp (modified) (2 diffs)
-
xinerama/xinerama.cpp (modified) (1 diff)
-
xinput/xinput.cpp (modified) (1 diff)
-
xkb/xkb.cpp (modified) (1 diff)
-
xlib/xlib.cpp (modified) (1 diff)
-
xrandr/xrandr.cpp (modified) (1 diff)
-
xrender/xrender.cpp (modified) (1 diff)
-
xshape/xshape.cpp (modified) (2 diffs)
-
xsync (added)
-
xsync/xsync.cpp (added)
-
xsync/xsync.pro (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/vendor/nokia/qt/current/config.tests/x11/fontconfig/fontconfig.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <ft2build.h> 2 43 #include FT_FREETYPE_H -
branches/vendor/nokia/qt/current/config.tests/x11/glxfbconfig/glxfbconfig.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <GL/gl.h> 2 43 #include <GL/glx.h> -
branches/vendor/nokia/qt/current/config.tests/x11/mitshm/mitshm.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #ifdef Q_OS_HPUX 2 43 #error "MITSHM not supported on HP-UX." -
branches/vendor/nokia/qt/current/config.tests/x11/notype.test
r2 r556 32 32 33 33 if [ "$VERBOSE" = "yes" ]; then 34 make34 35 35 else 36 make>/dev/null 2>&136 >/dev/null 2>&1 37 37 fi 38 38 -
branches/vendor/nokia/qt/current/config.tests/x11/notype/notypetest.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 /* Sample program for configure to test for broken X11 headers that 2 43 confuse gcc 2.95 and better on target platforms such as Solaris. -
branches/vendor/nokia/qt/current/config.tests/x11/opengl/opengl.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <GL/gl.h> 2 43 #include <GL/glu.h> -
branches/vendor/nokia/qt/current/config.tests/x11/sm/sm.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/SM/SMlib.h> 2 43 -
branches/vendor/nokia/qt/current/config.tests/x11/xcursor/xcursor.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/Xcursor/Xcursor.h> -
branches/vendor/nokia/qt/current/config.tests/x11/xfixes/xfixes.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/extensions/Xfixes.h> … … 10 51 XFixesSelectionNotifyEvent event; 11 52 event.type = 0; 12 return 0; 53 return 0; 13 54 } 14 55 -
branches/vendor/nokia/qt/current/config.tests/x11/xinerama/xinerama.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/extensions/Xinerama.h> -
branches/vendor/nokia/qt/current/config.tests/x11/xinput/xinput.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #ifdef Q_OS_SOLARIS 2 43 #error "Not supported." -
branches/vendor/nokia/qt/current/config.tests/x11/xkb/xkb.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/XKBlib.h> -
branches/vendor/nokia/qt/current/config.tests/x11/xlib/xlib.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 -
branches/vendor/nokia/qt/current/config.tests/x11/xrandr/xrandr.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/extensions/Xrandr.h> -
branches/vendor/nokia/qt/current/config.tests/x11/xrender/xrender.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/extensions/Xrender.h> -
branches/vendor/nokia/qt/current/config.tests/x11/xshape/xshape.cpp
r2 r556 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 42 #include <X11/Xlib.h> 2 43 #include <X11/Xutil.h> … … 7 48 XShapeEvent shapeevent; 8 49 shapeevent.type = 0; 9 return 0; 50 return 0; 10 51 }
Note:
See TracChangeset
for help on using the changeset viewer.
