71af13a24a
Pointed out in PR 35383. Jan 05 2007, V3.52.5: * Added support for FileDSN * Added support for Connection Pooling * Added check for tracefile size * Call ODBC 2.x functions in driver if application uses ODBC 2.x only calls * Fixed problem parsing driver result in SQLSetStmtAttr * Fixed source code readability * Fixed bug in overwriting driver name * Fixed check for /Library/ODBC for Mac OS X * Fixed prototypes * Rewrote bootstrap script and configure summary * Use localtime_r in tracing when available * Fixed build issues with Mac OS X * Small code cleanups and fixes Jan 26 2006, V3.52.4: * Added support for Mac OS X 10.4 Universal kit (ppc, ppc64 and i386) * Removed dependency between iodbc and iodbcinst shared libraries * Cleanup Mac OS X build process * Clarify LGPL license conditions * Fixed problem with error on subsequent SQLExecute statements * Fixed problem building 64bit GUI components * Fixed compiler warnings * Fixed problem determining which compiler to use on AIX * Enabled SHLIB_PATH on HP/UX * Fixed problem using # as comment in odbc.ini file * Disabled --disable-odbc3 flag * Small code cleanups and fixes pkgsrc chages: Fix comment and descr, refrect current status.
30 lines
821 B
Makefile
30 lines
821 B
Makefile
# $NetBSD: Makefile,v 1.14 2007/01/12 17:27:20 obache Exp $
|
|
|
|
DISTNAME= libiodbc-3.52.5
|
|
PKGNAME= ${DISTNAME:S/^lib//}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.iodbc.org/downloads/iODBC/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.iodbc.org/
|
|
COMMENT= ODBC 3.x driver manager
|
|
|
|
CONFLICTS+= unixodbc-[0-9]*
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-gui
|
|
CONFIGURE_ARGS+= --with-iodbc-inidir=${PKG_SYSCONFDIR}
|
|
LIBADD_DL= ${DL_LDFLAGS} ${DL_LIBS}
|
|
MAKE_FLAGS+= LIBADD_DL=${LIBADD_DL:Q}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
CONF_FILES= ${EGDIR}/odbc.ini ${PKG_SYSCONFDIR}/odbc.ini
|
|
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/etc/odbc.ini.sample ${EGDIR}/odbc.ini
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|