Re: [PHP-DEV] 4.3.0 Extension

2003-02-18 Thread md
ain. Then I will share some more notes. Mark Diener Derick Rethans wrote: > > On Mon, 17 Feb 2003, md wrote: > > > I will look for duplicates as you suggest. > > > > I noticed that you use the PHP_ARG_WITH( inside your website's config.m4 > > file. >

[PHP-DEV] 4.3.0 Extension

2003-02-17 Thread md
Hello: I am new to your list, but a long time user of extensions in PHP. I just met with complete failure trying to compile a working extension in 4.3.0 under linux/apache This is a pre-cursor to migrating my previous extensions to the new version. I tried just the basic ext_skel --extname=test

[PHP-DEV] no longer urgent compilation question

2001-08-22 Thread md
I recently posted an urgent compilation question to the list requesting information about linking in external shared libraries to libphp4.so. This issue is no longer urgent. If one modifies the follwing line to /php/Makefile : LTLIBRARY_LIBADD = $(LTLIBRARY_DEPENDENCIES) $(EXTRA_LIBS) -lmyshare

[PHP-DEV] Urgent compilation question

2001-08-22 Thread md
Anyone within eyeshot of this message, please read up. I posted last night with no response this morning. Environment: Linux, Redhat 6.2, PHP 4.0.4pl1 My ext_skel was command line looks like: php/ext/EXT_SKEL --extname=mynewmodule My configure line looks like: ./configure --with-mysql --wit

[PHP-DEV] EXT_SKEL question

2001-08-21 Thread md
Hello Rasmus and Zeev and all the others: Back in March, I attempted to get to the bottom self contained extensions. I never succeeded at doing that, but I was able to get embedded extensions compiled and working. Unfortunately, I lost a hard drive last week and my PHP development environment w

Re: [PHP-DEV] Lame support for win32 mail() function -rant

2001-05-22 Thread md
Hello Delphi programmer! Here is a description of the wonderful world of Delphi -- An exception has occurred at 0x333F248A in Kernel32.DLL. YOURAPP.EXE has caused a general fault. Would you like to continue? YES or NO --

Re: [PHP-DEV] Lame support for win32 mail() function -rant

2001-05-21 Thread md
Michael & Joel: Here is a rant for both of you. Joel, Win32 is buggy no matter what flavor and you cannot fix the problem or isolate problems because it is closed source. (I bet poorly written source at that - like MFC garbage) Linux has bugs, but you have the "opportunity" of fixing what you

[PHP-DEV] PHP 4.0.4pl1 configure/build questions

2001-04-24 Thread md
1) I have now been adding functions to an extension initiated by ext_skel for a couple of days and familiarized myself with the source code layout and build architecture. It appears everything is controlled by the ../php4/configure file which appears to be edited directly by ext_skel when it is

[PHP-DEV] Extending pre-compiled libphp4.so

2001-04-20 Thread md
Is there a way to take a currently functioning extension that is being built into a libphp4.so and build it as a shared library so that I can be sent it to another apache box with a libphp4.so that has not been built with integrated extension support (./configure --with-myextension) I want the PH

Re: [PHP-DEV] Shared library extensions

2001-04-19 Thread md
easy part. Mark Diener Rasmus Lerdorf wrote: > > It should just work. --enable-modname=shared > and then do a 'make' and you should find your .so in the modules/ > directory. > > -Rasmus > > On Thu, 19 Apr 2001, md wrote: > > > I am getting very

[PHP-DEV] Shared library extensions

2001-04-19 Thread md
I am getting very close on making a GNU compiled C extension for PHP4 using ext_skel. Where does one look to understand what is going on inside the config.m4 file (m4 files in general) It is a mystery on how to make a shared library .so file available to PHP4. That is the problem. How to go