Changeset 341 for trunk/docs/kernel/install-debian.txt
- Timestamp:
- Oct 12, 2011, 12:45:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/kernel/install-debian.txt
r340 r341 44 44 make 45 45 46 - install47 48 ::49 50 sudo make install51 46 52 47 - go to kernel path … … 70 65 71 66 .. note:: 72 In Ubuntu 10.04 libmozjs-dev does not exist, so to use J S you can compile SpiderMonkey or use the xulrunner-dev package which includes SpiderMonkey.67 In Ubuntu 10.04 libmozjs-dev does not exist, so to use JavaScript you can compile SpiderMonkey (remember to put /usr/local/lib in a file inside /etc/ld.so.conf.d/). 73 68 For PHP, you must make sure to compile PHP with `--enable-embed <http://www.zoo-project.org/trac/wiki/ZooKernel/Embed/PHP#ConfigureandInstallPHPEmbedlibrary>`__. 74 69 75 - to use JavaScript with XulRunner SpiderMonkey you have to create a link of libmozjs.so.70 - to use JavaScript with compiled SpiderMonkey. 76 71 77 72 :: 78 79 ln -s /usr/lib/xulrunner-1.9.2.23/libmozjs.so /usr/lib/ 80 81 ./configure --with-js 82 73 74 sudo echo "/usr/local/lib" > /etc/ld.so.conf.d/libmoz185.conf 75 sudo ldconfig 76 ./configure --with-js=/usr/local 77 78 79 - to use JavaScript with Xulrunner . 80 81 :: 82 83 sudo echo "/usr/lib/xulrunner-dev" > /etc/ld.so.conf.d/libmoz185.conf 84 sudo ldconfig 85 ./configure --with-js=/usr/lib/xulrunner-dev 83 86 84 87 … … 119 122 120 123 .. note:: 121 If you have some problem in the execute request , add the following to ``main.cfg``:124 If you have some problem in the execute request using Python service, add the following to ``main.cfg``: 122 125 123 126 ::
Note: See TracChangeset
for help on using the changeset viewer.