diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-05-11 18:49:23 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-05-11 18:49:23 +0000 |
commit | acd43c65c1b1584b0ebb7816886fd3e070776ac9 (patch) | |
tree | 5b96e3017a2d8766a367dc93aacc73fac816d781 /app-emulation/wine/files | |
parent | moved to x86 (diff) | |
download | gentoo-2-acd43c65c1b1584b0ebb7816886fd3e070776ac9.tar.gz gentoo-2-acd43c65c1b1584b0ebb7816886fd3e070776ac9.tar.bz2 gentoo-2-acd43c65c1b1584b0ebb7816886fd3e070776ac9.zip |
cleanup
Diffstat (limited to 'app-emulation/wine/files')
14 files changed, 0 insertions, 94 deletions
diff --git a/app-emulation/wine/files/digest-wine-20030115 b/app-emulation/wine/files/digest-wine-20030115 deleted file mode 100644 index d97b452b8364..000000000000 --- a/app-emulation/wine/files/digest-wine-20030115 +++ /dev/null @@ -1 +0,0 @@ -MD5 31169eae48d2d51e6771fafd1b12f8d2 Wine-20030115.tar.gz 8235786 diff --git a/app-emulation/wine/files/digest-wine-20030219 b/app-emulation/wine/files/digest-wine-20030219 deleted file mode 100644 index bcf729ee4566..000000000000 --- a/app-emulation/wine/files/digest-wine-20030219 +++ /dev/null @@ -1 +0,0 @@ -MD5 8ba1ee5b2852c8e28333e7e6df115d06 Wine-20030219.tar.gz 8314951 diff --git a/app-emulation/wine/files/digest-wine-20030318 b/app-emulation/wine/files/digest-wine-20030318 deleted file mode 100644 index d7612c0f44a6..000000000000 --- a/app-emulation/wine/files/digest-wine-20030318 +++ /dev/null @@ -1 +0,0 @@ -MD5 a4d1596fb27a9f1530c979250a4a48cd Wine-20030318.tar.gz 8378240 diff --git a/app-emulation/wine/files/digest-wine-20030408 b/app-emulation/wine/files/digest-wine-20030408 deleted file mode 100644 index a64bb9872f6f..000000000000 --- a/app-emulation/wine/files/digest-wine-20030408 +++ /dev/null @@ -1 +0,0 @@ -MD5 8c578d05d60ef627e7f2959c220f3056 Wine-20030408.tar.gz 8521264 diff --git a/app-emulation/wine/files/wine-20030115-fake_windows.tar.bz2 b/app-emulation/wine/files/wine-20030115-fake_windows.tar.bz2 Binary files differdeleted file mode 100644 index d60f11e08ee3..000000000000 --- a/app-emulation/wine/files/wine-20030115-fake_windows.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030115-misc.tar.bz2 b/app-emulation/wine/files/wine-20030115-misc.tar.bz2 Binary files differdeleted file mode 100644 index 90b963f8896c..000000000000 --- a/app-emulation/wine/files/wine-20030115-misc.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030219-fake_windows.tar.bz2 b/app-emulation/wine/files/wine-20030219-fake_windows.tar.bz2 Binary files differdeleted file mode 100644 index d60f11e08ee3..000000000000 --- a/app-emulation/wine/files/wine-20030219-fake_windows.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030219-misc.tar.bz2 b/app-emulation/wine/files/wine-20030219-misc.tar.bz2 Binary files differdeleted file mode 100644 index 90b963f8896c..000000000000 --- a/app-emulation/wine/files/wine-20030219-misc.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030318-fake_windows.tar.bz2 b/app-emulation/wine/files/wine-20030318-fake_windows.tar.bz2 Binary files differdeleted file mode 100644 index d60f11e08ee3..000000000000 --- a/app-emulation/wine/files/wine-20030318-fake_windows.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030318-misc.tar.bz2 b/app-emulation/wine/files/wine-20030318-misc.tar.bz2 Binary files differdeleted file mode 100644 index 90b963f8896c..000000000000 --- a/app-emulation/wine/files/wine-20030318-misc.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030318-xopenfont.patch b/app-emulation/wine/files/wine-20030318-xopenfont.patch deleted file mode 100644 index 7f83e11ba4e9..000000000000 --- a/app-emulation/wine/files/wine-20030318-xopenfont.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- graphics/x11drv/xfont.c.orig 2003-04-06 18:27:44.000000000 +0200 -+++ graphics/x11drv/xfont.c 2003-04-06 18:27:58.000000000 +0200 -@@ -2115,7 +2115,7 @@ - } - else lpstr = x_pattern[i]; - -- if( (x_fs = TSXLoadQueryFont(gdi_display, lpstr)) ) -+ if( (x_fs = XFONT_GetFont(lpstr)) ) - { - XFONT_SetFontMetric( fi, fr, x_fs ); - TSXFreeFont( gdi_display, x_fs ); -@@ -3239,6 +3239,33 @@ - return NULL; - } - -+static int staticXError; -+ -+static int fonterror_handler(Display *display, -+ XErrorEvent *error_evt) -+{ -+ ERR("X error %d\n", error_evt->error_code); -+ return 0; -+} -+ -+static XFontStruct * XFONT_GetFont(char *lpstr) -+{ -+ XFontStruct* x_fs; -+ void *ptr; -+ -+ wine_tsx11_lock(); -+ staticXError = FALSE; -+ ptr = XSetErrorHandler(fonterror_handler); -+ x_fs = XLoadQueryFont(gdi_display, lpstr); -+ XSync(gdi_display, False); -+ XSetErrorHandler(ptr); -+ wine_tsx11_unlock(); -+ if (staticXError) -+ return NULL; -+ else -+ return x_fs; -+} -+ - - - /* X11DRV Interface **************************************************** diff --git a/app-emulation/wine/files/wine-20030408-fake_windows.tar.bz2 b/app-emulation/wine/files/wine-20030408-fake_windows.tar.bz2 Binary files differdeleted file mode 100644 index d60f11e08ee3..000000000000 --- a/app-emulation/wine/files/wine-20030408-fake_windows.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030408-misc.tar.bz2 b/app-emulation/wine/files/wine-20030408-misc.tar.bz2 Binary files differdeleted file mode 100644 index 90b963f8896c..000000000000 --- a/app-emulation/wine/files/wine-20030408-misc.tar.bz2 +++ /dev/null diff --git a/app-emulation/wine/files/wine-20030408-xopenfont.patch b/app-emulation/wine/files/wine-20030408-xopenfont.patch deleted file mode 100644 index 7f83e11ba4e9..000000000000 --- a/app-emulation/wine/files/wine-20030408-xopenfont.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- graphics/x11drv/xfont.c.orig 2003-04-06 18:27:44.000000000 +0200 -+++ graphics/x11drv/xfont.c 2003-04-06 18:27:58.000000000 +0200 -@@ -2115,7 +2115,7 @@ - } - else lpstr = x_pattern[i]; - -- if( (x_fs = TSXLoadQueryFont(gdi_display, lpstr)) ) -+ if( (x_fs = XFONT_GetFont(lpstr)) ) - { - XFONT_SetFontMetric( fi, fr, x_fs ); - TSXFreeFont( gdi_display, x_fs ); -@@ -3239,6 +3239,33 @@ - return NULL; - } - -+static int staticXError; -+ -+static int fonterror_handler(Display *display, -+ XErrorEvent *error_evt) -+{ -+ ERR("X error %d\n", error_evt->error_code); -+ return 0; -+} -+ -+static XFontStruct * XFONT_GetFont(char *lpstr) -+{ -+ XFontStruct* x_fs; -+ void *ptr; -+ -+ wine_tsx11_lock(); -+ staticXError = FALSE; -+ ptr = XSetErrorHandler(fonterror_handler); -+ x_fs = XLoadQueryFont(gdi_display, lpstr); -+ XSync(gdi_display, False); -+ XSetErrorHandler(ptr); -+ wine_tsx11_unlock(); -+ if (staticXError) -+ return NULL; -+ else -+ return x_fs; -+} -+ - - - /* X11DRV Interface **************************************************** |