summaryrefslogtreecommitdiffstats
path: root/php
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-09-10 22:56:22 +0100
committerRichard Jones <rjones@redhat.com>2010-09-10 22:57:52 +0100
commitc1b63526774614dd5a1f6710e63ae466489469d5 (patch)
treec5485e04da22e448877687394bd43cd5d443af32 /php
parentb3d94d6a71e74e817ad5bdb9497e88d19ec2e29d (diff)
downloadlibguestfs-c1b63526774614dd5a1f6710e63ae466489469d5.tar.gz
libguestfs-c1b63526774614dd5a1f6710e63ae466489469d5.tar.xz
libguestfs-c1b63526774614dd5a1f6710e63ae466489469d5.zip
syntax: Fully bracket m4 macro arguments.
Diffstat (limited to 'php')
-rw-r--r--php/extension/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/php/extension/config.m4 b/php/extension/config.m4
index 2bac2ea5..ee199715 100644
--- a/php/extension/config.m4
+++ b/php/extension/config.m4
@@ -15,10 +15,10 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-PHP_ARG_ENABLE(guestfs_php, enable libguestfs PHP bindings,
+PHP_ARG_ENABLE([guestfs_php], [enable libguestfs PHP bindings],
[ --enable-guestfs-php Enable libguestfs support])
if test "$PHP_GUESTFS_PHP" = "yes"; then
- AC_DEFINE(HAVE_GUESTFS_PHP, 1, [Whether you have libguestfs PHP bindings])
- PHP_NEW_EXTENSION(guestfs_php, guestfs_php.c, $ext_shared)
+ AC_DEFINE([HAVE_GUESTFS_PHP], [1], [Whether you have libguestfs PHP bindings])
+ PHP_NEW_EXTENSION([guestfs_php], [guestfs_php.c], [$ext_shared])
fi