3e666d2f42
Changes since 0.51: - tdspool now working for big endian systems - Added some descriptive text to the PWD file - EINTR handling during login (Kostya Ivanov) - Added support for TLI style interfaces files (thanks Michael for explaining) - Added 'text size' config option which changes textsize on connect - Added preliminary TDS 8.0 support (no new datatypes supported though) - Added 'emulate little endian' config flag - Some TDS5 placeholder stuff. Not ready for primetime yet. - Added support for new configuration format (freetds.conf) - unixODBC now working - Added support for nullable bits (BITN) - checked in work on tds connection pooling server - added preliminary userguide (James Lowden and me) - a lot of work on ODBC driver, now works with PHP - added config options for iodbc/unixodbc (unixODBC doesn't actually work yet) - image -> char now works (verified with ctlib only) - varbinary -> char now works with destlen of -1 - New config routines - numeric problem with 7.0 fixed - digit cutoff on numerics/floats fixed As well as some bug fixes.
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# $NetBSD: buildlink.mk,v 1.10 2002/03/14 23:57:02 wiz Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use freetds.
|
|
#
|
|
# To use this Makefile fragment, simply:
|
|
#
|
|
# (1) Optionally define BUILDLINK_DEPENDS.freetds to the dependency pattern
|
|
# for the version of freetds desired.
|
|
# (2) Include this Makefile fragment in the package Makefile,
|
|
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
|
|
# search path, and
|
|
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
|
|
# path.
|
|
|
|
.if !defined(FREETDS_BUILDLINK_MK)
|
|
FREETDS_BUILDLINK_MK= # defined
|
|
|
|
.include "../../mk/bsd.buildlink.mk"
|
|
|
|
BUILDLINK_DEPENDS.freetds?= freetds>=0.53
|
|
DEPENDS+= ${BUILDLINK_DEPENDS.freetds}:../../databases/freetds
|
|
|
|
EVAL_PREFIX+= BUILDLINK_PREFIX.freetds=freetds
|
|
BUILDLINK_PREFIX.freetds_DEFAULT= ${LOCALBASE}
|
|
BUILDLINK_FILES.freetds= freetds/include/*
|
|
BUILDLINK_FILES.freetds+= freetds/lib/*
|
|
|
|
BUILDLINK_TARGETS.freetds= freetds-buildlink
|
|
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.freetds}
|
|
|
|
pre-configure: ${BUILDLINK_TARGETS.freetds}
|
|
freetds-buildlink: _BUILDLINK_USE
|
|
|
|
.endif # FREETDS_BUILDLINK_MK
|