Skip to content
This repository has been archived by the owner on Dec 6, 2018. It is now read-only.

Commit

Permalink
Updating the extension's version number of removing the CVS Revision …
Browse files Browse the repository at this point in the history
…string

from the "info" output.  The latter isn't very useful because the extension
is comprised of mulitple source files.
  • Loading branch information
jparise committed Sep 22, 2008
1 parent 431c831 commit eebf56c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion php_python.h
Expand Up @@ -30,7 +30,7 @@
extern zend_module_entry python_module_entry; extern zend_module_entry python_module_entry;
#define phpext_python_ptr &python_module_entry #define phpext_python_ptr &python_module_entry


#define PHP_PYTHON_VERSION "0.8.1-dev" #define PHP_PYTHON_VERSION "0.9.0-dev"


#ifdef PHP_WIN32 #ifdef PHP_WIN32
#define PHP_PYTHON_API __declspec(dllexport) #define PHP_PYTHON_API __declspec(dllexport)
Expand Down
1 change: 0 additions & 1 deletion python.c
Expand Up @@ -223,7 +223,6 @@ PHP_MINFO_FUNCTION(python)
php_info_print_table_header(2, "Python Support", "enabled"); php_info_print_table_header(2, "Python Support", "enabled");
php_info_print_table_row(2, "Python Version", Py_GetVersion()); php_info_print_table_row(2, "Python Version", Py_GetVersion());
php_info_print_table_row(2, "Extension Version", PHP_PYTHON_VERSION); php_info_print_table_row(2, "Extension Version", PHP_PYTHON_VERSION);
php_info_print_table_row(2, "CVS Revision", "$Revision$");
php_info_print_table_end(); php_info_print_table_end();


DISPLAY_INI_ENTRIES(); DISPLAY_INI_ENTRIES();
Expand Down

0 comments on commit eebf56c

Please sign in to comment.