Cleanup
|
|
@ -25,7 +25,7 @@ else()
|
|||
if (MSVC)
|
||||
add_compile_options(/O2 /fp:fast /GA /GL /Gw Qpar /RTCu)
|
||||
else()
|
||||
add_compile_options(-0fast -ffast-math -fdevirtualize-speculatively -fspeculatively-call-stored-functions -fipa-pta -fdelete-null-pointer-checks -flimit-function-alignment)
|
||||
add_compile_options(-s -0fast -ffast-math -fdevirtualize-speculatively -fspeculatively-call-stored-functions -fipa-pta -fdelete-null-pointer-checks -flimit-function-alignment -faggressive-loop-optimizations)
|
||||
endif()
|
||||
endif()
|
||||
## Setup main source ##
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
# 16:9 support
|
||||
# EXPEREMENTAL!
|
||||
#
|
||||
# EnableSixteenByNine=false
|
||||
|
||||
# Apply linear interpolation when game screen
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 201 KiB |
|
Before Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 202 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 789 KiB |
|
Before Width: | Height: | Size: 782 KiB |
|
Before Width: | Height: | Size: 794 KiB |
|
Before Width: | Height: | Size: 780 KiB |
|
Before Width: | Height: | Size: 1 MiB |
|
Before Width: | Height: | Size: 787 KiB |
|
Before Width: | Height: | Size: 783 KiB |
|
|
@ -1,43 +0,0 @@
|
|||
--- a/common.mk
|
||||
+++ b/common.mk
|
||||
@@ -111,6 +111,7 @@ COMMONOBJS = array.$(OBJEXT) \
|
||||
vm_trace.$(OBJEXT) \
|
||||
thread.$(OBJEXT) \
|
||||
cont.$(OBJEXT) \
|
||||
+ ext/zlib/zlib.$(OBJEXT) \
|
||||
$(BUILTIN_ENCOBJS) \
|
||||
$(BUILTIN_TRANSOBJS) \
|
||||
$(MISSING)
|
||||
diff --git a/ruby-2.1.5.orig/configure b/ruby-2.1.5/configure
|
||||
index d0f1f68..45ab642 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -2878,6 +2878,8 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
||||
|
||||
|
||||
|
||||
+LIBS="$LIBS -lz"
|
||||
+
|
||||
{ # environment section
|
||||
|
||||
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -35,6 +35,8 @@ rm() {
|
||||
}
|
||||
])])])
|
||||
|
||||
+LIBS="$LIBS -lz"
|
||||
+
|
||||
{ # environment section
|
||||
|
||||
AC_ARG_WITH(baseruby,
|
||||
--- a/inits.c
|
||||
+++ b/inits.c
|
||||
@@ -61,5 +61,6 @@ rb_call_inits(void)
|
||||
CALL(Complex);
|
||||
CALL(version);
|
||||
CALL(vm_trace);
|
||||
+ CALL(zlib);
|
||||
}
|
||||
#undef CALL
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
begin
|
||||
print("Oneshot: sunshine TEST xScripts.rxdata\nRuby version: #{RUBY_VERSION}\nSDL version: #{Sunshine::SDLVersion_major}.#{Sunshine::SDLVersion_minor}.#{Sunshine::SDLVersion_micro}")
|
||||
end
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
# Overrides
|
||||
Main
|
||||