diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2002-03-30 16:44:56 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2002-03-30 16:44:56 +0000 |
commit | 9c57dffecd6b5bab38f755fdfe1faaa378d5e241 (patch) | |
tree | 84e789661a6ba7bb6c828b7ce5b387fa049100cc /README.EXT_SKEL | |
parent | 3a3acee3c9bc1c2d0c582e378bf92093059a44ba (diff) | |
download | php-git-9c57dffecd6b5bab38f755fdfe1faaa378d5e241.tar.gz |
Looks like mawk can't handle create_stubs - if someone is keen it would be
nice to fix that, but for now just make a note that gawk may be needed.
Diffstat (limited to 'README.EXT_SKEL')
-rw-r--r-- | README.EXT_SKEL | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/README.EXT_SKEL b/README.EXT_SKEL index dae5b40098..95cf422ed0 100644 --- a/README.EXT_SKEL +++ b/README.EXT_SKEL @@ -13,11 +13,16 @@ HOW TO USE IT ./ext_skel --extname=module_name - and everything you need is placed in directory module_name. In fact, if you - don't need to test the existence of any external header files, libraries or - functions in them, the module is already almost ready to be compiled in PHP. - Just remove 3 comments in your_module_name/config.m4, cd back up to PHP - sources top directory, and do + and everything you need is placed in directory module_name. + + [ Note that GNU awk is likely required for this script to work. Debian + systems seem to default to using mawk, so you may need to change the + #! line in skeleton/create_stubs to use gawk explicitly. ] + + If you don't need to test the existence of any external header files, + libraries or functions in them, the module is already almost ready to be + compiled in PHP. Just remove 3 comments in your_module_name/config.m4, + cd back up to PHP sources top directory, and do ./buildconf; ./configure --enable-module_name; make |