Skip to content

Commit

Permalink
Unicode support.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei committed Aug 11, 2005
1 parent 0ce91f5 commit b407a3f
Show file tree
Hide file tree
Showing 98 changed files with 6,316 additions and 1,003 deletions.
10 changes: 10 additions & 0 deletions Makefile.global
Expand Up @@ -62,6 +62,16 @@ test: all
echo "ERROR: Cannot run tests without CLI sapi."; \
fi

utest:
-@if test -x $(SAPI_CLI_PATH) && test ! -z $(SAPI_CLI_PATH); then \
TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
TEST_PHP_SRCDIR=$(top_srcdir) \
CC="$(CC)" \
$(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' $(top_srcdir)/run-tests.php -d 'unicode_semantics=on' -d 'unicode.output_encoding=utf-8' $(TESTS); \
else \
echo "ERROR: Cannot run tests without CLI sapi."; \
fi

clean:
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
Expand Down

0 comments on commit b407a3f

Please sign in to comment.