helly           Thu Nov 17 17:42:02 2005 EDT

  Added files:                 
    /php-src/ext/reflection     CREDITS config.m4 config.w32 .cvsignore 
  Log:
  - Make this an extension
  
  

http://cvs.php.net/co.php/php-src/ext/reflection/config.m4?r=1.1&p=1
Index: php-src/ext/reflection/config.m4
+++ php-src/ext/reflection/config.m4
dnl $Id: config.m4,v 1.1 2005/11/17 22:42:00 helly Exp $
dnl config.m4 for extension bitset

PHP_ARG_ENABLE(reflection, whether to enable reflection support,
[  --disable-reflection      Disable reflection support])

if test "$PHP_REFLECTION" != "no"; then
  if test "$ext_shared" = "yes"; then
    AC_MSG_ERROR(Cannot build reflectino as a shared module)
  fi
  PHP_NEW_EXTENSION(reflection, php_reflection.c)
fi

http://cvs.php.net/co.php/php-src/ext/reflection/config.w32?r=1.1&p=1
Index: php-src/ext/reflection/config.w32
+++ php-src/ext/reflection/config.w32
// $Id: config.w32,v 1.1 2005/11/17 22:42:00 helly Exp $
// vim:ft=javascript

ARG_ENABLE("reflection", "disable reflection support", "yes");

if (PHP_REFLECTION != "no") {
        EXTENSION("reflectino", "php_reflection.c");
}


http://cvs.php.net/co.php/php-src/ext/reflection/.cvsignore?r=1.1&p=1
Index: php-src/ext/reflection/.cvsignore
+++ php-src/ext/reflection/.cvsignore
#*#
*.dsw
*.la
*.lo
*.ncb
*.opt
*.plg
*.tgz
*~..#*..deps..libs
Debug
Debug_TS
Makefile
Makefile.fragments
Makefile.global
Makefile.objects
Release
Release_TS
Release_TSDbg
Release_TS_inline
Release_inline
acinclude.m4
aclocal.m4
autom4te.cache
build
config.cache
config.guess
config.h
config.h.in
config.log
config.nice
config.status
config.sub
configure
configure.in
conftest
conftest.c
include
install-sh
libs.mk
libtool
ltmain.sh
missing
mkinstalldirs
modules
scan_makefile_in.awk
*.gcda
*.gcno
xml
html
spl.chm

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to