Your message dated Fri, 13 Jan 2006 16:19:29 +0100
with message-id <[EMAIL PROTECTED]>
and subject line php3 removed from unstable/testing
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 3 Nov 2000 09:45:05 +0000
>From [EMAIL PROTECTED] Fri Nov 03 03:45:05 2000
Return-path: <[EMAIL PROTECTED]>
Received: from visby.remote.org (mail.remote.org) [::ffff:212.227.14.25] 
        by master.debian.org with esmtp (Exim 3.12 1 (Debian))
        id 13rdPF-00061Y-00; Fri, 03 Nov 2000 03:45:05 -0600
Received: from electra.intern.planb.de (vega.planb.de [212.227.19.14])
        by mail.remote.org with esmtp 
        id 13rdPA-0001DQ-00; Fri, 03 Nov 2000 10:45:00 +0100
Received: from enrik by electra.intern.planb.de with local (Exim 3.12 #1 
(Debian))
        id 13rdPA-0000p5-00
        for <[EMAIL PROTECTED]>; Fri, 03 Nov 2000 10:45:00 +0100
Date: Fri, 3 Nov 2000 10:45:00 +0100
To: [EMAIL PROTECTED]
Subject: php3 has no GNU recode support compiled in/available as module
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
From: Enrik Berkhan <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package: php3
Version: 3:3.0.18-0potato1
Severity: wishlist

Hi,

I suggest that GNU recode support for php3 will be made available as
php3 extension module. A minor patch to the upstream source is needed to
make functions/recode.c compile as module (see below).

Enrik

diff -ru php3-3.0.18/debian/control php3-3.0.18-dl_recode/debian/control
--- php3-3.0.18/debian/control  Fri Nov  3 10:35:50 2000
+++ php3-3.0.18-dl_recode/debian/control        Fri Nov  3 10:06:45 2000
@@ -292,6 +292,32 @@
  This package provides a PHP3 module (cgi version) for mhash
  functions directly from PHP3 scripts.
 
+Package: php3-recode
+Architecture: any
+Depends: ${php3:Depends}, ${shlibs:Depends}
+Description: recode module for PHP3 (apache)
+ PHP: Hypertext Preprocessor Version 3.0 is an HTML-embedded scripting
+ language. Much of its syntax is borrowed from C, Java and Perl with a
+ couple of unique PHP-specific features thrown in. The goal of the
+ language is to allow web developers to write dynamically generated
+ pages quickly.
+ .
+ This package provides a PHP3 module (apache version) for GNU recode
+ functions directly from PHP3 scripts.
+
+Package: php3-cgi-recode
+Architecture: any
+Depends: ${php3-cgi:Depends}, ${shlibs:Depends}
+Description: recode module for PHP3 (cgi)
+ PHP: Hypertext Preprocessor Version 3.0 is an HTML-embedded scripting
+ language. Much of its syntax is borrowed from C, Java and Perl with a
+ couple of unique PHP-specific features thrown in. The goal of the
+ language is to allow web developers to write dynamically generated
+ pages quickly.
+ .
+ This package provides a PHP3 module (cgi version) for GNU recode
+ functions directly from PHP3 scripts.
+
 Package: php3-dev
 Architecture: any
 Description: Header files for PHP3 module development
Only in php3-3.0.18-dl_recode/debian: php3-cgi-recode.dirs
Only in php3-3.0.18-dl_recode/debian: php3-recode.dirs
diff -ru php3-3.0.18/debian/rules php3-3.0.18-dl_recode/debian/rules
--- php3-3.0.18/debian/rules    Fri Nov  3 10:35:50 2000
+++ php3-3.0.18-dl_recode/debian/rules  Fri Nov  3 09:53:13 2000
@@ -13,7 +13,7 @@
 apachever=$(shell dpkg -s apache-dev | grep "^Version" | cut '-d ' -f2 | cut 
-d- -f1)
 php3ver=$(shell head -1 debian/changelog | cut '-d ' -f 2 | sed 's/[()]//g')
 
-modules=pgsql mysql imap gd xml ldap snmp magick mhash
+modules=pgsql mysql imap gd xml ldap snmp magick mhash recode
 
 build: build-stamp
 
@@ -38,6 +38,7 @@
        cd apache && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. 
-I/usr/include/apache-1.3 -I/usr/include/ucd-snmp -o snmp.so 
../functions/snmp.c -lsnmp -lc
        cd apache && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. 
-I/usr/include/apache-1.3 -I/usr/X11R6/include -o magick.so 
../functions/magick.c -L/usr/X11R6/lib -lMagick -lbz2 -lc
        cd apache && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. 
-I/usr/include/apache-1.3 -o mhash.so ../functions/mhash.c -lmhash -lc
+       cd apache && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. 
-I/usr/include/apache-1.3 -o recode.so ../functions/recode.c -lrecode -lc
        cd dl && (./setup ; make clean; make CFLAGS="-I/usr/include/apache-1.3 
-I ../apache" calendar.so crypt.so)
        mv dl/calendar.so dl/crypt.so apache
        touch apache-stamp
@@ -68,6 +69,7 @@
        cd cgi && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. 
-I/usr/include/ucd-snmp -o snmp.so ../functions/snmp.c -lsnmp -lc
        cd cgi && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. 
-I/usr/X11R6/include -o magick.so ../functions/magick.c -L/usr/X11R6/lib 
-lMagick -lbz2 -lc
        cd cgi && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. -o mhash.so 
../functions/mhash.c -lmhash -lc
+       cd cgi && $(CC) -shared -fPIC -DCOMPILE_DL=1 -I.. -I. -o recode.so 
../functions/recode.c -lrecode -lc
        cd dl && (./setup; make clean; make CFLAGS="-I../cgi" calendar.so 
crypt.so)
        mv dl/calendar.so dl/crypt.so cgi
        touch cgi-stamp
diff -ru php3-3.0.18/functions/recode.c php3-3.0.18-dl_recode/functions/recode.c
--- php3-3.0.18/functions/recode.c      Sat Jan  1 05:31:16 2000
+++ php3-3.0.18-dl_recode/functions/recode.c    Fri Nov  3 10:29:00 2000
@@ -34,8 +34,9 @@
 #include "internal_functions.h"
 #include "php3_string.h"
 
-#if HAVE_RECODE
 #include "php3_recode.h"
+
+#if HAVE_RECODE
 #include "php3_list.h"
 
 #ifdef HAVE_BROKEN_RECODE
@@ -67,7 +68,7 @@
 };
 
 #ifdef COMPILE_DL
-DLEXPORT php3_module_entry *get_module(void) { return &recode__module_entry; }
+DLEXPORT php3_module_entry *get_module(void) { return &recode_module_entry; }
 #endif
 
 #if APACHE

---------------------------------------
Received: (at 76157-done) by bugs.debian.org; 13 Jan 2006 15:19:30 +0000
>From [EMAIL PROTECTED] Fri Jan 13 07:19:30 2006
Return-path: <[EMAIL PROTECTED]>
Received: from a-eskwadraat.nl ([131.211.39.72])
        by spohr.debian.org with esmtp (Exim 4.50)
        id 1ExQiA-0005DJ-Eb; Fri, 13 Jan 2006 07:19:30 -0800
Received: from 22pc220.sshunet.nl ([145.97.220.22] helo=bla.wolffelaar.nl)
        by a-eskwadraat.nl with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
        (Exim 4.50)
        id 1ExQi9-0004vX-Ho; Fri, 13 Jan 2006 16:19:29 +0100
Received: from jeroen by bla.wolffelaar.nl with local (Exim 4.50)
        id 1ExQi9-0000v7-B8; Fri, 13 Jan 2006 16:19:29 +0100
Date: Fri, 13 Jan 2006 16:19:29 +0100
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: php3 removed from unstable/testing
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
From: Jeroen van Wolffelaar <[EMAIL PROTECTED]>
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_00,SORTED_RECIPS 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 14

Dear reporter,

php3 has been removed from Debian unstable/testing, because it's superseded
by php4 and php5. Please see #330656 for more information.

This bug does not apply to php4 or php5, so I'm closing it now.

Thank you for your report,
--Jeroen

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED]
http://jeroen.A-Eskwadraat.nl


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to