summaryrefslogtreecommitdiff
path: root/finance/gnucash/files/patch-PostgresBackend
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-07-27 14:23:18 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-07-27 14:23:18 +0000
commitac25d171d06f650a27cb8bbfb8f8e5a493657140 (patch)
treec748cf5a39347f4b19e8fed97cc14c47e9892ca2 /finance/gnucash/files/patch-PostgresBackend
parentFix DEBUG builds by checking for all error states from pthread_mutex_trylock(). (diff)
Fix US-ASCII encoding problem with the PostgreSQL backend. US-ASCII will be
substituted by SQL_ASCII which Postgres understands. Submitted by: Richard Schilling <rschi@rsmba.biz>
Notes
Notes: svn path=/head/; revision=114880
Diffstat (limited to '')
-rw-r--r--finance/gnucash/files/patch-PostgresBackend16
1 files changed, 16 insertions, 0 deletions
diff --git a/finance/gnucash/files/patch-PostgresBackend b/finance/gnucash/files/patch-PostgresBackend
new file mode 100644
index 000000000000..2126e467fa70
--- /dev/null
+++ b/finance/gnucash/files/patch-PostgresBackend
@@ -0,0 +1,16 @@
+*** src/backend/postgres/PostgresBackend.orig Mon Jul 26 17:17:45 2004
+--- src/backend/postgres/PostgresBackend.c Mon Jul 26 17:33:16 2004
+***************
+*** 2104,2109 ****
+--- 2104,2114 ----
+ if (!strcmp (encoding, "ANSI_X3.4-1968"))
+ encoding = "SQL_ASCII";
+
++ if (!strcmp(encoding, "US-ASCII"))
++ encoding = "SQL_ASCII";
++
++ printf("\nDatabase encoding is: %s.\n", encoding);
++
+ /* create the database */
+ p = be->buff; *p =0;
+ p = stpcpy (p, "CREATE DATABASE ");