0003-move-ac_config_aux_dir.patch 750 B

12345678910111213141516171819202122232425
  1. Move AC_CONFIG_AUX_DIR up a few lines so the autotools can find it
  2. This patch is based on the same solution adopted by Debian:
  3. https://lists.debian.org/debian-release/2014/11/msg01231.html
  4. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
  5. diff -rup a/configure.ac b/configure.ac
  6. --- a/configure.ac 2014-02-09 11:52:42.000000000 +0000
  7. +++ b/configure.ac 2015-01-06 15:07:10.003074775 +0000
  8. @@ -13,11 +13,12 @@ m4_include([version.m4])
  9. AC_PREREQ([2.61])
  10. AC_INIT([libmemcached],VERSION_NUMBER,[http://libmemcached.org/])
  11. +AC_CONFIG_AUX_DIR([build-aux])
  12. +
  13. # Setup the compilers early on
  14. AC_PROG_CC([cc gcc clang])
  15. AC_PROG_CXX([c++ g++ clang++])
  16. -AC_CONFIG_AUX_DIR([build-aux])
  17. AC_CONFIG_MACRO_DIR([m4])
  18. AC_CANONICAL_HOST