Skip to content

Commit f3f6d97

Browse files
committed
Regenerate credits + remove unused files + fix build
1 parent ac9af23 commit f3f6d97

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

ext/standard/credits_ext.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ CREDIT_LINE("System V Semaphores", "Tom May");
6969
CREDIT_LINE("System V Shared Memory", "Christian Cartus");
7070
CREDIT_LINE("tidy", "John Coggeshall, Ilia Alshanetsky");
7171
CREDIT_LINE("tokenizer", "Andrei Zmievski, Johannes Schlueter");
72+
CREDIT_LINE("uri", "Máté Kocsis, Tim Düsterhus, Ignace Nyamagana Butera, Arnaud Le Blanc, Dennis Snell, Niels Dossche, Nicolas Grekas");
7273
CREDIT_LINE("XML", "Stig Bakken, Thies C. Arntzen, Sterling Hughes");
7374
CREDIT_LINE("XMLReader", "Rob Richards");
7475
CREDIT_LINE("XMLWriter", "Rob Richards, Pierre-Alain Joye");

ext/uri/CREDITS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
uri
2-
Máté Kocsis, Tim Düsterhus, Ignace Nyamagana Butera, Arnaud Le Blanc, Niels Dossche, Nicolas Grekas
2+
Máté Kocsis, Tim Düsterhus, Ignace Nyamagana Butera, Arnaud Le Blanc, Dennis Snell, Niels Dossche, Nicolas Grekas

ext/uri/config.m4

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ dnl Configure options
22
dnl
33

44
PHP_INSTALL_HEADERS([ext/uri], m4_normalize([
5-
php_lexbor.h
65
php_uri.h
7-
php_uri_common.h
8-
php_uriparser.h
96
]))
107

118
AC_DEFINE([URI_ENABLE_ANSI], [1], [Define to 1 for enabling ANSI support of uriparser.])
@@ -18,6 +15,6 @@ $URIPARSER_DIR/src/UriMemory.c $URIPARSER_DIR/src/UriNormalize.c $URIPARSER_DIR/
1815
$URIPARSER_DIR/src/UriParse.c $URIPARSER_DIR/src/UriParseBase.c $URIPARSER_DIR/src/UriQuery.c \
1916
$URIPARSER_DIR/src/UriRecompose.c $URIPARSER_DIR/src/UriResolve.c $URIPARSER_DIR/src/UriShorten.c"
2017

21-
PHP_NEW_EXTENSION(uri, [php_uri.c php_uri_common.c php_lexbor.c php_uriparser.c $URIPARSER_SOURCES], [no],,[-I$ext_builddir/$URIPARSER_DIR/include -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
18+
PHP_NEW_EXTENSION(uri, [php_uri.c $URIPARSER_SOURCES], [no],,[-I$ext_builddir/$URIPARSER_DIR/include -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
2219
PHP_ADD_EXTENSION_DEP(uri, lexbor)
2320
PHP_ADD_BUILD_DIR($ext_builddir/$URIPARSER_DIR/src $ext_builddir/$URIPARSER_DIR/include)

ext/uri/config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
EXTENSION("uri", "php_lexbor.c php_uri.c php_uri_common.c php_uriparser.c", false /* never shared */, "/I ext/lexbor /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
1+
EXTENSION("uri", "php_uri.c", false /* never shared */, "/I ext/lexbor /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
22

33
AC_DEFINE("URI_ENABLE_ANSI", 1, "Define to 1 for enabling ANSI support of uriparser.")
44
AC_DEFINE("URI_NO_UNICODE", 1, "Define to 1 for disabling unicode support of uriparser.")
55

66
ADD_EXTENSION_DEP('uri', 'lexbor');
77
ADD_SOURCES("ext/uri/uriparser/src", "UriCommon.c UriCompare.c UriEscape.c UriFile.c UriIp4.c UriIp4Base.c UriMemory.c UriNormalize.c UriNormalizeBase.c UriParse.c UriQuery.c UriRecompose.c UriShorten.c", "lexbor");
8-
PHP_INSTALL_HEADERS("ext/uri", "php_lexbor.h php_uri.h php_uri_common.h php_uriparser.h uriparser/src uriparser/include");
8+
PHP_INSTALL_HEADERS("ext/uri", "php_uri.h uriparser/src uriparser/include");

0 commit comments

Comments
 (0)