forked from aranym/aranym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10780 lines (6798 loc) · 326 KB
/
ChangeLog
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2019/09/31
devname in cdrom.cpp must be const with newer versions of macOS
2019/09/31
Replace symlinks by hardlinks of external libraries for macOS
This seems to be needed by XCode 11 and above
2019/09/31
Support extended OS header of EmuTOS
This will be used to contain EmuTOS-specific information, including
version and information on supported features.
2019/09/28
Add precompiled jpeg driver to distribution
2019/09/28
Add precompiled nfcdrom driver to distribution
2019/09/28
Add precompiled metados driver to distribution
2019/09/28
Implement Dsetpath for MetaDOS driver.
Should fix https://github.com/aranym/aranym/issues/43
2019/09/28
Avoid excessive calls to NFGetdriver("fVDI")
2019/09/21
convert_to_xattr: make sure filesize does not exceed the range of
the 32bit st_size field
2019/09/21
Add additional check to stripex tool
2019/07/18
Fix a typo in the configure script, preventing --{enable,disable}-nfscsi to work
2019/07/14
Add new source files to macOS project
2019/07/14
Implement NF_CONFIG feature
2019/06/26
Make action for middle mouse button configurable
2019/06/25
Do not report that middle mouse button releases grab when eiffel option is active
2019/06/24
Some more cleanup of SCC driver
2019/06/23
Add a missing include
2019/06/23
Rework the way VERSION_STRING is generated, so snapshot versions
can be distinguished
2019/06/23
Reorganize SCC driver
2019/06/20
Update a link to tos.hyp
2019/06/19
new "pipe" setting for output written to the parallel port,
allowing to pass it eg. directly to lpr
2019/06/11
Add some files to Makefile.am that should be distributed
2019/06/05
Use absolute path for config file specified on command line
2019/06/04
Small compilation fixes for win32 w/o cygwin
2019/06/04
Fix a problem with the X-bit handling on 32bit hosts
2019/06/03
On cygwin, use posix paths for stat() calls, otherwise cygwin does not translate all attributes.
Should fix #22.
2019/05/19
Use pow10 only if it exits
2019/04/20
Fix a typo in disassembler
2019/04/17
WIP: make compiler support functions real 64bit clean
2019/04/17
Remove useless LENDFUNC/MENDFUNC macros
2019/04/17
Remove old code which hasn't been used for decades
2019/04/15
Update glibc wrapper to include new symbols from glibc 2.28+2.29
2019/04/15
Remove some unneeded casts
2019/04/15
Reformat compemu_fpp.cpp, and add some comments
2019/04/15
Allow to blacklist FPU instructions by name for the JIT compiler
2019/04/10
Fix FNEG to handle negative/positive zero
2019/04/10
Long double INFs on x86 must have the explicit integer bit set,
or they are treated as NaNs
2019/03/17
Add safety check to not overflow the linux command line
2019/03/17
Add some safety check to linux loader, and fix DEBUG output
2019/03/09
Implement NF_EXIT feature
2019/03/09
Add armhf automated builds
Contributed by sagudev <[email protected]>
2019/01/03
Fix definition of GLintptr when using Apple legacy headers
2019/01/03
Fix definition of GLintptrARB when using Apple legacy headers
2019/01/03
Fix definition of GLhandleARB when using Apple legacy headers
2019/01/03
Avoid redefinition of GL_GLEXT_VERSION from newer versions of glext.h
2018/12/19
The buffer for MX_KER_XFSNAME is only 8 chars, do not overwrite it
2018/12/18
Do not D(Bug()) nf_calls to NF_STDERR, they interfere
with the actual output from the application
2018/11/27
Remove some unused variables
2018/11/27
In the flight recorder, record the 68k opcode, not
the unswapped little-endian opcode
2018/11/26
Fix some typos in comments
2018/10/02
Run travis builds for macOS now with -quiet, since they changed
the settings and builds are aborted when log file gets too long
2018/10/02
Avoid a warning about using non-static data member initializers
2018/10/02
Fix a build error when long double is not available
2018/09/21
Reorganize tos patches for 4.04
2018/09/19
TOS 4.x sometimes selects both floppy drives
2018/09/12
Add a hotkey for turning audio on/off
2018/09/09
dsp_core.c: Replace algorithm to generate ROM tables
by pre-generated tables (the a-law table was not exactly
that found on real devices)
2018/09/09
dsp_disasm.c: fix a bug in disassembling movec #imm
2018/09/05
dsp_core.c: some parameters are always unused, independent
of DEBUG
2018/09/04
Avoid some buffer overflows in DSP disassembler
2018/09/02
Fix build failures on win32
2018/09/02
Fix some more bugs in the jpeg driver when output is to file,
and image width is not multiple of 16
2018/09/01
Fix a long-standing in the IDE driver when byteswap is enabled,
and the data register is accessed using long words
2018/09/01
Fix some build problems in the shared libs for osmesa
2018/09/01
Fix several bugs in NFJPEG driver
- when output is to a file, and no user callbacks are used,
create a proper TGA file header
- error return codes should be the ones from jpgdh.h, not TOS
error codes
- decoding loop was not aborted on request from user callback
- user callbacks were called without declaring a clobber list,
resulting in trashed registers and possible endless loops
- OutTmpHeight should reflect the number of just decoded rows,
not remaining until end-of-image
- MCUsCounter must be updated before calling any user callbacks
2018/08/31 - Thorsten
Fix lookup of hotkeys that were disabled
2018/08/31 - Thorsten
Do not send key releases of hotkeys to Atari
2018/08/31 - Thorsten
nfjpeg: don't wait for keypress
The message(s) written by Cconws() might not be visible on the screen,
when written to boot.log by MiNT or redirected to the host console.
In that case the user has no idea that the driver is waiting for a keypress,
and the boot will stop.
2018/08/31 - Thorsten
Reformat ata.cpp
2018/08/31 - Thorsten
Don't flood console with messages from IDE driver that
are actually debug messages
2018/07/16 - Thorsten
Avoid using a restricted pointer
2018/07/16 - Thorsten
Fix some corner-cases of INF handling
2018/06/03 - Thorsten
According to Toni Wilen, the '040 does not mask out bits 0-3
of the FPCR register
2018/06/01 - Thorsten
Mask off least significant 3 bits of accrued exception byte
2018/06/01 - Thorsten
Handle signbit of NaNs
2018/05/31 - Thorsten
JIT: add some comments
2018/05/31 - Thorsten
JIT: properly declare FPU constants as long double,
as they otherwise might be compiled inexactly
2018/05/29 - Thorsten
JIT: Fix some more flag handling in rotate instructions
2018/05/26 - Thorsten
Rework disassemblers to print excessive instruction
bytes on multiples lines
2018/05/25 - Thorsten
Avoid some warnings from shifts in codegen_arm.h
2018/05/24 - Thorsten
Fix some corner-cases of flags handling in JIT compiled rotate instructions,
when shift count is zero or greater than the operand size
2018/05/22 - Thorsten
Fix some debug messages
2018/05/22 - Thorsten
Update macOS project files
2018/05/22 - Thorsten
Implement EmulOp to query/set JIT state
2018/05/22 - Thorsten
Assume that nf_id/nf_call/EmulOp pseudo instructions need all flags
2018/05/21 - Thorsten
Fix a bug in JIT compiled code for addx/subx that
did not set the V flag correctly
2018/05/20 - Thorsten
Add builtin disassembler support for x86
2018/04/18 - Thorsten
Move initialization of table68k to compiler sources
2018/04/17 - Thorsten
Simplify readcpu a bit
2018/04/17 - Thorsten
Add some missing declarations for arm
2018/04/16 - Thorsten
Remove long obsolete tests for 33bit adressing from configure
2018/04/16 - Thorsten
JIT: sync with current WinUAE sources
2018/04/15 - Thorsten
Remove some unused variables
2018/04/15 - Thorsten
Small fix to gencomp{_arm}.cpp to protect a generated local variable
with braces
2018/04/14 - Thorsten
Remove an unused type
2018/04/13 - Thorsten
Setting the text segment to a fixed address broke
the memory probing; make it more robust by skipping
ranges of already existing mappings
2018/04/13 - Thorsten
Fix some typos, and some bogus tests in configure.ac
2018/04/10 - Thorsten
Reape child processes started by hostexec feature
2018/04/06 - Thorsten
Update glibc wrapper to include new symbols from glibc 2.27
2018/04/06 - Thorsten
Workaround for building with XCode 3.2.6
Reported by Francois LE COAT; although already present in
sdl_opengl_wrapper.h, that sequence seems to fix some build problems
2018/03/18 - Thorsten
Implement HOSTEXEC for MinGW
2018/03/18 - Thorsten
Avoid some warnings
2018/03/18 - Thorsten
Use another name for remove(), as it might conflict
with c++11 <list> header
2018/03/18 - Thorsten
Avoid some conflicts with windows headers
2018/03/18 - Thorsten
Extend HOSTEXEC native feature with execv() method
2018/03/17 - Thorsten
Add HOSTEXEC native feature.
Proposed by Miro Kropáček <[email protected]>
2018/03/15 - Thorsten
Move some definitions from version.h to main_unix.cpp,
in order to reduce the number of files that depend on
version.h/version_date.h
2018/03/15 - Thorsten
Delete CVS's keywords like $Id$ from a bunch of files.
This keywords are unused since the migration to Git, 4 years ago.
2018/03/15 - Thorsten
hostfs: Now that mint implements the file locking, implement maintaining
the list of file locks.
2018/02/27 - Andreas
- sigsegv_linux_arm.cpp: Use ucontext_t instead of struct ucontext
2018/02/24 - Thorsten
Add a link to repology.org in README
2018/02/24 - Thorsten
Experimental support for JIT on Haiku; disabled for now as it panics the kernel
2018/02/23 - Thorsten
Small fixes for compilation on Haiku
2018/02/23 - Thorsten
Check for existence of futimes(); android and BeOS
don't have it
2018/02/23 - Thorsten
Workaround for some broken installations of SDL
which define the PACKAGE_ macros in SDL_config.h
2018/02/23 - Thorsten
Replace config.{sub,guess} by newer versions
2018/02/23 - Thorsten
Add SDL2 versions to the macOS project.
2018/02/21 - Thorsten
Protect futimens() calls by runtime checks on macOS
2018/02/21 - Thorsten
Update macOS project files for XCode 9.2
2018/02/21 - Thorsten
Check for X11 headers being available on macOS; SDL_syswm.h
needs them.
2018/02/18 - Thorsten
Some NSAlert constants have been renamed in macOS 10.12
2018/02/18 - Thorsten
Fix some versioned symbol definitions in libcwrap.h for i586 and
aarch64 systems.
Reported by Christian Quante <[email protected]>
2018/02/09 - Thorsten
Recreate SDL resource files using updated ORCS version
2018/02/09 - Thorsten
nfosmesa: update to OpenGL 4.6, adding 119 functions
2018/02/08 - Thorsten
Update links in documentation files to point to new wiki location
2018/02/08 - Thorsten
Update fntconv utility
2018/02/06 - Thorsten
Some MinGW dlls could be missed when creating the archives,
both for snapshot builds and releases.
2018/02/05 - Thorsten
Use smaller font for "X" in hostfs dialog
2018/02/04 - Thorsten
Reformat README.md
2018/02/04 - Thorsten
Add scripts for automated cygwin builds via AppVeyor
2018/02/03 - Thorsten
Fix handling of pathnames with spaces in the cygwin build script.
2018/02/03 - Thorsten
Add a "Build status" indicator to the README
2018/02/03 - Thorsten
Copy back the input fields in the hostfs dialog before scrolling,
in case they have been edited
2018/02/03 - Christian
Add some clear buttons to several setting dialogs.
In the setting dialogs it was not possible to remove selected
entries such as floppy disk images and TOS images.
2018/02/03 - Thorsten
Remove CRs
2018/02/01 - Thorsten
Add some more characters to the font, and reorder it
to use unicode indices. Also add the sources needed to rebuild it.
2018/01/30 - Thorsten
Add a lot of international characters to the builtin font.
Needed to correctly display filenames in the selector.
(our own dialog texts are ascii only, but that can now be changed, too)
2018/01/27 - Thorsten
Fix duplicate assignment introduced in commit #d32c06a5aa4c3ce7c9b77482ac31e14d5a7eb190
2018/01/27 - Thorsten
Fix display of non-ASCII characters in the SDL GUI
(mainly affected the file selector dialog).
2018/01/27 - Thorsten
Reconstruct the font used for the SDL GUI as regular GEM font.
2018/01/27 - Thorsten
Fix compilation problems with newer versions of opcodes library
2018/01/27 - Thorsten
Fix a potential crash when --enable-debug was defined
(va_list argument was reused)
2018/01/27 - Thorsten
Simplify building on cygwin, by adding the necessary
flags to use the MinGW SDL library. Makes the build-cygwin.sh
script obsolete. Also update documentation.
2018/01/26 - Thorsten
Add *.exe to .gitignore, for the sake of cygwin
2018/01/24 - Thorsten
Avoid redefinition of WIN32_LEAN_AND_MEAN with recent SDL versions
on mingw/cygwin
2018/01/09 - Thorsten
Fix NBCD instruction
The V flag was cleared when it shouldn't in some cases. Verified on all
possible combinations.
2018/01/09 - Thorsten
Keep the V flag on the 68030
2017/12/27 - Thorsten
Fix compilation error on MacOS
2017/11/20 - Thorsten
Make combination of --enable-jit-compiler --enable-fullmmu an error,
since it is not supported
2017/11/06 - Thorsten
Use drive letters '1'..'6' for letters beyond 'Z' to be consistent with
MiNT's unifs, and also Teradesk/Thing
2017/11/06 - Thorsten
Fix rare possible wrong order in 'MOVEP M->R' depending on the compiler' optimisations (patch by Toni Wilen)
2017/11/06 - Thorsten
Fix a rare case on 68000 where STOP triggers a privilege exception and stack PC+4 if new SR has bit S=0
For example 'STOP #$555' will trigger a privilege violation exception on 68000 CPU
and stacked PC will point after the STOP instruction.
The behaviour is different on 68000, 68020/030 and 68040/060 (more generic patch by Toni Wilen)
Although this is not documented anymore in recent Motorola's doc, it seems it was described
in very early 68000 documentations
2017/11/06 - Thorsten
Implement Ffchmod for MetaDOS driver.
2017/11/06 - Thorsten
Implement Ffchown for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fcntl for MetaDOS driver.
2017/11/06 - Thorsten
hostfs: Work around a bug with mints calculation
of utc times from file timestamps
2017/11/06 - Thorsten
Implement Fstat64/Ffstat64 for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fchmod for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fchown/Fchown16 for MetaDOS driver.
2017/11/06 - Thorsten
Implement Freadlink for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fsymlink for MetaDOS driver.
2017/11/06 - Thorsten
Implement Flink for MetaDOS driver.
2017/11/06 - Thorsten
Remove dead code from MetaDOS driver.
2017/11/04 - Thorsten
Copy necessary files back from FreeMiNT to metados folder,
to make it possible to build it locally
2017/11/04 - Thorsten
Workaround for generator programs on cygwin sometimes
getting an unresolved symbol reference to cygwin_mingw_abort()
2017/11/03 - Thorsten
Update MetaDOS driver with current Freemint sources,
and make it compilable again.
2017/11/03 - Thorsten
Simplify debug output
2017/10/31 - Thorsten
Fix start of text segment for JIT on ArchLinux
2017/09/17 - Thorsten
Add disassembler support for arm
2017/09/16 - Thorsten
Fix bug introduced in commit b839b37f causing the bpf_helper executable not
to be found
2017/09/16 - Thorsten
Use NO_NESTED_SIGSEGV on linux/arm, to cleanly return from signal handler
2017/09/13 - Thorsten
Update glibc wrapper for arm
2017/09/13 - Thorsten
Some code formatting cleanup
2017/09/10 - Thorsten
Don't use glibc wrapper for Android
2017/09/10 - Thorsten
Don't rely on current directory being writable when creating
temporary config file
2017/09/10 - Thorsten
Fix parameters.h to not declare functions with default values,
as it is also included in objective-c code on macOS
2017/09/10 - Thorsten
Allow NumLock & ScrollLock in the hotkeys dialog
2017/09/10 - Thorsten
Make directory for screenshots configurable
2017/09/09 - Thorsten
Handle hotkeys in the main SDL gui dialog.
This might help in situations where the app is accidently run on the
console, the dialog pops up, and no mouse is available.
2017/09/09 - Thorsten
Automagically purge old snapshots
2017/09/08 - Thorsten
Add some missing variable exports to scripts
2017/09/08 - Thorsten
Avoid an undefined reference when compiling against
older glibc ABI, and using _FORTIFY_SOURCE
2017/09/08 - Thorsten
Add scripts for AppImage creation
2017/09/06 - Thorsten
Move installation of *.desktop and icons to Makefile
2017/09/06 - Thorsten
deploy: silence curl
2017/09/05 - Thorsten
Remove some obsolete items from the TODO list
2017/09/04 - Thorsten
Update a link in README.rtf
2017/09/04 - Thorsten
Use libcwrap.h to link against older glibc abi on linux
2017/09/03 - Thorsten
Prevent "Invalid argument" when attaching the bpf interface
2017/09/03 - Thorsten
Fix typo in last commit
2017/09/03 - Thorsten
Preserve options in the type of the ethernet interface
The "bridge" mode for MacOSX has some options for the filter
to be applied (nofilter, ip, or mcast). Preserve those when
using the GUI dialog.
(currently a workaround only, those options should be
configurable there, too)
2017/09/03 - Thorsten
Make example arabridge script a bit more robust
when parsing ifconfig output
2017/09/02 - Thorsten
Another fix for mouse grabbing. sigh.
2017/09/02 - Thorsten
Some minor cleanups in aratapif
2017/09/02 - Thorsten
Consistently ignore unconfigured ethernet interfaces
2017/09/01 - Thorsten
Fix file descriptor leaks in ethernet handlers
2017/08/31 - Thorsten
Make GrabMouse = Yes work again on macOS
2017/08/31 - Thorsten
Make GrabMouse = Yes work again on macOS
2017/08/31 - Thorsten
Fix invocation of bpf_helper on macOS.
There where several situations where that helper tool would be executed
in an endless loop, or the accept() call in the main app hangs
because the tool already died and never sent a message.
2017/08/30 - Thorsten
Remove libsdl2-dev and libsdl2-image-dev from list of packages to be installed
for travis builds, as it current leads to errors
2017/08/30 - Thorsten
Make GrabMouse = Yes work again
2017/08/29 - Thorsten
macOS: make sure mpfr, gmp and jpeg can be found during configure
when run from xcode in a clean build environment
2017/08/26 - Thorsten
Add new source to MacOSX project
2017/08/26 - Thorsten
osmesa: avoid hiding overloaded virtual functions
2017/08/26 - Thorsten
osmesa: avoid variable length array of constructors
(not supported by older versions of clang)
2017/08/26 - Thorsten
Check return values of vasprintf
2017/08/26 - Thorsten
Fixes for "make distcheck"
For some strange reason, make distcheck did a "make distclean" in
the src/uae_cpu directory, removing the compiler/.deps directory,
then a "make distclean" in the src directory, where it tries to
include the deps files from the compiler directory, which fails.
2017/08/21 - Thorsten
Rename copied SDL function to avoid linking errors
2017/08/21 - Thorsten
Workaround a wrong patch for some distributions of SDL
that had the effect of continously changing the window size.
The original problem was reported here:
References: http://bugzilla.libsdl.org/show_bug.cgi?id=1430
References: http://bugs.debian.org/665779
References: http://bugs.gentoo.org/411539
References: http://bugzilla.novell.com/855639
On SuSE at least, the shipped SDL has a patch applied that not
only reverted that patch, but completely removed the behaviour.
This had the effect that (when using the OpenGL VDI driver),
the resize event from the first window creation was read by application
even if the window has been resized to a different size in the
meantime.
2017/08/21 - Thorsten
Improve mouse for android a bit
2017/08/21 - Thorsten
Update emutos img in package for android to current version
2017/08/21 - Thorsten
Mac OS X 10.9 no longer uses the -psn_XXX command line arg for Finder launches.
2017/08/20 - Thorsten
Update sample config file
2017/08/20 - Thorsten
Remove explicit -march=armv6 from CFLAGS as it breaks building for android
2017/08/20 - Thorsten
Some fixes for cross-compilation environments
2017/08/20 - Thorsten
Protect nfcdrom_linux from being compiled if NFCDORM_LINUX_SUPPORT
is not defined (as is the case for android)
2017/08/20 - Thorsten
Remove bogus ASM_SYM_FOR_FUNC define
2017/08/20 - Thorsten
Fix compilation for --disable-opengl