VirtualBox

Ignore:
Timestamp:
Aug 27, 2009 8:57:47 AM (15 years ago)
Author:
vboxsync
Message:

crOpenGL: update wine to 1.1.27 and better fix for depthstencil surface refcounting

Location:
trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/cptable.c

    r16477 r22496  
    2727 * of the LGPL is applied is otherwise unspecified.
    2828 */
     29
     30#include "config.h"
     31#include "wine/port.h"
    2932
    3033#include <stdlib.h>
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/defaults

    r21731 r22496  
    3434# are handled automatically and do not have to be defined here. They can
    3535# still be defined if necessary to override the unicode decomposition.
     36#
     37
     38#
     39# Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
     40# other than GPL or LGPL is available it will apply instead, Sun elects to use only
     41# the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
     42# a choice of LGPL license versions is made available with the language indicating
     43# that LGPLv2 or any later version may be used, or where a choice of which version
     44# of the LGPL is applied is otherwise unspecified.
    3645#
    3746
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/loader.c

    r19678 r22496  
    5959#define environ (*_NSGetEnviron())
    6060#else
     61# ifndef _MSC_VER
    6162extern char **environ;
     63# endif
    6264#endif
    6365
     
    458460char **__wine_get_main_environment(void)
    459461{
     462#ifndef _MSC_VER
    460463    return environ;
     464#else
     465    return _environ;
     466#endif
    461467}
    462468
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/mbtowc.c

    r19678 r22496  
    2828 */
    2929
     30#include "config.h"
     31#include "wine/port.h"
     32
    3033#include <string.h>
    3134
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/string.c

    r19678 r22496  
    2727 * of the LGPL is applied is otherwise unspecified.
    2828 */
     29
     30#include "config.h"
     31#include "wine/port.h"
    2932
    3033#include <assert.h>
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/utf8.c

    r16477 r22496  
    2828 */
    2929
     30#include "config.h"
     31#include "wine/port.h"
     32
    3033#include <string.h>
    3134
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/version.c

    r21731 r22496  
    1 const char wine_build[] = "wine-1.1.26";
     1const char wine_build[] = "wine-1.1.27";
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/libWine/wctomb.c

    r16477 r22496  
    2828 */
    2929
     30#include "config.h"
     31#include "wine/port.h"
     32
    3033#include <string.h>
    3134
     
    7982                                         WCHAR wch, unsigned char ch )
    8083{
    81     if (flags & WC_NO_BEST_FIT_CHARS) return (table->cp2uni[ch] == wch);
    82     if (ch != (unsigned char)table->info.def_char) return 1;
    83     return (wch == table->info.def_unicode_char);
     84    if ((flags & WC_NO_BEST_FIT_CHARS) || ch == (unsigned char)table->info.def_char)
     85        return (table->cp2uni[ch] == wch);
     86    return 1;
    8487}
    8588
     
    272275                                         WCHAR wch, unsigned short ch )
    273276{
    274     if (ch == table->info.def_char && wch != table->info.def_unicode_char) return 0;
    275     if (flags & WC_NO_BEST_FIT_CHARS)
     277    if ((flags & WC_NO_BEST_FIT_CHARS) || ch == table->info.def_char)
    276278    {
    277279        /* check if char maps back to the same Unicode value */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette