1234567891011121314151617181920212223 |
- # vim:ft=automake
- # Gearman
- # Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/
- # Copyright (C) 2011 Oleksiy Krivoshey
- # 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/mysql/queue.h
- if HAVE_LIBMYSQL
- libgearman_server_libgearman_server_la_SOURCES+= libgearman-server/plugins/queue/mysql/queue.cc
- libgearman_server_libgearman_server_la_CFLAGS+= @MYSQL_INCLUDE@
- libgearman_server_libgearman_server_la_CXXFLAGS+= @MYSQL_INCLUDE@
- libgearman_server_libgearman_server_la_LDFLAGS+= @MYSQL_LDFLAGS@
- endif
|