Skip to content

Instantly share code, notes, and snippets.

Index: sapi/cli/config.w32
===================================================================
--- sapi/cli/config.w32 (revision 308839)
+++ sapi/cli/config.w32 (working copy)
@@ -6,7 +6,8 @@
ARG_ENABLE('cli-win32', 'Build console-less CLI version of PHP', 'no');
if (PHP_CLI == "yes") {
- SAPI('cli', 'php_cli.c', 'php.exe');
+ SAPI('cli', 'php_cli.c php_http_parser.c php_cli_server.c', 'php.exe');
@janus
janus / para.clj
Created January 26, 2011 11:10
A function that splits sentence\paragraph if it contains [ \* \{ ]
;;Build a function splitParagraph which, given a paragraph string, returns an array of paragraph fragments. ;;Think of a good way to represent the fragments.
;;Clojure version (naive)
(ns moon)
(def map-tag {\{ \} \* \* })
;; the tags use will use for as breaking point....
(def map-type { \* "Footnotes" \{ "References"})
;; what you intend to use as your type
(def map-num { \{ 1 \* 1 })
;; just to make use you started one char above