diff options
author | Mark L. Woodward <mlwmohawk@php.net> | 2001-09-25 12:12:48 +0000 |
---|---|---|
committer | Mark L. Woodward <mlwmohawk@php.net> | 2001-09-25 12:12:48 +0000 |
commit | 622fe4d488719982e85970f4ec117977ca3eb859 (patch) | |
tree | 19c26ac0a578665c61e71851249a25153cbb2881 /ext/msession | |
parent | 32b196e4f7d3da576513521779eee189e62630db (diff) | |
download | php-git-622fe4d488719982e85970f4ec117977ca3eb859.tar.gz |
Changed config.m4 to a better default, updated README.
Diffstat (limited to 'ext/msession')
-rw-r--r-- | ext/msession/README | 11 | ||||
-rw-r--r-- | ext/msession/config.m4 | 6 |
2 files changed, 8 insertions, 9 deletions
diff --git a/ext/msession/README b/ext/msession/README index ef428f3849..60cea7cdfa 100644 --- a/ext/msession/README +++ b/ext/msession/README @@ -1,21 +1,20 @@ This is msession, it is an interface to a stand-alone session management system. The msession daemon can be found at -HTTP://www.mohawksoft.com under Project Phoenix +Mohawk Software's web site, under Project Phoenix + +http://www.mohawksoft.com/phoenix.html Requirements: Mohawk Software's Phoenix library. Mohawk Software's msession daemon. -http://www.mohawksoft.com/phoenix.html Building: -I am still a newbee at PHP hacking so I am scared to death -I will break something, and I (regretfully) have not invested -the time to make all this stuff automatic. +I (regretfully) have not invested the time to make all +this stuff automatic. In the config.m4 file you will need to specify the include and library directories for Phoenix. The setting in config.m4 is probably wrong. - diff --git a/ext/msession/config.m4 b/ext/msession/config.m4 index 6354d1a367..ee9104b9fc 100644 --- a/ext/msession/config.m4 +++ b/ext/msession/config.m4 @@ -3,11 +3,11 @@ PHP_ARG_WITH(msession, for msession support, [ --with-msession Include msession support]) if test "$PHP_MSESSION" != "no"; then - PHOENIX_HOME="/local/projects/phoenix" + PHOENIX_HOME="/usr/local/phoenix" AC_DEFINE(HAVE_MSESSION, 1, [ ]) PHP_EXTENSION(msession, $ext_shared) - PHOENIX_INCLUDE_="-I/local/projects/phoenix/lib" - PHP_ADD_LIBRARY_WITH_PATH(phoenix, "/local/projects/phoenix/lib", PHOENIX_LIB) + PHOENIX_INCLUDE_="-I/usr/local/phoenix/lib" + PHP_ADD_LIBRARY_WITH_PATH(phoenix, "/usr/local/phoenix/lib", PHOENIX_LIB) PHP_SUBST(PHOENIX_INCLUDE) PHP_SUBST(PHOENIX_LIB) |