This repository has been archived on 2024-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
2015-10-14 11:03:33 +00:00
|
|
|
|
|
|
|
mysql_LIBS = `mysql_config --libs`
|
|
|
|
mysql_CFLAGS = `mysql_config --cflags`
|
|
|
|
|
2018-07-02 15:20:11 +00:00
|
|
|
vn_mysql_libdir = /usr/lib/mysql/plugin
|
2015-10-14 11:03:33 +00:00
|
|
|
vn_mysql_CFLAGS = \
|
|
|
|
-Wall -O3 \
|
|
|
|
$(mysql_CFLAGS)
|
|
|
|
vn_mysql_LDFLAGS = \
|
|
|
|
-no-undefined \
|
|
|
|
-module \
|
|
|
|
-avoid-version \
|
|
|
|
-export-dynamic \
|
|
|
|
$(mysql_LIBS)
|
|
|
|
|