0002-fix-autoreconf.patch 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Fix broken autoreconf
  2. Downloaded from upstream git
  3. https://git.xiph.org/?p=theora.git;a=commitdiff;h=28cc6dbd9b2a141df94f60993256a5fca368fa54
  4. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
  5. From: Tim Terriberry <tterribe@xiph.org>
  6. Date: Fri, 20 May 2011 20:41:50 +0000 (+0000)
  7. Subject: Make autoreconf -i -f work.
  8. X-Git-Url: https://git.xiph.org/?p=theora.git;a=commitdiff_plain;h=28cc6dbd9b2a141df94f60993256a5fca368fa54
  9. Make autoreconf -i -f work.
  10. Patch from David Schleef.
  11. svn path=/trunk/theora/; revision=17990
  12. ---
  13. diff --git a/Makefile.am b/Makefile.am
  14. index 89fd753..1783857 100644
  15. --- a/Makefile.am
  16. +++ b/Makefile.am
  17. @@ -4,6 +4,8 @@
  18. #AUTOMAKE_OPTIONS = foreign 1.7 dist-zip dist-bzip2
  19. AUTOMAKE_OPTIONS = foreign 1.11 dist-zip dist-xz
  20. +ACLOCAL_AMFLAGS=-I m4
  21. +
  22. if THEORA_ENABLE_EXAMPLES
  23. EXAMPLES_DIR = examples
  24. else
  25. diff --git a/configure.ac b/configure.ac
  26. index 1cbec1a..456b603 100644
  27. --- a/configure.ac
  28. +++ b/configure.ac
  29. @@ -68,7 +68,7 @@ AC_LIBTOOL_WIN32_DLL
  30. AM_PROG_LIBTOOL
  31. dnl Add parameters for aclocal
  32. -AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
  33. +AC_CONFIG_MACRO_DIR([m4])
  34. dnl Check for doxygen
  35. AC_ARG_ENABLE([doc],