Blame patches/sdl1-1.2.15_pre.local.patch

1b2531
https://bugs.gentoo.org/779445
1b2531
1b2531
commit ed1030d9b6a98e06aa293d18c49da18169918b8b
1b2531
Author: orbea <orbea@riseup.net>
1b2531
Date:   Tue Mar 30 18:57:37 2021 -0700
1b2531
1b2531
    Fix the build with parallel make and slibtool.
1b2531
    
1b2531
    There is no dependency on the $(OBJECTS) files on the 'build'
1b2531
    directory which causes slibtool to fail when the directory
1b2531
    does not yet exist. GNU libtool avoids this by being slower
1b2531
    than mkdir(1).
1b2531
1b2531
diff --git a/Makefile.in b/Makefile.in
1b2531
index ab51035..90940d4 100644
1b2531
--- a/Makefile.in
1b2531
+++ b/Makefile.in
1b2531
@@ -51,7 +51,7 @@ LT_RELEASE  = @LT_RELEASE@
1b2531
 LT_REVISION = @LT_REVISION@
1b2531
 LT_LDFLAGS  = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
1b2531
 
1b2531
-all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
1b2531
+all: $(srcdir)/configure Makefile $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
1b2531
 
1b2531
 $(srcdir)/configure: $(srcdir)/configure.in
1b2531
 	@echo "Warning, configure.in is out of date"
1b2531
@@ -61,8 +61,9 @@ $(srcdir)/configure: $(srcdir)/configure.in
1b2531
 Makefile: $(srcdir)/Makefile.in
1b2531
 	$(SHELL) config.status $@
1b2531
 
1b2531
-$(objects):
1b2531
-	$(SHELL) $(auxdir)/mkinstalldirs $@
1b2531
+$(objects)/.created:
1b2531
+	$(SHELL) $(auxdir)/mkinstalldirs $(objects)
1b2531
+	touch $@
1b2531
 
1b2531
 .PHONY: all depend install install-bin install-hdrs install-lib install-data install-man uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man clean distclean dist
1b2531
 depend:
1b2531
@@ -71,6 +72,8 @@ depend:
1b2531
 
1b2531
 include $(depend)
1b2531
 
1b2531
+$(OBJECTS) $(SDLMAIN_OBJECTS): $(objects)/.created
1b2531
+
1b2531
 $(objects)/$(TARGET): $(OBJECTS)
1b2531
 	$(LIBTOOL) --mode=link $(CC) -o $@ $^ $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
1b2531
 
1b2531
@@ -88,7 +91,7 @@ install-hdrs:
1b2531
 	    $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \
1b2531
 	done
1b2531
 	$(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h
1b2531
-install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
1b2531
+install-lib: $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
1b2531
 	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)
1b2531
 	$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
1b2531
 	$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
Lucio Andrés Illanes Albornoz ed4f30
diff -ru SDL-1.2.15.orig/configure.in SDL-1.2.15/configure.in
Lucio Andrés Illanes Albornoz ed4f30
--- SDL-1.2.15.orig/configure.in	2012-01-19 07:30:05.000000000 +0100
Lucio Andrés Illanes Albornoz ed4f30
+++ SDL-1.2.15/configure.in	2019-11-08 11:00:50.134023690 +0100
Lucio Andrés Illanes Albornoz ed4f30
@@ -453,39 +453,6 @@
Lucio Andrés Illanes Albornoz ed4f30
     fi
Lucio Andrés Illanes Albornoz ed4f30
 }
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
-dnl Find the ESD includes and libraries
Lucio Andrés Illanes Albornoz ed4f30
-CheckESD()
Lucio Andrés Illanes Albornoz ed4f30
-{
Lucio Andrés Illanes Albornoz ed4f30
-    AC_ARG_ENABLE(esd,
Lucio Andrés Illanes Albornoz ed4f30
-AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
Lucio Andrés Illanes Albornoz ed4f30
-                  , enable_esd=yes)
Lucio Andrés Illanes Albornoz ed4f30
-    if test x$enable_audio = xyes -a x$enable_esd = xyes; then
Lucio Andrés Illanes Albornoz ed4f30
-        AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
Lucio Andrés Illanes Albornoz ed4f30
-        if test x$have_esd = xyes; then
Lucio Andrés Illanes Albornoz ed4f30
-            AC_ARG_ENABLE(esd-shared,
Lucio Andrés Illanes Albornoz ed4f30
-AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
Lucio Andrés Illanes Albornoz ed4f30
-                          , enable_esd_shared=yes)
Lucio Andrés Illanes Albornoz ed4f30
-            esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
Lucio Andrés Illanes Albornoz ed4f30
-
Lucio Andrés Illanes Albornoz ed4f30
-            AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
Lucio Andrés Illanes Albornoz ed4f30
-            SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
Lucio Andrés Illanes Albornoz ed4f30
-            EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
Lucio Andrés Illanes Albornoz ed4f30
-            if test x$have_loadso != xyes && \
Lucio Andrés Illanes Albornoz ed4f30
-               test x$enable_esd_shared = xyes; then
Lucio Andrés Illanes Albornoz ed4f30
-                AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
Lucio Andrés Illanes Albornoz ed4f30
-            fi
Lucio Andrés Illanes Albornoz ed4f30
-            if test x$have_loadso = xyes && \
Lucio Andrés Illanes Albornoz ed4f30
-               test x$enable_esd_shared = xyes && test x$esd_lib != x; then
Lucio Andrés Illanes Albornoz ed4f30
-                echo "-- dynamic libesd -> $esd_lib"
Lucio Andrés Illanes Albornoz ed4f30
-                AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
Lucio Andrés Illanes Albornoz ed4f30
-            else
Lucio Andrés Illanes Albornoz ed4f30
-                EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
Lucio Andrés Illanes Albornoz ed4f30
-            fi
Lucio Andrés Illanes Albornoz ed4f30
-            have_audio=yes
Lucio Andrés Illanes Albornoz ed4f30
-        fi
Lucio Andrés Illanes Albornoz ed4f30
-    fi
Lucio Andrés Illanes Albornoz ed4f30
-}
Lucio Andrés Illanes Albornoz ed4f30
-
Lucio Andrés Illanes Albornoz ed4f30
 dnl Find PulseAudio
Lucio Andrés Illanes Albornoz ed4f30
 CheckPulseAudio()
Lucio Andrés Illanes Albornoz ed4f30
 {
Lucio Andrés Illanes Albornoz ed4f30
@@ -2357,7 +2324,6 @@
Lucio Andrés Illanes Albornoz ed4f30
         CheckMME
Lucio Andrés Illanes Albornoz ed4f30
         CheckALSA
Lucio Andrés Illanes Albornoz ed4f30
         CheckARTSC
Lucio Andrés Illanes Albornoz ed4f30
-        CheckESD
Lucio Andrés Illanes Albornoz ed4f30
         CheckPulseAudio
Lucio Andrés Illanes Albornoz ed4f30
         CheckNAS
Lucio Andrés Illanes Albornoz ed4f30
         CheckX11
fa8b36
@@ -2494,6 +2460,43 @@
Lucio Andrés Illanes Albornoz ed4f30
             have_timers=yes
Lucio Andrés Illanes Albornoz ed4f30
         fi
Lucio Andrés Illanes Albornoz ed4f30
         ;;
Lucio Andrés Illanes Albornoz ed4f30
+    *-*-midipix*)
Lucio Andrés Illanes Albornoz ed4f30
+        ARCH=midipix
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+        # Set up files for the timer library
Lucio Andrés Illanes Albornoz ed4f30
+        if test x$enable_timers = xyes; then
Lucio Andrés Illanes Albornoz ed4f30
+            AC_DEFINE(SDL_TIMER_UNIX)
Lucio Andrés Illanes Albornoz ed4f30
+            SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
Lucio Andrés Illanes Albornoz ed4f30
+            have_timers=yes
Lucio Andrés Illanes Albornoz ed4f30
+        fi
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+        CheckDummyVideo
Lucio Andrés Illanes Albornoz ed4f30
+        CheckDiskAudio
Lucio Andrés Illanes Albornoz ed4f30
+        CheckWIN32
Lucio Andrés Illanes Albornoz ed4f30
+        #CheckWIN32GL
Lucio Andrés Illanes Albornoz ed4f30
+        CheckNASM
Lucio Andrés Illanes Albornoz ed4f30
+        CheckPTHREAD
Lucio Andrés Illanes Albornoz ed4f30
+        CheckClockGettime
Lucio Andrés Illanes Albornoz ed4f30
+        CheckVisibilityHidden
Lucio Andrés Illanes Albornoz ed4f30
+        CheckDLOPEN
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+        if test x$enable_audio = xyes; then
Lucio Andrés Illanes Albornoz ed4f30
+            AC_DEFINE(SDL_AUDIO_DRIVER_WAVEOUT)
Lucio Andrés Illanes Albornoz ed4f30
+            SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
Lucio Andrés Illanes Albornoz ed4f30
+            have_audio=yes
Lucio Andrés Illanes Albornoz ed4f30
+        fi
fa8b36
+        # Set up files for the cdrom library
fa8b36
+        if test x$enable_cdrom = xyes; then
fa8b36
+            $as_echo "#define SDL_CDROM_WIN32 1" >>confdefs.h
fa8b36
+
fa8b36
+            SOURCES="$SOURCES $srcdir/src/cdrom/win32/*.c"
fa8b36
+            have_cdrom=yes
fa8b36
+        fi
fa8b36
+
Lucio Andrés Illanes Albornoz ed4f30
+        # Set up the system libraries we need
Lucio Andrés Illanes Albornoz ed4f30
+        EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -lkernel32"
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+        ;;
Lucio Andrés Illanes Albornoz ed4f30
     *-*-cygwin* | *-*-mingw32*)
Lucio Andrés Illanes Albornoz ed4f30
         ARCH=win32
Lucio Andrés Illanes Albornoz ed4f30
         if test "$build" != "$host"; then # cross-compiling
Lucio Andrés Illanes Albornoz ed4f30
diff -ru SDL-1.2.15.orig/src/audio/windib/SDL_dibaudio.c SDL-1.2.15/src/audio/windib/SDL_dibaudio.c
Lucio Andrés Illanes Albornoz ed4f30
--- SDL-1.2.15.orig/src/audio/windib/SDL_dibaudio.c	2012-01-19 07:30:06.000000000 +0100
Lucio Andrés Illanes Albornoz ed4f30
+++ SDL-1.2.15/src/audio/windib/SDL_dibaudio.c	2019-11-08 12:49:20.451023616 +0100
Lucio Andrés Illanes Albornoz ed4f30
@@ -35,6 +35,35 @@
Lucio Andrés Illanes Albornoz ed4f30
 #include "win_ce_semaphore.h"
Lucio Andrés Illanes Albornoz ed4f30
 #endif
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
+/* FIXME: temporary */
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef WOM_DONE
Lucio Andrés Illanes Albornoz ed4f30
+#define WOM_DONE 0x3BD
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef MAXERRORLENGTH
Lucio Andrés Illanes Albornoz ed4f30
+#define MAXERRORLENGTH 256
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef THREAD_PRIORITY_HIGHEST
Lucio Andrés Illanes Albornoz ed4f30
+#define THREAD_PRIORITY_HIGHEST 2
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef INFINITE
Lucio Andrés Illanes Albornoz ed4f30
+#define INFINITE 0xffffffff
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef WAVE_FORMAT_PCM
Lucio Andrés Illanes Albornoz ed4f30
+#define WAVE_FORMAT_PCM 1
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef WAVE_MAPPER
Lucio Andrés Illanes Albornoz ed4f30
+#define WAVE_MAPPER ((UINT)-1)
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+#ifndef CALLBACK_FUNCTION
Lucio Andrés Illanes Albornoz ed4f30
+#define CALLBACK_FUNCTION (int32_t)(0x00030000)
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 /* Audio driver functions */
Lucio Andrés Illanes Albornoz ed4f30
 static int DIB_OpenAudio(_THIS, SDL_AudioSpec *spec);
Lucio Andrés Illanes Albornoz ed4f30
@@ -132,7 +161,7 @@
Lucio Andrés Illanes Albornoz ed4f30
 	waveOutGetErrorText(code, werrbuf, MAXERRORLENGTH-len);
Lucio Andrés Illanes Albornoz ed4f30
 	WideCharToMultiByte(CP_ACP,0,werrbuf,-1,errbuf+len,MAXERRORLENGTH-len,NULL,NULL);
Lucio Andrés Illanes Albornoz ed4f30
 #else
Lucio Andrés Illanes Albornoz ed4f30
-	waveOutGetErrorText(code, errbuf+len, (UINT)(MAXERRORLENGTH-len));
Lucio Andrés Illanes Albornoz ed4f30
+	waveOutGetErrorTextA(code, errbuf+len, (UINT)(MAXERRORLENGTH-len));
Lucio Andrés Illanes Albornoz ed4f30
 #endif
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 	SDL_SetError("%s",errbuf);
Lucio Andrés Illanes Albornoz ed4f30
@@ -290,7 +319,7 @@
Lucio Andrés Illanes Albornoz ed4f30
 #if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
Lucio Andrés Illanes Albornoz ed4f30
 	audio_sem = CreateSemaphoreCE(NULL, NUM_BUFFERS-1, NUM_BUFFERS, NULL);
Lucio Andrés Illanes Albornoz ed4f30
 #else
Lucio Andrés Illanes Albornoz ed4f30
-	audio_sem = CreateSemaphore(NULL, NUM_BUFFERS-1, NUM_BUFFERS, NULL);
Lucio Andrés Illanes Albornoz ed4f30
+	audio_sem = CreateSemaphoreA(NULL, NUM_BUFFERS-1, NUM_BUFFERS, NULL);
Lucio Andrés Illanes Albornoz ed4f30
 #endif
Lucio Andrés Illanes Albornoz ed4f30
 	if ( audio_sem == NULL ) {
Lucio Andrés Illanes Albornoz ed4f30
 		SDL_SetError("Couldn't create semaphore");
Lucio Andrés Illanes Albornoz ed4f30
diff -ru SDL-1.2.15.orig/src/video/wincommon/SDL_lowvideo.h SDL-1.2.15/src/video/wincommon/SDL_lowvideo.h
Lucio Andrés Illanes Albornoz ed4f30
--- SDL-1.2.15.orig/src/video/wincommon/SDL_lowvideo.h	2012-01-19 07:30:06.000000000 +0100
Lucio Andrés Illanes Albornoz ed4f30
+++ SDL-1.2.15/src/video/wincommon/SDL_lowvideo.h	2019-11-08 11:58:43.821344665 +0100
Lucio Andrés Illanes Albornoz ed4f30
@@ -140,7 +140,7 @@
Lucio Andrés Illanes Albornoz ed4f30
    GDL_CreateWindow as well */
Lucio Andrés Illanes Albornoz ed4f30
 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
-#ifdef _WIN64
Lucio Andrés Illanes Albornoz ed4f30
+#if defined(_WIN64) || defined(__midipix__)
Lucio Andrés Illanes Albornoz ed4f30
 #define SDL_ToUnicode  ToUnicode
Lucio Andrés Illanes Albornoz ed4f30
 #else
Lucio Andrés Illanes Albornoz ed4f30
 /* JFP: Implementation of ToUnicode() that works on 9x/ME/2K/XP */
Lucio Andrés Illanes Albornoz ed4f30
diff -ru SDL-1.2.15.orig/src/video/wincommon/SDL_sysevents.c SDL-1.2.15/src/video/wincommon/SDL_sysevents.c
Lucio Andrés Illanes Albornoz ed4f30
--- SDL-1.2.15.orig/src/video/wincommon/SDL_sysevents.c	2012-01-19 07:30:06.000000000 +0100
Lucio Andrés Illanes Albornoz ed4f30
+++ SDL-1.2.15/src/video/wincommon/SDL_sysevents.c	2019-11-08 11:14:47.506238807 +0100
Lucio Andrés Illanes Albornoz ed4f30
@@ -95,7 +95,7 @@
Lucio Andrés Illanes Albornoz ed4f30
 extern void DIB_SwapGamma(_THIS);
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 #ifndef NO_GETKEYBOARDSTATE
Lucio Andrés Illanes Albornoz ed4f30
-#ifndef _WIN64
Lucio Andrés Illanes Albornoz ed4f30
+#if !defined(_WIN64) && !defined(__midipix__)
Lucio Andrés Illanes Albornoz ed4f30
 /* Variables and support functions for SDL_ToUnicode() */
Lucio Andrés Illanes Albornoz ed4f30
 static int codepage;
Lucio Andrés Illanes Albornoz ed4f30
 static int Is9xME();
Lucio Andrés Illanes Albornoz ed4f30
@@ -669,7 +669,7 @@
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 #ifndef NO_GETKEYBOARDSTATE
Lucio Andrés Illanes Albornoz ed4f30
 		case WM_INPUTLANGCHANGE:
Lucio Andrés Illanes Albornoz ed4f30
-#ifndef _WIN64
Lucio Andrés Illanes Albornoz ed4f30
+#if !defined(_WIN64) && !defined(__midipix__)
Lucio Andrés Illanes Albornoz ed4f30
 			codepage = GetCodePage();
Lucio Andrés Illanes Albornoz ed4f30
 #endif
Lucio Andrés Illanes Albornoz ed4f30
 		return(TRUE);
Lucio Andrés Illanes Albornoz ed4f30
@@ -779,7 +779,7 @@
Lucio Andrés Illanes Albornoz ed4f30
 #endif /* WM_MOUSELEAVE */
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 #ifndef NO_GETKEYBOARDSTATE
Lucio Andrés Illanes Albornoz ed4f30
-#ifndef _WIN64
Lucio Andrés Illanes Albornoz ed4f30
+#if !defined(_WIN64) && !defined(__midipix__)
Lucio Andrés Illanes Albornoz ed4f30
 	/* Initialise variables for SDL_ToUnicode() */
Lucio Andrés Illanes Albornoz ed4f30
 	codepage = GetCodePage();
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
@@ -814,7 +814,7 @@
Lucio Andrés Illanes Albornoz ed4f30
 }
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 #ifndef NO_GETKEYBOARDSTATE
Lucio Andrés Illanes Albornoz ed4f30
-#ifndef _WIN64
Lucio Andrés Illanes Albornoz ed4f30
+#if !defined(_WIN64) && !defined(__midipix__)
Lucio Andrés Illanes Albornoz ed4f30
 /* JFP: Implementation of ToUnicode() that works on 9x/ME/2K/XP */
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 static int Is9xME()
Lucio Andrés Illanes Albornoz ed4f30
diff -ru SDL-1.2.15.orig/src/video/windib/SDL_dibvideo.c SDL-1.2.15/src/video/windib/SDL_dibvideo.c
Lucio Andrés Illanes Albornoz ed4f30
--- SDL-1.2.15.orig/src/video/windib/SDL_dibvideo.c	2012-01-19 07:30:06.000000000 +0100
Lucio Andrés Illanes Albornoz ed4f30
+++ SDL-1.2.15/src/video/windib/SDL_dibvideo.c	2019-11-08 11:17:09.328149984 +0100
Lucio Andrés Illanes Albornoz ed4f30
@@ -822,9 +822,15 @@
Lucio Andrés Illanes Albornoz ed4f30
 				video->flags |= SDL_RESIZABLE;
Lucio Andrés Illanes Albornoz ed4f30
 			}
Lucio Andrés Illanes Albornoz ed4f30
 		}
Lucio Andrés Illanes Albornoz ed4f30
+
Lucio Andrés Illanes Albornoz ed4f30
+/* FIXME: the heck? */
Lucio Andrés Illanes Albornoz ed4f30
+#ifdef __midipix__
Lucio Andrés Illanes Albornoz ed4f30
+		if (IsZoomed(SDL_Window)) style |= WS_MAXIMIZE;
Lucio Andrés Illanes Albornoz ed4f30
+#else
Lucio Andrés Illanes Albornoz ed4f30
 #if WS_MAXIMIZE && !defined(_WIN32_WCE)
Lucio Andrés Illanes Albornoz ed4f30
 		if (IsZoomed(SDL_Window)) style |= WS_MAXIMIZE;
Lucio Andrés Illanes Albornoz ed4f30
 #endif
Lucio Andrés Illanes Albornoz ed4f30
+#endif
Lucio Andrés Illanes Albornoz ed4f30
 	}
Lucio Andrés Illanes Albornoz ed4f30
 
Lucio Andrés Illanes Albornoz ed4f30
 	/* DJM: Don't piss of anyone who has setup his own window */
Lucio Andrés Illanes Albornoz ed4f30