Made ingres_ii module compile with its new name

This commit is contained in:
Hénot David 2000-07-17 23:21:42 +00:00
parent 8b824d99fa
commit 00d67abd30
5 changed files with 12 additions and 12 deletions

View file

@ -42,14 +42,14 @@ EXTENSION: hyperwave
PRIMARY MAINTAINER: Uwe Steinmann <steinm@php.net> PRIMARY MAINTAINER: Uwe Steinmann <steinm@php.net>
STATUS: Maintained STATUS: Maintained
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
EXTENSION: ii
PRIMARY MAINTAINER: David Hénot <henot@php.net>
STATUS: Maintained
--------------------------------------------------------------------------------
EXTENSION: informix EXTENSION: informix
PRIMARY MAINTAINER: Danny Heijl <Danny.Heijl@cevi.be> PRIMARY MAINTAINER: Danny Heijl <Danny.Heijl@cevi.be>
STATUS: Maintained STATUS: Maintained
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
EXTENSION: ingres_ii
PRIMARY MAINTAINER: David Hénot <henot@php.net>
STATUS: Maintained
--------------------------------------------------------------------------------
EXTENSION: interbase EXTENSION: interbase
PRIMARY MAINTAINER: Jouni Ahto <jah@mork.net> PRIMARY MAINTAINER: Jouni Ahto <jah@mork.net>
STATUS: Odd Fixes STATUS: Odd Fixes

View file

@ -1,8 +1,8 @@
# $Id$ # $Id$
LTLIBRARY_NAME = libii.la LTLIBRARY_NAME = libingres_ii.la
LTLIBRARY_SOURCES = ii.c LTLIBRARY_SOURCES = ii.c
LTLIBRARY_SHARED_NAME = ii.la LTLIBRARY_SHARED_NAME = ingres_ii.la
LTLIBRARY_SHARED_LIBADD = $(II_SHARED_LIBADD) LTLIBRARY_SHARED_LIBADD = $(II_SHARED_LIBADD)
include $(top_srcdir)/build/dynlib.mk include $(top_srcdir)/build/dynlib.mk

View file

@ -1,5 +1,5 @@
dnl $Id$ dnl $Id$
dnl config.m4 for extension ii dnl config.m4 for extension ingres_ii
PHP_ARG_WITH(ii, for Ingres II support, PHP_ARG_WITH(ii, for Ingres II support,
[ --with-ii[=DIR] Include Ingres II support. DIR is the Ingres [ --with-ii[=DIR] Include Ingres II support. DIR is the Ingres
@ -8,7 +8,7 @@ no)
if test "$PHP_II" != "no"; then if test "$PHP_II" != "no"; then
AC_DEFINE(HAVE_II, 1, [Whether you have Ingres II]) AC_DEFINE(HAVE_II, 1, [Whether you have Ingres II])
PHP_EXTENSION(ii, $ext_shared) PHP_EXTENSION(ingres_ii, $ext_shared)
if test "$PHP_II" = "yes"; then if test "$PHP_II" = "yes"; then
II_DIR=$II_SYSTEM/ingres II_DIR=$II_SYSTEM/ingres

View file

@ -57,8 +57,8 @@ function_entry ii_functions[] = {
{NULL, NULL, NULL} /* Must be the last line in ii_functions[] */ {NULL, NULL, NULL} /* Must be the last line in ii_functions[] */
}; };
zend_module_entry ii_module_entry = { zend_module_entry ingres_ii_module_entry = {
"ii", "ingres_ii",
ii_functions, ii_functions,
PHP_MINIT(ii), PHP_MINIT(ii),
PHP_MSHUTDOWN(ii), PHP_MSHUTDOWN(ii),

View file

@ -23,8 +23,8 @@
#if HAVE_II #if HAVE_II
extern zend_module_entry ii_module_entry; extern zend_module_entry ingres_ii_module_entry;
#define phpext_ii_ptr &ii_module_entry #define phpext_ingres_ii_ptr &ingres_ii_module_entry
#ifdef PHP_WIN32 #ifdef PHP_WIN32
#define PHP_II_API __declspec(dllexport) #define PHP_II_API __declspec(dllexport)