<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/main/php_regex.h, branch php-4.2.0</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Protect us from Apache 2.0's pcre-posix stuff</title>
<updated>2000-10-26T18:15:56+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>2000-10-26T18:15:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=00d1d1a347fa9be838f9092417694f3c08ec8ddf'/>
<id>00d1d1a347fa9be838f9092417694f3c08ec8ddf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change header protection macros to conform to standard.</title>
<updated>2000-07-02T23:46:51+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>2000-07-02T23:46:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=16017f6d78f130c9cbeef1cb1a34ed20338dec6f'/>
<id>16017f6d78f130c9cbeef1cb1a34ed20338dec6f</id>
<content type='text'>
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

  All identifiers that begin with an underscore and either an uppercase
  letter or another underscore are always reserved for any use by the
  implementation.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

  All identifiers that begin with an underscore and either an uppercase
  letter or another underscore are always reserved for any use by the
  implementation.

</pre>
</div>
</content>
</entry>
<entry>
<title>SAPIfication, Episode VI:  Return of the SAPI</title>
<updated>2000-02-10T19:41:21+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-02-10T19:41:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6d0ab6166cc1a4eca90211cdfa0ca144704ad677'/>
<id>6d0ab6166cc1a4eca90211cdfa0ca144704ad677</id>
<content type='text'>
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except for the Apache SAPI module.
- No server specific code is in any of the base PHP code.

Still left to be done:
- Eliminate any references to APACHE from the few remaining modules.
- Move request_info.c's logic to SAPI
- Modify the regex function names, and globals, so that we can always
  include them, without having to fear any interference with Apache;
  Always use the bundled regex library

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except for the Apache SAPI module.
- No server specific code is in any of the base PHP code.

Still left to be done:
- Eliminate any references to APACHE from the few remaining modules.
- Move request_info.c's logic to SAPI
- Modify the regex function names, and globals, so that we can always
  include them, without having to fear any interference with Apache;
  Always use the bundled regex library

</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid Apache's regex.h, if system regex was chosen</title>
<updated>1999-11-30T23:19:33+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>1999-11-30T23:19:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=00f8f24d74c3eda8e29800d7c6d3bb908897cd3c'/>
<id>00f8f24d74c3eda8e29800d7c6d3bb908897cd3c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Suck in prototypes correctly with applied aliases</title>
<updated>1999-11-13T18:33:28+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>1999-11-13T18:33:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=afc9e1257b7976bf74925db79aca794dd423587e'/>
<id>afc9e1257b7976bf74925db79aca794dd423587e</id>
<content type='text'>
(otherwise php_reg* would not be prototyped)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(otherwise php_reg* would not be prototyped)

</pre>
</div>
</content>
</entry>
<entry>
<title>Improve regex library selection. It lets user specify whether they want</title>
<updated>1999-11-13T16:51:33+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>1999-11-13T16:51:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=bcb2214e9951b271d073314870bf09a6a87435f5'/>
<id>bcb2214e9951b271d073314870bf09a6a87435f5</id>
<content type='text'>
system, apache, or php's regex library by using the --with-regex option.
"php" is the default; if you use --with-apache in combination with
Apache 1.3.x, the default is "apache".

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
system, apache, or php's regex library by using the --with-regex option.
"php" is the default; if you use --with-apache in combination with
Apache 1.3.x, the default is "apache".

</pre>
</div>
</content>
</entry>
<entry>
<title>typing in the dark</title>
<updated>1999-10-30T14:26:42+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>1999-10-30T14:26:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5a391e843a4f271f90c741f591629c9c89cb929a'/>
<id>5a391e843a4f271f90c741f591629c9c89cb929a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Damn, can't see underscores correctly on this silly terminal I am on</title>
<updated>1999-10-30T14:24:36+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>1999-10-30T14:24:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3bfc21509121fe3d4520215715978cd1fe97226c'/>
<id>3bfc21509121fe3d4520215715978cd1fe97226c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up regex header file mess.  php.h now explicitly includes php_regex.h</title>
<updated>1999-10-30T14:22:10+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>1999-10-30T14:22:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cf0868fec89a1fcac53ff8421f9cf0d9345310c5'/>
<id>cf0868fec89a1fcac53ff8421f9cf0d9345310c5</id>
<content type='text'>
and php_regex.h figures out which regex header files to include and
defines symbols that prevents other stuff from including the wrong versions
of regex header files.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and php_regex.h figures out which regex header files to include and
defines symbols that prevents other stuff from including the wrong versions
of regex header files.

</pre>
</div>
</content>
</entry>
<entry>
<title>Kill the regex header file warnings</title>
<updated>1999-10-29T17:33:19+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>1999-10-29T17:33:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=f160ee878256c37d21bf6de225da5978e6fcadb9'/>
<id>f160ee878256c37d21bf6de225da5978e6fcadb9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
