~ubuntu-branches/ubuntu/trusty/php-memcache/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Index: config9.m4
===================================================================
--- config9.m4.orig	2007-11-26 16:12:54.000000000 -0200
+++ config9.m4	2007-12-12 16:46:22.000000000 -0200
@@ -62,37 +62,12 @@
     PHP_ADD_INCLUDE($PHP_ZLIB_INCDIR)
   fi
  
-  if test "$PHP_MEMCACHE_SESSION" != "no"; then 
-	AC_MSG_CHECKING([for session includes])
-    session_inc_path=""
-
-    if test -f "$abs_srcdir/include/php/ext/session/php_session.h"; then
-      session_inc_path="$abs_srcdir/include/php"
-    elif test -f "$abs_srcdir/ext/session/php_session.h"; then
-      session_inc_path="$abs_srcdir"
-    elif test -f "$phpincludedir/ext/session/php_session.h"; then
-      session_inc_path="$phpincludedir"
-    else
-      for i in php php4 php5 php6; do
-        if test -f "$prefix/include/$i/ext/session/php_session.h"; then
-          session_inc_path="$prefix/include/$i"
-        fi
-      done
-    fi
-
-    if test "$session_inc_path" = ""; then
-      AC_MSG_ERROR([Cannot find php_session.h])
-    else
-      AC_MSG_RESULT([$session_inc_path])
-    fi
-  fi
-
   AC_MSG_CHECKING([for memcache session support])
   if test "$PHP_MEMCACHE_SESSION" != "no"; then
     AC_MSG_RESULT([enabled])
     AC_DEFINE(HAVE_MEMCACHE_SESSION,1,[Whether memcache session handler is enabled])
     AC_DEFINE(HAVE_MEMCACHE,1,[Whether you want memcache support])
-    PHP_NEW_EXTENSION(memcache, memcache.c memcache_pool.c memcache_queue.c memcache_ascii_protocol.c memcache_binary_protocol.c memcache_standard_hash.c memcache_consistent_hash.c memcache_session.c, $ext_shared,,-I$session_inc_path)
+    PHP_NEW_EXTENSION(memcache, memcache.c memcache_pool.c memcache_queue.c memcache_ascii_protocol.c memcache_binary_protocol.c memcache_standard_hash.c memcache_consistent_hash.c memcache_session.c, $ext_shared,,)
     ifdef([PHP_ADD_EXTENSION_DEP],
     [
       PHP_ADD_EXTENSION_DEP(memcache, session)