Browse Source

post.c really had nothing to do with POST anymore, and it belongs to the top level directory

PHP-4.0.5
Zeev Suraski 27 years ago
parent
commit
fc678100cd
  1. 2
      Makefile.in
  2. 2
      ext/standard/Makefile.in
  3. 1
      ext/standard/fsock.c
  4. 1
      ext/standard/head.c
  5. 1
      ext/standard/php_standard.h
  6. 2
      ext/standard/string.c
  7. 1
      main/main.c
  8. 1
      main/rfc1867.c
  9. 3
      php_gpce.c
  10. 0
      php_gpce.h

2
Makefile.in

@ -14,7 +14,7 @@ LTLIBRARY_SOURCES = \
configuration-parser.c configuration-scanner.c request_info.c \
safe_mode.c fopen-wrappers.c php_realpath.c alloca.c \
php_ini.c SAPI.c rfc1867.c dlist.c php_content_types.c strlcpy.c \
strlcat.c mergesort.c reentrancy.c
strlcat.c mergesort.c reentrancy.c php_gpce.c
LTLIBRARY_DEPENDENCIES = \
Zend/libZend.la \

2
ext/standard/Makefile.in

@ -10,7 +10,7 @@ LTLIBRARY_SOURCES=\
dir.c dl.c dns.c exec.c file.c filestat.c flock_compat.c \
formatted_print.c fsock.c head.c html.c image.c info.c iptc.c lcg.c \
link.c mail.c math.c md5.c metaphone.c microtime.c pack.c pageinfo.c \
parsedate.c post.c quot_print.c rand.c reg.c soundex.c string.c \
parsedate.c quot_print.c rand.c reg.c soundex.c string.c \
syslog.c type.c uniqid.c url.c url_scanner.c var.c output.c assert.c
include $(topsrcdir)/build/ltlib.mk

1
ext/standard/fsock.c

@ -65,7 +65,6 @@
#include "base64.h"
#include "file.h"
#include "post.h"
#include "url.h"
#include "fsock.h"

1
ext/standard/head.c

@ -23,7 +23,6 @@
#include "SAPI.h"
#include "main.h"
#include "head.h"
#include "post.h"
#include "SAPI.h"
#ifdef TM_IN_SYS_TIME
#include <sys/time.h>

1
ext/standard/php_standard.h

@ -63,7 +63,6 @@
#include "dl.h"
#include "php_crypt.h"
#include "head.h"
#include "post.h"
#define phpext_standard_ptr basic_functions_module_ptr

2
ext/standard/string.c

@ -25,8 +25,8 @@
#include <stdio.h>
#include "php.h"
#include "reg.h"
#include "post.h"
#include "php_string.h"
#include "php_gpce.h"
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif

1
main/main.c

@ -50,6 +50,7 @@
#include "fopen-wrappers.h"
#include "ext/standard/php_standard.h"
#include "snprintf.h"
#include "php_gpce.h"
#if WIN32|WINNT
#include <io.h>
#include <fcntl.h>

1
main/rfc1867.c

@ -23,6 +23,7 @@
#include "ext/standard/file.h" /* for php_file_le_uploads() */
#include "zend_globals.h"
#include "php_globals.h"
#include "php_gpce.h"
#include "rfc1867.h"

3
ext/standard/post.c → php_gpce.c

@ -20,7 +20,8 @@
#include <stdio.h>
#include "php.h"
#include "php_standard.h"
#include "ext/standard/php_standard.h"
#include "php_gpce.h"
#include "php_globals.h"
#include "SAPI.h"

0
ext/standard/post.h → php_gpce.h

Loading…
Cancel
Save