patch-configure_in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. --- xbmc-13.1.orig/configure.in 2014-06-08 08:40:24.000000000 +0200
  2. +++ xbmc-13.1/configure.in 2014-06-08 11:12:35.190431752 +0200
  3. @@ -600,7 +600,7 @@ PKG_PROG_PKG_CONFIG
  4. MAKE="${MAKE:-make}"
  5. OBJDUMP="${OBJDUMP:-objdump}"
  6. -use_external_ffmpeg=no
  7. +use_external_ffmpeg=yes
  8. use_static_ffmpeg=no
  9. # ffmpeg needs the output of uname -s (e.x. linux, darwin) for the target_os
  10. @@ -626,21 +626,21 @@ case $host in
  11. use_x11=no
  12. build_shared_lib=yes
  13. ;;
  14. - i*86*-linux-gnu*|i*86*-*-linux-uclibc*)
  15. + i*86*-linux-*)
  16. ARCH="i486-linux"
  17. if test "$use_cpu" = "no" -a "$cross_compiling" = "yes"; then
  18. use_arch="x86"
  19. use_cpu="i686"
  20. fi
  21. - use_static_ffmpeg=yes
  22. + use_static_ffmpeg=no
  23. ;;
  24. - x86_64-*-linux-gnu*|x86_64-*-linux-uclibc*)
  25. + x86_64-*-linux-*)
  26. ARCH="x86_64-linux"
  27. if test "$use_cpu" = "no" -a "$cross_compiling" = "yes"; then
  28. use_arch="x86_64"
  29. use_cpu="x86_64"
  30. fi
  31. - use_static_ffmpeg=yes
  32. + use_static_ffmpeg=no
  33. ;;
  34. i386-*-freebsd*)
  35. ARCH="x86-freebsd"
  36. @@ -680,13 +680,13 @@ case $host in
  37. ARCH="powerpc-osx"
  38. use_arch="ppc"
  39. ;;
  40. - powerpc-*-linux-gnu*|powerpc-*-linux-uclibc*)
  41. + powerpc-*-linux-*)
  42. ARCH="powerpc-linux"
  43. ;;
  44. - powerpc64-*-linux-gnu*|powerpc64-*-linux-uclibc*)
  45. + powerpc64-*-linux-*)
  46. ARCH="powerpc64-linux"
  47. ;;
  48. - arm*-*-linux-gnu*|arm*-*-linux-uclibc*)
  49. + arm*-*-linux-*)
  50. ARCH="arm"
  51. use_arch="arm"
  52. ffmpeg_target_os=linux
  53. @@ -696,7 +696,7 @@ case $host in
  54. use_sdl=no
  55. use_x11=no
  56. use_wayland=no
  57. - use_static_ffmpeg=yes
  58. + use_static_ffmpeg=no
  59. ;;
  60. arm*-*linux-android*)
  61. target_platform=target_android
  62. @@ -1048,7 +1048,7 @@ if test "$use_gles" = "yes"; then
  63. AC_DEFINE([HAVE_LIBEGL],[1],["Define to 1 if you have the `EGL' library (-lEGL)."])
  64. AC_DEFINE([HAVE_LIBGLESV2],[1],["Define to 1 if you have the `GLESv2' library (-lGLESv2)."])
  65. AC_MSG_RESULT(== WARNING: OpenGLES support is assumed.)
  66. - LIBS="$LIBS -lEGL -lGLESv2 -lbcm_host -lvcos -lvchiq_arm"
  67. + LIBS="$LIBS -lEGL -lGLESv2 -lbcm_host -lvcos -lvchiq_arm -lkhrn_static -lpthread -lm"
  68. else
  69. AC_CHECK_LIB([EGL], [main],, AC_MSG_ERROR($missing_library))
  70. AC_CHECK_LIB([GLESv2],[main],, AC_MSG_ERROR($missing_library))
  71. @@ -2532,11 +2532,8 @@ OUTPUT_FILES="Makefile \
  72. xbmc/cores/AudioEngine/Makefile \
  73. xbmc/cores/paplayer/Makefile \
  74. xbmc/cores/omxplayer/Makefile \
  75. - lib/timidity/Makefile \
  76. lib/asap/Makefile \
  77. - lib/nosefart/Makefile \
  78. lib/libsidplay2/Makefile \
  79. - lib/vgmstream/Makefile \
  80. lib/snesapu/SNES/SNESAPU/Makefile \
  81. lib/stsound/StSoundLibrary/Makefile \
  82. xbmc/cores/playercorefactory/Makefile \