include.am 719 B

1234567891011121314151617181920212223
  1. # vim:ft=automake
  2. # Gearman
  3. # Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/
  4. # Copyright (C) 2011 Oleksiy Krivoshey
  5. # All rights reserved.
  6. #
  7. # Use and distribution licensed under the BSD license. See
  8. # the COPYING file in the parent directory for full text.
  9. #
  10. # All paths should be given relative to the root
  11. #
  12. noinst_HEADERS+= libgearman-server/plugins/queue/mysql/queue.h
  13. if HAVE_LIBMYSQL
  14. libgearman_server_libgearman_server_la_SOURCES+= libgearman-server/plugins/queue/mysql/queue.cc
  15. libgearman_server_libgearman_server_la_CFLAGS+= @MYSQL_INCLUDE@
  16. libgearman_server_libgearman_server_la_CXXFLAGS+= @MYSQL_INCLUDE@
  17. libgearman_server_libgearman_server_la_LDFLAGS+= @MYSQL_LDFLAGS@
  18. endif