diff --git a/Makefile b/Makefile index 20032e0..e138fed 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ LINKER = c++ COMPILER_FLAGS = -Wall -c -O2 -std=c++11 -fpic -DVERSION="`./version.sh`" -I. -g LINKER_FLAGS = -shared -LINKER_DEPENDENCIES = -lphpcpp -lv8 -licui18n +LINKER_DEPENDENCIES = -lphpcpp -lv8 # diff --git a/extension.cpp b/extension.cpp index 97b2cd8..a581f01 100644 --- a/extension.cpp +++ b/extension.cpp @@ -36,7 +36,7 @@ extern "C" { { // static(!) Php::Extension object that should stay in memory // for the entire duration of the process (that's why it's static) - static Php::Extension extension("PxJavascript", THE_VERSION); + static Php::Extension extension("PHP-JS", THE_VERSION); // declare the accessor attributes extension.add(Php::Constant("JS\\None", v8::None));