diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2013-10-28 22:01:40 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2013-10-28 22:01:40 +0000 |
commit | 0fdf155fceb8fe0248dcf8df005ad2aa7d018d85 (patch) | |
tree | 737fd3cbe4eb3aa106235ec22dd12ee3cbfbc4df /databases/sqlrelay/files/patch-const-char-ptr | |
parent | - Add missing plist entries (diff) |
- Update devel/rudiments to 0.43 [1]
- Add support for STAGEDIR [1]
- Update databases/sqlrelay to 0.52 (fixes build with new devel/rudiments)
- Remove leading article from COMMENT
- Add support for STAGEDIR
- Remove GTK1 option - no longer available feature
- Rename INTERBASE option to FIREBIRD (globally defined)
- Rename SQLITE2 to SQLITE3 as dependency changed to databases/sqlite3
- Use options substitutions, sort plist
PR: ports/181880 [1]
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Notes
Notes:
svn path=/head/; revision=331904
Diffstat (limited to 'databases/sqlrelay/files/patch-const-char-ptr')
-rw-r--r-- | databases/sqlrelay/files/patch-const-char-ptr | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/databases/sqlrelay/files/patch-const-char-ptr b/databases/sqlrelay/files/patch-const-char-ptr deleted file mode 100644 index 8e38b1e4631e..000000000000 --- a/databases/sqlrelay/files/patch-const-char-ptr +++ /dev/null @@ -1,26 +0,0 @@ -diff --git src/connection/sqlrcursor/queryparse.C src/connection/sqlrcursor/queryparse.C -index 989cc50..fed0738 100644 ---- src/connection/sqlrcursor/queryparse.C -+++ src/connection/sqlrcursor/queryparse.C -@@ -61,7 +61,7 @@ void sqlrcursor_svr::checkForTempTable(const char *query, uint32_t length) { - // see if the query matches the pattern for a temporary query that - // creates a temporary table - if (createtemp.match(ptr)) { -- ptr=createtemp.getSubstringEnd(0); -+ ptr=(char *)createtemp.getSubstringEnd(0); - } else { - return; - } -diff --git src/connections/router/routerconnection.C src/connections/router/routerconnection.C -index b8b4b34..f67fb4b 100644 ---- src/connections/router/routerconnection.C -+++ src/connections/router/routerconnection.C -@@ -632,7 +632,7 @@ void routercursor::checkForTempTable(const char *query, uint32_t length) { - - // look for "create global temporary table " - if (createoratemp.match(ptr)) { -- ptr=createoratemp.getSubstringEnd(0); -+ ptr=(char *)createoratemp.getSubstringEnd(0); - } else { - return; - } |