* harbour/harbour.spec
* harbour/make_rpm.sh
* harbour/contrib/Makefile
* cleanup and added HB_CONTRIBLIBS to set additional contrib libraries
+ added -with xhb switch to build Harbour RPMs with HB_COMPAT_XHB
macro
* harbour/contrib/mysql/Makefile
+ added -I/usr/include/mysql -I/usr/local/include/mysql to C compiler
flags
* harbour/contrib/mysql/tmysql.prg
* harbour/contrib/mysql/tsqlbrw.prg
* cleaned -w2 warnings - in few places I added HB_SYMBOL_UNUSED()
which should be replace sin the future by valid code
21 lines
333 B
Makefile
21 lines
333 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES=\
|
|
mysql.c \
|
|
|
|
PRG_SOURCES=\
|
|
tmysql.prg \
|
|
tsqlbrw.prg \
|
|
|
|
LIBNAME=hbmysql
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
# a workaround of a problem with different include directories
|
|
# for mysql header files between different unix distributions
|
|
CFLAGS := -I/usr/include/mysql -I/usr/local/include/mysql
|