mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
moved output-buffering related functions from basic_functions to output.c Win32 project need to be updated to reflect new position. # i'm not really happy with this solution, but it seemed the easiest one! # the whole output code is a bit hard to understand... @- Output-Buffering system is now Thread-Safe. (Thies)
17 lines
749 B
Makefile
17 lines
749 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
INCLUDES=@INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend
|
|
noinst_LTLIBRARIES=libphpext_standard.la
|
|
libphpext_standard_la_SOURCES=\
|
|
base64.c basic_functions.c browscap.c crypt.c cyr_convert.c datetime.c \
|
|
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.y post.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
|
|
|
|
$(srcdir)/url_scanner.c: $(srcdir)/url_scanner.re
|
|
-re2c $< > $@.new && mv $@.new $@
|
|
|
|
#number.o: number.c
|
|
# $(CC) $(CFLAGS) -w@WARNING_LEVEL@ -c $< -o $@
|