1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# $Id$
#
# WARNING: do not run this directly, it should be run by the master Makefile
include ../../Makefile.defs
auto_gen=
NAME=db_mysql.so
DEFS +=-DSER_MOD_INTERFACE
# set CROSS_COMPILE to true if you want to skip
# the autodetection
# CROSS_COMPILE=true
ifeq ($(CROSS_COMPILE),)
MYSQLCFG=$(shell which mysql_config)
ifeq ($(MYSQLCFG),)
MYSQLCFG=$(shell which mysql_config5)
endif
endif
ifneq ($(MYSQLCFG),)
# use autodetection
DEFS += $(shell $(MYSQLCFG) --include | sed 's/\(-I.*\)\/mysql/\1/g' )
LIBS = $(shell $(MYSQLCFG) --libs)
else
# mysql.h locations (freebsd,openbsd solaris)
DEFS +=-I$(LOCALBASE)/include \
-I$(LOCALBASE)/include/mysql \
-I$(LOCALBASE)/mysql/include
# libmysqlclient locations on RH/Suse, Solaris /OpenBSD, FreeBSD
# (Debian does the right thing and puts it in /usr/lib)
LIBS=-L$(LOCALBASE)/lib -L$(LOCALBASE)/lib/mysql \
-L$(LOCALBASE)/mysql/lib/mysql/ \
-L$(LOCALBASE)/mysql/lib \
-lmysqlclient -lz
endif
SERLIBPATH=../../lib
SER_LIBS=$(SERLIBPATH)/srdb2/srdb2 $(SERLIBPATH)/srdb1/srdb1
ifneq (,$(filter sip-router ser, $(INSTALL_FLAVOUR)))
MOD_INSTALL_SHARE= ../../scripts/mysql/my_create.sql \
../../scripts/mysql/my_data.sql \
../../scripts/mysql/my_drop.sql
else ifeq ($(INSTALL_FLAVOUR),kamailio)
#TODO
endif
include ../../Makefile.modules
ifneq (,$(filter sip-router ser, $(INSTALL_FLAVOUR)))
# extra install for ser and sip-router
install-mysql-script: $(bin_prefix)/$(bin_dir)
sed -e "s#^DEFAULT_SCRIPT_DIR.*#DEFAULT_SCRIPT_DIR=\"$(share_prefix)/$(share_dir)\"#g" \
< ../../scripts/mysql/$(SCR_NAME)_mysql.sh > \
$(bin_prefix)/$(bin_dir)/$(MAIN_NAME)_mysql.sh
chmod 755 $(bin_prefix)/$(bin_dir)/$(MAIN_NAME)_mysql.sh
install-scripts: install-mysql-script
else ifeq ($(INSTALL_FLAVOUR),kamailio)
# extra install for kamailio
install-mysql-scripts: $(bin_prefix)/$(bin_dir)
MYSQLON=yes $(MAKE) -C ../../utils/kamctl/ install-modules
install-scripts: install-mysql-scripts
endif # INSTALL_FLAVOUR
|