Commit 25f62f496d6882ad310a27062586d9b6267baeb9

Authored by Georg Hopp
1 parent 0b34d64a

Add missing patches

  1 +https://bugs.gentoo.org/724412
  2 +--- a/configure.ac
  3 ++++ b/configure.ac
  4 +@@ -18,6 +18,7 @@ AC_PROG_CPP
  5 + AC_PROG_CXX
  6 + AC_PROG_INSTALL
  7 + AC_PROG_RANLIB
  8 ++AM_PROG_AR
  9 +
  10 + dnl Some needed libaries for OS2
  11 + dnl perharps join this with the other target depended checks. move them upwards
... ...
  1 +Bug: https://bugs.gentoo.org/895898
  2 +--- a/src/gui/render_templates_sai.h
  3 ++++ b/src/gui/render_templates_sai.h
  4 +@@ -43,7 +43,7 @@ inline void conc2d(Super2xSaI,SBPP)(PTYPE * line0, PTYPE * line1, const PTYPE *
  5 + } else if (C4 == C8 && C7 != C5) {
  6 + line1[1] = line0[1] = C4;
  7 + } else if (C4 == C8 && C7 == C5) {
  8 +- register int r = 0;
  9 ++ int r = 0;
  10 + r += conc2d(GetResult,SBPP)(C5,C4,C6,D1);
  11 + r += conc2d(GetResult,SBPP)(C5,C4,C3,C1);
  12 + r += conc2d(GetResult,SBPP)(C5,C4,D2,D5);
  13 +@@ -127,7 +127,7 @@ inline void conc2d(SuperEagle,SBPP)(PTYPE * line0, PTYPE * line1, const PTYPE *
  14 + line1[0] = interp_w2(C7,C8,1U,1U);
  15 + }
  16 + } else {
  17 +- register int r = 0;
  18 ++ int r = 0;
  19 + r += conc2d(GetResult,SBPP)(C5,C4,C6,D1);
  20 + r += conc2d(GetResult,SBPP)(C5,C4,C3,C1);
  21 + r += conc2d(GetResult,SBPP)(C5,C4,D2,D5);
  22 +@@ -185,7 +185,7 @@ inline void conc2d(_2xSaI,SBPP)(PTYPE * line0, PTYPE * line1, const PTYPE * fc)
  23 + line1[0] = C4;
  24 + line1[1] = C4;
  25 + } else {
  26 +- register int r = 0;
  27 ++ int r = 0;
  28 + r += conc2d(GetResult,SBPP)(C4,C5,C3,C1);
  29 + r -= conc2d(GetResult,SBPP)(C5,C4,D4,C2);
  30 + r -= conc2d(GetResult,SBPP)(C5,C4,C6,D1);
... ...
  1 +https://github.com/voyageur/openglide/pull/25
  2 +
  3 +diff -Naur dosbox.orig/configure.ac dosbox/configure.ac
  4 +--- dosbox.orig/configure.ac 2021-10-26 13:06:35.585761330 +0100
  5 ++++ dosbox/configure.ac 2021-10-26 13:07:31.641323631 +0100
  6 +@@ -20,6 +20,12 @@
  7 + AC_PROG_RANLIB
  8 + AM_PROG_AR
  9 +
  10 ++dnl The dlopen() function is in the C library for *BSD and in
  11 ++dnl libdl on GLIBC-based systems
  12 ++AC_SEARCH_LIBS([dlopen], [dl dld], [], [
  13 ++ AC_MSG_ERROR([unable to find the dlopen() function])
  14 ++])
  15 ++
  16 + dnl Some needed libaries for OS2
  17 + dnl perharps join this with the other target depended checks. move them upwards
  18 + if test x$host = xi386-pc-os2-emx ; then
... ...
Please register or login to post a comment