summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2004-02-03 08:38:22 +0000
committerStig Bakken <ssb@php.net>2004-02-03 08:38:22 +0000
commit330d9f6352f4a8af90e1b053399e4ab17b3b00b1 (patch)
tree8dad472ac667ae2f763781c6cf1bbad61c99da12
parent3470ddc089fbe7215a0c36085c9140e41fb44c19 (diff)
downloadphp-git-330d9f6352f4a8af90e1b053399e4ab17b3b00b1.tar.gz
SQLITE_ENCODING should be UTF8 rather than UTF-8
-rw-r--r--ext/sqlite/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/config.m4 b/ext/sqlite/config.m4
index 8dc879676a..e8419c0824 100644
--- a/ext/sqlite/config.m4
+++ b/ext/sqlite/config.m4
@@ -78,7 +78,7 @@ if test "$PHP_SQLITE" != "no"; then
dnl in funcs.c uses assert(), which is a bit silly and something
dnl we want to avoid. This assert() was removed in SQLite 2.8.9.
if test "$PHP_SQLITE_UTF8" = "yes"; then
- SQLITE_ENCODING="UTF-8"
+ SQLITE_ENCODING="UTF8"
AC_DEFINE(SQLITE_UTF8, 1, [ ])
else
SQLITE_ENCODING="ISO8859"