123456789101112131415161718192021 |
- # vim:ft=automake
- # Gearman
- # Copyright (C) 2011 Data Differential, http://datadifferential.com/
- # All rights reserved.
- #
- # Use and distribution licensed under the BSD license. See
- # the COPYING file in the parent directory for full text.
- #
- # All paths should be given relative to the root
- #
- noinst_HEADERS+= libgearman-server/plugins/queue/libmemcached/queue.h
- if HAVE_LIBMEMCACHED
- libgearman_server_libgearman_server_la_SOURCES+= libgearman-server/plugins/queue/libmemcached/queue.cc
- libgearman_server_libgearman_server_la_CXXFLAGS+= $(LIBMEMCACHED_CFLAGS)
- libgearman_server_libgearman_server_la_LIBADD+= $(LIBMEMCACHED_LIB)
- gearmand_gearmand_LDADD+= $(LIBMEMCACHED_LIB)
- endif
|