- Timestamp:
- May 15, 2015, 4:00:25 PM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 03295a9
- Parents:
- e765670
- git-author:
- Thomas Klute <thomas2.klute@…> (05/15/15 11:00:41)
- git-committer:
- Thomas Klute <thomas2.klute@…> (05/15/15 16:00:25)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
m4/apr_memcache.m4
re765670 r70509f8 45 45 apr_memcache_includedir=$includedir/apr_memcache-0 46 46 fi 47 47 48 CFLAGS="-I$apr_memcache_includedir $CFLAGS" 49 48 50 49 51 AC_CHECK_LIB( … … 58 60 ] 59 61 ) 62 63 64 dnl # if the apr_memcache was not found, try apr-util 65 if test -z "${APR_MEMCACHE_LIBS}"; then 66 if test -n "$apr_memcache_includes"; then 67 apr_memcache_includedir=$apr_memcache_includes 68 elif test -n "$apr_memcache_prefix"; then 69 apr_memcache_includedir=$apr_memcache_prefix/include/aprutil-1 70 else 71 apr_memcache_includedir=$includedir/aprutil-1 72 fi 73 AC_CHECK_LIB( 74 aprutil-1, 75 apr_memcache_create, 76 [ 77 APR_MEMCACHE_LIBS="`apu-1-config --link-ld`" 78 APR_MEMCACHE_CFLAGS="`apu-1-config --includes`" 79 ] 80 ) 81 fi 82 83 60 84 CFLAGS=$save_CFLAGS 61 85 LDFLAGS=$save_LDFLAGS
Note: See TracChangeset
for help on using the changeset viewer.