summaryrefslogtreecommitdiff
path: root/databases/mysql2odbc/files
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mysql2odbc/files')
-rw-r--r--databases/mysql2odbc/files/patch-configure11
-rw-r--r--databases/mysql2odbc/files/patch-libfakesql.c20
-rw-r--r--databases/mysql2odbc/files/patch-libfakesql.h17
-rw-r--r--databases/mysql2odbc/files/patch-mtest.c15
4 files changed, 0 insertions, 63 deletions
diff --git a/databases/mysql2odbc/files/patch-configure b/databases/mysql2odbc/files/patch-configure
deleted file mode 100644
index 712281f23007..000000000000
--- a/databases/mysql2odbc/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig Sat Aug 20 16:05:00 2005
-+++ configure Sat Aug 20 16:05:10 2005
-@@ -8915,7 +8915,7 @@
-
- echo "$as_me:$LINENO: checking for UnixODBC support" >&5
- echo $ECHO_N "checking for UnixODBC support... $ECHO_C" >&6
-- if test -f "$withval/lib/libodbc.la"
-+ if test -f "$withval/lib/libodbc.a"
- then
- found_odbc=yes
- ODBC_CFLAGS="-I$withval/include"
diff --git a/databases/mysql2odbc/files/patch-libfakesql.c b/databases/mysql2odbc/files/patch-libfakesql.c
deleted file mode 100644
index bc5389849bf5..000000000000
--- a/databases/mysql2odbc/files/patch-libfakesql.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- libfakesql.c.orig Sat Dec 16 16:28:53 2006
-+++ libfakesql.c Sat Dec 16 16:30:32 2006
-@@ -127,7 +127,7 @@
- {
- TSQLPrivate *pDB;
-
-- DBOF(mysql) = pDB = (TSQLPrivate *) calloc (1, sizeof (TSQLPrivate));
-+ mysql->net.vio = pDB = (TSQLPrivate *) calloc (1, sizeof (TSQLPrivate));
- if (pDB == NULL)
- {
- _set_error (mysql, CR_OUT_OF_MEMORY);
-@@ -166,7 +166,7 @@
- pDB->hStmt = SQL_NULL_HSTMT;
- pDB->bConnected = 0;
- free (pDB);
-- DBOF(mysql) = NULL;
-+ mysql->net.vio = NULL;
- }
- }
-
diff --git a/databases/mysql2odbc/files/patch-libfakesql.h b/databases/mysql2odbc/files/patch-libfakesql.h
deleted file mode 100644
index a161d055ada0..000000000000
--- a/databases/mysql2odbc/files/patch-libfakesql.h
+++ /dev/null
@@ -1,17 +0,0 @@
---- libfakesql.h.orig Sat Aug 20 16:16:01 2005
-+++ libfakesql.h Sat Aug 20 16:00:18 2005
-@@ -47,6 +47,14 @@
-
- ///////////////////////////////////////////////////////////////////////////////
-
-+#ifndef FALSE
-+#define FALSE 0
-+#endif
-+
-+#ifndef TRUE
-+#define TRUE 1
-+#endif
-+
- #define NAME_LEN 64 /* Field/table name length */
- #define HOSTNAME_LENGTH 60
- #define USERNAME_LENGTH 16
diff --git a/databases/mysql2odbc/files/patch-mtest.c b/databases/mysql2odbc/files/patch-mtest.c
deleted file mode 100644
index 00a90f75e87f..000000000000
--- a/databases/mysql2odbc/files/patch-mtest.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- mtest.c.orig Fri Jun 20 21:39:48 2003
-+++ mtest.c Tue Sep 13 18:21:18 2005
-@@ -27,10 +27,10 @@
- #include <stdio.h>
- #include <string.h>
- #include <memory.h>
--#include <malloc.h>
-+#include <stdlib.h>
-
- #ifndef WIN32
--# include <getopt.h>
-+# include <unistd.h>
- #endif
-
- #ifdef FAKE