diff options
author | Jouni Ahto <jah@php.net> | 2000-06-09 14:46:15 +0000 |
---|---|---|
committer | Jouni Ahto <jah@php.net> | 2000-06-09 14:46:15 +0000 |
commit | 62adbfc521dd63551c42a7e989abeb461d7e074e (patch) | |
tree | 42dc7f2510ccf7292e116888b607df312700857f | |
parent | 6bcc8ff0c767ad22d43b8e17f1f43f4d6ad3ccfa (diff) | |
download | php-git-62adbfc521dd63551c42a7e989abeb461d7e074e.tar.gz |
- Changed user instructions.
-rwxr-xr-x | ext/ext_skel | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/ext/ext_skel b/ext/ext_skel index be8bbbfc4b..4d8954d17f 100755 --- a/ext/ext_skel +++ b/ext/ext_skel @@ -108,13 +108,17 @@ cat <<eof To use your new extension, you will have to execute the following steps: - $ cd .. - $ vi ext/$extname/config.m4 - $ ./buildconf - $ ./configure --[with|enable]-$extname - $ make - $ vi ext/$extname/$extname.c - -Repeat the last two steps as often as necessary. +1. $ cd .. +2. $ vi ext/$extname/config.m4 +3. $ ./buildconf +4. $ ./configure --[with|enable]-$extname +5. $ make +6. $ ./php -f ext/$extname/$extname.php +7. $ vi ext/$extname/$extname.c +8. $ make + +Repeat steps 3-6 until you are satisfied with ext/$extname/config.m4 and +step 6 confirms that your module is compiled in PHP. Then, start writing +code and repeat the last two steps as often as necessary. eof |