summaryrefslogtreecommitdiff
path: root/databases/mysql++/files
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mysql++/files')
-rw-r--r--databases/mysql++/files/README26
-rw-r--r--databases/mysql++/files/extra-patch-sqlplusint-connection.cc11
2 files changed, 0 insertions, 37 deletions
diff --git a/databases/mysql++/files/README b/databases/mysql++/files/README
deleted file mode 100644
index 531f16962bc8..000000000000
--- a/databases/mysql++/files/README
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-If you haven't met mysql++ before, please take a look at the documentation
-in ../../doc/mysql++ before trying to play with these examples. Thank you.
-
-To compile a mysql++ program,
-
- o you have to have libmysqlclient installed on your system. It's
- provided by the mysql-client port/package. MySQL++ now needs
- MySQL 3.23 client libraries to run, so if you have old 3.22
- libraries, please upgrade them.
-
- o you have to link your programs with the sqlplus library
-
- o you have to add "-D_FIX_FOR_BSD_" to your CXXFLAGS environment
-
-
-For example, you can try to compile simple1.cc with something like this
-
-c++ -D_FIX_FOR_BSD_ -I/usr/local/include/mysql -L/usr/local/lib -lsqlplus simple1.cc -o simple1
-
-
-Happy mysql++'ing.
-
- -Miklos Niedermayer (mico@bsd.hu)
-
diff --git a/databases/mysql++/files/extra-patch-sqlplusint-connection.cc b/databases/mysql++/files/extra-patch-sqlplusint-connection.cc
deleted file mode 100644
index 1fd2f951354b..000000000000
--- a/databases/mysql++/files/extra-patch-sqlplusint-connection.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- sqlplusint/connection.cc.orig Fri Nov 21 15:59:47 2003
-+++ sqlplusint/connection.cc Fri Nov 21 16:00:19 2003
-@@ -109,7 +109,7 @@
- }
-
- string Connection::info () {
-- char *i = mysql_info(&mysql);
-+ const char *i = mysql_info(&mysql);
- if (!i)
- return string();
- else