Commit df17e346 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Contribs: Flac does not need the cross compiling patch anymore.

parent 712ec1a3
......@@ -804,9 +804,6 @@ flac-$(FLAC_VERSION).tar.gz:
flac: flac-$(FLAC_VERSION).tar.gz
$(EXTRACT_GZ)
ifneq ($(HOST),$(BUILD))
(patch -p0 < Patches/flac-cross.patch)
endif
ifdef HAVE_WIN32
patch -p0 < Patches/flac-win32.patch
endif
......
--- flac-orig/configure.in 2005-11-01 19:00:02.381241515 +0100
+++ flac/configure.in 2005-11-01 19:01:50.034829963 +0100
@@ -36,6 +36,12 @@
AC_PROG_CXX
AC_PROG_MAKE_SET
+dnl Find the right ranlib, even when cross-compiling
+AC_CHECK_TOOL(RANLIB, ranlib, :)
+AC_CHECK_TOOL(STRIP, strip, :)
+AC_CHECK_TOOL(AR, ar, :)
+AC_CHECK_TOOL(LD, ld, :)
+
AC_CHECK_TYPES(socklen_t, [], [])
dnl check for getopt in standard library
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment