Files
harbour-core/harbour/contrib/mysql/Makefile
Przemyslaw Czerpak 64c3fde630 2007-06-01 19:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* 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
2007-06-01 17:39:46 +00:00

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