include.am 684 B

123456789101112131415161718192021
  1. # vim:ft=automake
  2. # Gearman
  3. # Copyright (C) 2011 Data Differential, http://datadifferential.com/
  4. # All rights reserved.
  5. #
  6. # Use and distribution licensed under the BSD license. See
  7. # the COPYING file in the parent directory for full text.
  8. #
  9. # All paths should be given relative to the root
  10. #
  11. noinst_HEADERS+= libgearman-server/plugins/queue/libmemcached/queue.h
  12. if HAVE_LIBMEMCACHED
  13. libgearman_server_libgearman_server_la_SOURCES+= libgearman-server/plugins/queue/libmemcached/queue.cc
  14. libgearman_server_libgearman_server_la_CXXFLAGS+= $(LIBMEMCACHED_CFLAGS)
  15. libgearman_server_libgearman_server_la_LIBADD+= $(LIBMEMCACHED_LIB)
  16. gearmand_gearmand_LDADD+= $(LIBMEMCACHED_LIB)
  17. endif