Skip to content

Commit

Permalink
- Change configure scripts to work with PHP 4.2.x
Browse files Browse the repository at this point in the history
SVN Rev: 88
  • Loading branch information
derickr committed May 14, 2002
1 parent d4d1078 commit 097716e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Makefile.in
@@ -0,0 +1,8 @@
# $Id: Makefile.in,v 1.1 2002-05-14 09:38:36 derick Exp $

LTLIBRARY_NAME = libxdebug.la
LTLIBRARY_SOURCES = xdebug.c xdebug_llist.c
LILIBRARY_SHARED_NAME = xdebug.la
LILIBRARY_SHARED_LIBADD = $(XDEBUG_SHARED_LIBADD)

include $(top_srcdir)/build/dynlib.mk
7 changes: 5 additions & 2 deletions config.m4
@@ -1,10 +1,13 @@
dnl $Id: config.m4,v 1.2 2002-05-09 12:12:44 derick Exp $
dnl $Id: config.m4,v 1.3 2002-05-14 09:38:36 derick Exp $
dnl config.m4 for extension xdebug

PHP_ARG_ENABLE(xdebug, whether to enable eXtended debugging support,
[ --enable-xdebug Enable xdebug support])

if test "$PHP_XDEBUG" != "no"; then
PHP_NEW_EXTENSION(xdebug, xdebug.c xdebug_llist.c, $ext_shared)
dnl PHP < 4.3 config
PHP_EXTENSION(xdebug, $ext_shared)
dnl PHP >= 4.3 config
dnl PHP_NEW_EXTENSION(xdebug, xdebug.c xdebug_llist.c, $ext_shared)
AC_DEFINE(HAVE_XDEBUG,1,[ ])
fi

0 comments on commit 097716e

Please sign in to comment.