mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-09-26 03:23:46 +08:00
Compare commits
2
Commits
subpixel
...
ver-5-0-16
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
08d4ab78e5 | ||
|
|
0cda03a2eb |
@@ -44,6 +44,10 @@ which is a bugfix release with some minor enhancements of MiniGUI 5.0.x.
|
|||||||
* BUGFIXING:
|
* BUGFIXING:
|
||||||
- The desktop thread can not handle the request from other threads as soon as possible.
|
- The desktop thread can not handle the request from other threads as soon as possible.
|
||||||
- The `MSG_TIMEOUT` message can not be fired correctly under MiniGUI-Threads mode.
|
- The `MSG_TIMEOUT` message can not be fired correctly under MiniGUI-Threads mode.
|
||||||
|
- Bad subpixel rendering when background color is RGBA0000.
|
||||||
|
* TUNING:
|
||||||
|
- Tune `configure.ac` and `Makefile.am` to use the system libtool scripts.
|
||||||
|
- Do not check `pciaccess` if the target architecture is not `i386`.
|
||||||
|
|
||||||
## Version 5.0.15
|
## Version 5.0.15
|
||||||
|
|
||||||
|
|||||||
+8
-3
@@ -896,9 +896,13 @@ CheckFBCON()
|
|||||||
VIDEO_SUBDIRS="$VIDEO_SUBDIRS fbcon"
|
VIDEO_SUBDIRS="$VIDEO_SUBDIRS fbcon"
|
||||||
VIDEO_DRIVERS="$VIDEO_DRIVERS fbcon/libvideo_fbcon.la"
|
VIDEO_DRIVERS="$VIDEO_DRIVERS fbcon/libvideo_fbcon.la"
|
||||||
|
|
||||||
have_pciaccess="yes"
|
if test "x$target_cpu" = "xi386"; then
|
||||||
AC_CHECK_LIB(pciaccess, pci_system_init,
|
have_pciaccess="yes"
|
||||||
DEP_LIBS="$DEP_LIBS -lpciaccess", have_pciaccess="no")
|
AC_CHECK_LIB(pciaccess, pci_system_init,
|
||||||
|
DEP_LIBS="$DEP_LIBS -lpciaccess", have_pciaccess="no")
|
||||||
|
else
|
||||||
|
have_pciaccess="no"
|
||||||
|
fi
|
||||||
|
|
||||||
if test "x$have_pciaccess" = "xyes"; then
|
if test "x$have_pciaccess" = "xyes"; then
|
||||||
AC_DEFINE(_MGHAVE_PCIACCESS, 1,
|
AC_DEFINE(_MGHAVE_PCIACCESS, 1,
|
||||||
@@ -2762,6 +2766,7 @@ AC_MSG_NOTICE([
|
|||||||
# Main building configuration:
|
# Main building configuration:
|
||||||
|
|
||||||
## Global Features:
|
## Global Features:
|
||||||
|
* Architecture: ${target_cpu}
|
||||||
* Operating system: ${osname}
|
* Operating system: ${osname}
|
||||||
* Runtime mode: ${runtime_mode}
|
* Runtime mode: ${runtime_mode}
|
||||||
* Virtual Window: ${virtual_window}
|
* Virtual Window: ${virtual_window}
|
||||||
|
|||||||
Reference in New Issue
Block a user