diff options
author | James Cox <imajes@php.net> | 2002-07-01 01:01:06 +0000 |
---|---|---|
committer | James Cox <imajes@php.net> | 2002-07-01 01:01:06 +0000 |
commit | 799cc612b40b4dbb6e1eb45f7884d66fcfe5c63c (patch) | |
tree | 33429a98e7942aa03c6f9a2e97c1f6eaef8e0e5e | |
parent | acac7af404586bcb1d06b9dbd19ce282198a7b79 (diff) | |
download | php-git-799cc612b40b4dbb6e1eb45f7884d66fcfe5c63c.tar.gz |
"-" is not acceptable in a #define (i have since discovered). converting all - to _ is the right thing to do.
# should we issue a warning here too?
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 1ab99126bf..f8fc1e7006 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1183,7 +1183,7 @@ dnl ---------------------------------------------- Static module dnl ---------------------------------------------- Shared module PHP_ADD_SOURCES_X(PHP_EXT_DIR($1),$2,$ac_extra,shared_objects_$1,yes) PHP_SHARED_MODULE($1,shared_objects_$1, $ext_builddir) - AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z_-,A-Z_-), 1, Whether to build $1 as dynamic module) + AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z_-,A-Z__), 1, Whether to build $1 as dynamic module) fi fi |