mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-08 23:04:16 +01:00
Added missing patch files from upstream
This commit is contained in:
@@ -3,8 +3,8 @@ Index: src/sd-none/sound.c
|
||||
RCS file: /cvsroot/uaedev/uae/src/sd-none/sound.c,v
|
||||
retrieving revision 1.4
|
||||
diff -u -r1.4 sound.c
|
||||
--- src/sd-none/sound.c 15 Feb 2007 04:47:38 -0000 1.4
|
||||
+++ src/sd-none/sound.c 25 May 2007 14:47:35 -0000
|
||||
--- a/src/sd-none/sound.c 15 Feb 2007 04:47:38 -0000 1.4
|
||||
+++ b/src/sd-none/sound.c 25 May 2007 14:47:35 -0000
|
||||
@@ -30,10 +30,6 @@
|
||||
{
|
||||
}
|
||||
|
||||
20
app-emulation/e-uae/files/e-uae-0.8.29_rc4-no_schily.patch
Normal file
20
app-emulation/e-uae/files/e-uae-0.8.29_rc4-no_schily.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
configure.in:1134: error: required file 'src/libscg.a' not found
|
||||
configure.in:1134: error: required file 'src/libschily.a' not found
|
||||
|
||||
--- e-uae-0.8.29-WIP4/configure.in
|
||||
+++ e-uae-0.8.29-WIP4/configure.in
|
||||
@@ -1162,13 +1162,7 @@
|
||||
SCSIOBJS="scsiemul.o blkdev.o blkdev-libscg.o"
|
||||
UAE_DEFINES="$UAE_DEFINES -DSCSIEMU"
|
||||
NEED_THREAD_SUPPORT=yes
|
||||
- if [[ "$srcdir" != "." ]]; then
|
||||
- AC_CONFIG_LINKS(src/libscg.a:src/libscg.a)
|
||||
- AC_CONFIG_LINKS(src/libschily.a:src/libschily.a)
|
||||
- UAE_LIBS="$UAE_LIBS $LIBSCG_LIBS"
|
||||
- else
|
||||
- UAE_LIBS="$UAE_LIBS -L. $SCGLIBS"
|
||||
- fi
|
||||
+ UAE_LIBS="$UAE_LIBS $LIBSCG_LIBS"
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT(no)
|
||||
22
app-emulation/e-uae/files/e-uae-0.8.29_rc4-tinfo.patch
Normal file
22
app-emulation/e-uae/files/e-uae-0.8.29_rc4-tinfo.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
--- e-uae-0.8.29-WIP4/configure.in
|
||||
+++ e-uae-0.8.29-WIP4/configure.in
|
||||
@@ -624,6 +624,7 @@
|
||||
AC_PATH_XTRA
|
||||
|
||||
dnl Check for ncurses
|
||||
+AC_CHECK_LIB(tinfo, main, HAVE_TINFO_LIB=yes, HAVE_TINFO_LIB=no)
|
||||
AC_CHECK_LIB(ncurses, waddch, HAVE_NCURSES_LIB=yes, HAVE_NCURSES_LIB=no)
|
||||
|
||||
dnl Check for SDL
|
||||
@@ -793,7 +794,10 @@
|
||||
|
||||
if [[ "x$WANT_NCURSES" = "xyes" ]]; then
|
||||
if [[ "x$HAVE_NCURSES_LIB" = "xyes" ]]; then
|
||||
- GFX_LIBS="-lncurses"
|
||||
+ if [[ "x$HAVE_TINFO_LIB" = "xyes" ]]; then
|
||||
+ GFX_LIBS="-ltinfo"
|
||||
+ fi
|
||||
+ GFX_LIBS="$GFX_LIBS -lncurses"
|
||||
GFX_CFLAGS=
|
||||
GFX_CPPFLAGS=
|
||||
GFX_DEP=gfx-curses
|
||||
Reference in New Issue
Block a user