summaryrefslogtreecommitdiffstats
path: root/php
diff options
context:
space:
mode:
authorChristophe Nowicki <cnowicki@easter-eggs.com>2004-08-06 13:50:12 +0000
committerChristophe Nowicki <cnowicki@easter-eggs.com>2004-08-06 13:50:12 +0000
commitaa92c6c1c206eb46dd3ae351d67e5c48e14a1641 (patch)
tree325c85deb628ee296fffbea34abbdda850746f85 /php
parentc46c65a6bfabba50e93c9a723b831f99b735c19d (diff)
downloadlasso-aa92c6c1c206eb46dd3ae351d67e5c48e14a1641.tar.gz
lasso-aa92c6c1c206eb46dd3ae351d67e5c48e14a1641.tar.xz
lasso-aa92c6c1c206eb46dd3ae351d67e5c48e14a1641.zip
remove COMPILE_DL_LASSO ... now php can load lasso.so
Diffstat (limited to 'php')
-rw-r--r--php/lasso.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/php/lasso.c b/php/lasso.c
index c2fa86be..8ce15d4b 100644
--- a/php/lasso.c
+++ b/php/lasso.c
@@ -123,9 +123,7 @@ zend_module_entry lasso_module_entry = {
};
/* }}} */
-#ifdef COMPILE_DL_LASSO
ZEND_GET_MODULE(lasso)
-#endif
/* {{{ PHP_INI
*/
@@ -314,8 +312,8 @@ PHP_FUNCTION(lasso_version)
zend_printf("DEBUG: lasso_version\n");
- snprintf(lasso_version, 6, "%d.%d.%d", LASSO_VERSION_MAJOR,
- LASSO_VERSION_MINOR, LASSO_VERSION_SUBMINOR);
+ /* snprintf(lasso_version, 6, "%d.%d.%d", LASSO_VERSION_MAJOR,
+ LASSO_VERSION_MINOR, LASSO_VERSION_SUBMINOR); */
RETURN_STRING(lasso_version, 1)
}