freetds-0.61

This commit is contained in:
jcs 2003-05-18 16:57:18 +00:00
parent 8be9799343
commit 9e5bc37306
12 changed files with 74 additions and 93 deletions

View File

@ -1,6 +1,6 @@
# $OpenBSD: Makefile,v 1.11 2003/02/08 17:21:41 jcs Exp $ # $OpenBSD: Makefile,v 1.12 2003/05/18 16:57:18 jcs Exp $
DISTNAME= freetds-0.60 DISTNAME= freetds-0.61
PKGNAME= ${DISTNAME}p1 PKGNAME= ${DISTNAME}p1
CATEGORIES= databases CATEGORIES= databases
@ -12,7 +12,7 @@ PERMIT_DISTFILES_FTP= Yes
COMMENT= "project to document and implement the TDS protocol" COMMENT= "project to document and implement the TDS protocol"
HOMEPAGE= http://www.freetds.org/ HOMEPAGE= http://www.freetds.org/
MASTER_SITES= ${MASTER_SITE_SUNSITE:=ALPHA/freetds/} MASTER_SITES= http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/
EXTRACT_SUFX= .tgz EXTRACT_SUFX= .tgz
MAINTAINER= Joshua Stein <jcs@rt.fm> MAINTAINER= Joshua Stein <jcs@rt.fm>
@ -24,8 +24,8 @@ CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
MAKE_ENV= RM=rm MAKE_ENV= RM=rm
MODULES= gettext MODULES= gettext
post-configure: #post-configure:
@chmod 644 ${WRKSRC}/include/tds_configs.h # @chmod 644 ${WRKSRC}/include/tds_configs.h
post-install: post-install:
@sed -e "s:@sysconfdir@:${SYSCONFDIR}:g" ${WRKSRC}/freetds.conf > \ @sed -e "s:@sysconfdir@:${SYSCONFDIR}:g" ${WRKSRC}/freetds.conf > \

View File

@ -1,3 +1,3 @@
MD5 (freetds-0.60.tgz) = bf719c9e1a5f8cd080dec6f9664e7f44 MD5 (freetds-0.61.tgz) = 15cc9829beb534606deb3020b3118eb9
RMD160 (freetds-0.60.tgz) = 28af14dbab995ca564dd39319489ce0139e05ac8 RMD160 (freetds-0.61.tgz) = 085122da3ea62785f5c0d0c5626bea53bb3a1ce4
SHA1 (freetds-0.60.tgz) = f03aa17139ef58648331fe538845a9ee2c162172 SHA1 (freetds-0.61.tgz) = 3b86f6cf08775ec1f36b2ead289638bcbb273f70

View File

@ -1,21 +1,17 @@
$OpenBSD: patch-Makefile_in,v 1.3 2002/09/12 00:12:48 jcs Exp $ $OpenBSD: patch-Makefile_in,v 1.4 2003/05/18 16:57:18 jcs Exp $
--- Makefile.in.orig Wed Sep 11 18:46:55 2002 --- Makefile.in.orig Sun May 18 11:18:36 2003
+++ Makefile.in Wed Sep 11 18:47:37 2002 +++ Makefile.in Sun May 18 11:18:45 2003
@@ -349,17 +349,6 @@ @@ -538,13 +538,6 @@
install-data-local: install-data-local:
- $(mkinstalldirs) $(DEFDIR) $(ETC) - $(mkinstalldirs) $(ETC)
- if [ -f $(ETC)/freetds.conf ]; \ - if test ! -f $(ETC)/freetds.conf; then \
- then :; \
- else \
- $(INSTALL_DATA) $(srcdir)/freetds.conf $(ETC)/freetds.conf; \ - $(INSTALL_DATA) $(srcdir)/freetds.conf $(ETC)/freetds.conf; \
- fi - fi
- if [ -f $(ETC)/locales.conf ]; \ - if test ! -f $(ETC)/locales.conf; then \
- then :; \
- else \
- $(INSTALL_DATA) $(srcdir)/locales.conf $(ETC)/locales.conf; \ - $(INSTALL_DATA) $(srcdir)/locales.conf $(ETC)/locales.conf; \
- fi - fi
test: # for default we do not uninstall configuration (they can be changed)
@echo "The 'make test' option has been replaced with 'make check'"; @DISTCHECK_BUILD_TRUE@uninstall-local:

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-configure,v 1.2 2002/09/12 00:12:48 jcs Exp $ $OpenBSD: patch-configure,v 1.3 2003/05/18 16:57:18 jcs Exp $
--- configure.orig Wed Sep 11 18:47:55 2002 --- configure.orig Sun May 18 11:20:43 2003
+++ configure Wed Sep 11 18:48:19 2002 +++ configure Sun May 18 11:20:44 2003
@@ -3520,6 +3520,8 @@ @@ -9981,6 +9981,8 @@
CFLAGS="$CFLAGS -DIODBC";
ODBC_INC=$with_iodbc/include; ODBC_INC=$with_iodbc/include;
LDFLAGS="$LDFLAGS -L$with_iodbc/lib"
odbc=true odbc=true
+else +else
+ odbc=false + odbc=false
fi fi
# Check whether --with-unixodbc or --without-unixodbc was given.

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-include-sybdb_h,v 1.1.1.1 2001/08/11 15:31:43 naddy Exp $
--- include/sybdb.h.orig Mon Jul 2 02:57:40 2001
+++ include/sybdb.h Sat Aug 11 02:58:00 2001
@@ -287,6 +287,10 @@ enum {
#define IN 1
#define OUT 2
+#ifndef DBMFIX
+#define DBMFIX
+#endif
+
#define DBSINGLE 0
#define DBDOUBLE 1
#define DBBOTH 2

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-odbc_unittests_Makefile_in,v 1.1 2003/02/08 17:21:41 jcs Exp $ $OpenBSD: patch-odbc_unittests_Makefile_in,v 1.2 2003/05/18 16:57:18 jcs Exp $
--- src/odbc/unittests/Makefile.in.orig Sat Feb 8 11:10:26 2003 --- src/odbc/unittests/Makefile.in.orig Sun May 18 11:24:19 2003
+++ src/odbc/unittests/Makefile.in Sat Feb 8 11:10:35 2003 +++ src/odbc/unittests/Makefile.in Sun May 18 11:24:21 2003
@@ -295,7 +295,7 @@ @@ -472,7 +472,7 @@
installdirs:
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-install: install-am -install: install-am
+install: +install:
uninstall-am: uninstall-includeHEADERS install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am uninstall: uninstall-am
all-am: Makefile $(HEADERS)

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-src_ctlib_unittests_Makefile_in,v 1.1 2003/02/08 17:21:41 jcs Exp $ $OpenBSD: patch-src_ctlib_unittests_Makefile_in,v 1.2 2003/05/18 16:57:18 jcs Exp $
--- src/ctlib/unittests/Makefile.in.orig Sat Feb 8 11:10:00 2003 --- src/ctlib/unittests/Makefile.in.orig Sun May 18 11:25:04 2003
+++ src/ctlib/unittests/Makefile.in Sat Feb 8 11:10:13 2003 +++ src/ctlib/unittests/Makefile.in Sun May 18 11:25:14 2003
@@ -350,7 +350,7 @@ @@ -509,7 +509,7 @@
installdirs:
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-install: install-am -install: install-am
+install: +install:
uninstall-am: uninstall-includeHEADERS install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am uninstall: uninstall-am
all-am: Makefile $(HEADERS)

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-src_dblib_bcp_c,v 1.1 2002/12/13 07:38:04 pvalchev Exp $ $OpenBSD: patch-src_dblib_bcp_c,v 1.2 2003/05/18 16:57:18 jcs Exp $
--- src/dblib/bcp.c.orig Thu Dec 12 00:39:21 2002 --- src/dblib/bcp.c.orig Sun May 18 11:26:57 2003
+++ src/dblib/bcp.c Thu Dec 12 00:39:38 2002 +++ src/dblib/bcp.c Sun May 18 11:27:19 2003
@@ -858,7 +858,7 @@ RETCODE _bcp_get_term_data(FILE *hostfil @@ -918,7 +918,7 @@
int j = 0; int j = 0;
int termfound = 1; int termfound = 1;
-char x; -char x;
+int x; +int x;
char *tester = NULL; char *tester = NULL;
int bufpos = 0; int bufpos = 0;
int found = 0; int found = 0;

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-src_dblib_unittests_Makefile_in,v 1.1 2003/02/08 17:21:41 jcs Exp $ $OpenBSD: patch-src_dblib_unittests_Makefile_in,v 1.2 2003/05/18 16:57:18 jcs Exp $
--- src/dblib/unittests/Makefile.in.orig Sat Feb 8 11:09:31 2003 --- src/dblib/unittests/Makefile.in.orig Sun May 18 11:28:07 2003
+++ src/dblib/unittests/Makefile.in Sat Feb 8 11:09:49 2003 +++ src/dblib/unittests/Makefile.in Sun May 18 11:28:13 2003
@@ -467,7 +467,7 @@ @@ -672,7 +672,7 @@
installdirs:
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-install: install-am -install: install-am
+install: +install:
uninstall-am: uninstall-includeHEADERS install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am uninstall: uninstall-am
all-am: Makefile $(HEADERS)

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-src_tds_unittests_Makefile_in,v 1.1 2003/02/08 17:21:41 jcs Exp $ $OpenBSD: patch-src_tds_unittests_Makefile_in,v 1.2 2003/05/18 16:57:18 jcs Exp $
--- src/tds/unittests/Makefile.in.orig Sat Feb 8 11:08:00 2003 --- src/tds/unittests/Makefile.in.orig Sun May 18 11:29:00 2003
+++ src/tds/unittests/Makefile.in Sat Feb 8 11:08:29 2003 +++ src/tds/unittests/Makefile.in Sun May 18 11:29:05 2003
@@ -360,7 +360,7 @@ @@ -497,7 +497,7 @@
installdirs:
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-install: install-am -install: install-am
+install: +install:
uninstall-am: uninstall-includeHEADERS install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am uninstall: uninstall-am
all-am: Makefile $(HEADERS)

View File

@ -1,6 +1,6 @@
@comment $OpenBSD: PFRAG.shared,v 1.3 2002/09/12 00:12:48 jcs Exp $ @comment $OpenBSD: PFRAG.shared,v 1.4 2003/05/18 16:57:18 jcs Exp $
lib/libct.so.0.0 lib/libct.so.1.0
lib/libsybdb.so.1.0 lib/libsybdb.so.3.0
lib/libtds.so.0.0 lib/libtds.so.2.0
lib/libtdssrv.so.0.0 lib/libtdssrv.so.1.0
DYNLIBDIR(%D/lib) DYNLIBDIR(%D/lib)

View File

@ -1,5 +1,6 @@
@comment $OpenBSD: PLIST,v 1.5 2003/02/08 17:21:41 jcs Exp $ @comment $OpenBSD: PLIST,v 1.6 2003/05/18 16:57:18 jcs Exp $
bin/freebcp bin/freebcp
bin/tdspool
bin/tsql bin/tsql
include/bkpublic.h include/bkpublic.h
include/cspublic.h include/cspublic.h
@ -7,17 +8,15 @@ include/cstypes.h
include/ctlib.h include/ctlib.h
include/ctpublic.h include/ctpublic.h
include/dblib.h include/dblib.h
include/freebcp.h
include/sqldb.h include/sqldb.h
include/sqlfront.h include/sqlfront.h
include/sybdb.h include/sybdb.h
include/syberror.h include/syberror.h
include/sybfront.h include/sybfront.h
include/tds.h include/tds.h
include/tds_configs.h include/tds_sysdep_public.h
include/tdsconvert.h include/tdsconvert.h
include/tdsodbc.h include/tdssrv.h
include/tdsutil.h
include/tdsver.h include/tdsver.h
lib/libct.a lib/libct.a
lib/libct.la lib/libct.la