Skip to content

Commit

Permalink
post.c really had nothing to do with POST anymore, and it belongs to …
Browse files Browse the repository at this point in the history
…the top level directory
  • Loading branch information
zsuraski committed Jan 28, 2000
1 parent 6f63373 commit fc67810
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion ext/standard/Makefile.in
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion ext/standard/fsock.c
Expand Up @@ -65,7 +65,6 @@

#include "base64.h"
#include "file.h"
#include "post.h"
#include "url.h"
#include "fsock.h"

Expand Down
1 change: 0 additions & 1 deletion ext/standard/head.c
Expand Up @@ -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>
Expand Down
1 change: 0 additions & 1 deletion ext/standard/php_standard.h
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ext/standard/string.c
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions main/main.c
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions main/rfc1867.c
Expand Up @@ -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"


Expand Down
3 changes: 2 additions & 1 deletion ext/standard/post.c → php_gpce.c
Expand Up @@ -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"

Expand Down
File renamed without changes.

0 comments on commit fc67810

Please sign in to comment.