File libmemcached-automake1_14.diff of Package libmemcached (Revision 0c47e460681dca92f8fff2a13349d53e)
Currently displaying revision 0c47e460681dca92f8fff2a13349d53e , Show latest
xxxxxxxxxx
1
From: Jan Engelhardt <jengelh@inai.de>
2
Date: 2014-12-09 17:23:13.621597902 +0100
3
References: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19311
4
5
build: do not set compilers _too_ early / workaround automake regression
6
---
7
configure.ac | 8 ++++----
8
1 file changed, 4 insertions(+), 4 deletions(-)
9
10
Index: libmemcached-1.0.18/configure.ac
11
===================================================================
12
--- libmemcached-1.0.18.orig/configure.ac
13
+++ libmemcached-1.0.18/configure.ac
14
15
AC_PREREQ([2.61])
16
AC_INIT([libmemcached],VERSION_NUMBER,[http://libmemcached.org/])
17
18
-# Setup the compilers early on
19
-AC_PROG_CC([cc gcc clang])
20
-AC_PROG_CXX([c++ g++ clang++])
21
-
22
AC_CONFIG_AUX_DIR([build-aux])
23
AC_CONFIG_MACRO_DIR([m4])
24
25
26
27
AC_SUBST([lt_cv_dlopen_libs])
28
29
+# Setup the compilers early on
30
+AC_PROG_CC([cc gcc clang])
31
+AC_PROG_CXX([c++ g++ clang++])
32
+
33
34
AC_PROG_CC_C99
35
AS_IF([test "x${ac_cv_prog_cc_c99}" == "xno"],[AC_MSG_ERROR([No c99 compatible compiler found])])
36