cp reflector xlxd.* and don't link sql if not needed

pull/1/head
Tom Early 5 years ago
parent 68750d4171
commit dc36aab96d

@ -49,7 +49,7 @@ InstallReflector () {
cp ../config/xlxd.blacklist .
fi
if [ ! -e xlxd.interlink ]; then
cp ../config/xlxd.whitelist .
cp ../config/xlxd.interlink .
fi
if [[ "$g3support" == true ]] && [ ! -e xlxd.terminal ]; then
cp ../config/xlxd.terminal .
@ -62,7 +62,7 @@ InstallReflector () {
cp ../config/xlxd.blacklist xrfd.blacklist
fi
if [ ! -e xrfd.interlink ]; then
cp ../config/xlxd.whitelist xrfd.interlink
cp ../config/xlxd.interlink xrfd.interlink
fi
if [[ "$g3support" == true ]] && [ ! -e xrfd.terminal ]; then
cp ../config/xlxd.terminal xrfd.terminal

@ -231,6 +231,11 @@ WriteSRCMKFile ()
else
echo "debug = $dbsupport" >> $file
fi
if [ -z ${ysflocaldb+x} ]; then
echo "ysf_db = $ysflocaldb_d" >> $file
else
echo "ysf_db = $ysflocaldb" >> $file
fi
}
WriteAmbeHFile ()

@ -44,8 +44,10 @@ SRCS = $(XRFSRCS)
ifeq ($(is_xlx), true)
SRCS += $(XLXSRCS)
ifeq ($(ysf_db), true)
LDFLAGS += `mysql_config --libs`
endif
endif
ifdef tc_ip
SRCS += ctranscoder.cpp ccodecstream.cpp

Loading…
Cancel
Save

Powered by TurnKey Linux.