Skip to content

Unbundle libtool #4359

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,9 @@ tmp-php.ini
!/ext/fileinfo/magicdata.patch
!/ext/pcre/pcre2lib/config.h
!/win32/build/Makefile

# ------------------------------------------------------------------------------
# Installed during the libtoolize step
# ------------------------------------------------------------------------------
/build/aux/
/build/m4/
2 changes: 1 addition & 1 deletion Zend/Zend.m4
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ dnl Ugly hack to check if dlsym() requires a leading underscore in symbol name.
dnl
AC_DEFUN([LIBZEND_DLSYM_CHECK],[
AC_MSG_CHECKING([whether dlsym() requires a leading underscore in symbol names])
_LT_AC_TRY_DLOPEN_SELF([
_LT_TRY_DLOPEN_SELF([
AC_MSG_RESULT(no)
], [
AC_MSG_RESULT(yes)
Expand Down
1 change: 1 addition & 0 deletions azure/macos/brew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ steps:
brew install pkg-config \
autoconf \
bison \
libtool \
re2c
displayName: 'Install Build Tools'
- script: |
Expand Down
2 changes: 2 additions & 0 deletions build/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ config_h_in = main/php_config.h.in
PHP_AUTOCONF = autoconf
PHP_AUTOHEADER = autoheader
PHP_AUTOCONF_FLAGS = -f
PHP_LIBTOOLIZE = libtoolize

all: configure $(config_h_in)

Expand All @@ -30,6 +31,7 @@ configure: configure.ac $(PHP_M4_FILES)
# not used by the PHP build system since PHP 7.4.
@echo rebuilding $@
@rm -f $@ aclocal.m4
@$(PHP_LIBTOOLIZE) -i -c -f -Wall
@$(PHP_AUTOCONF) $(PHP_AUTOCONF_FLAGS)

$(config_h_in): configure
Expand Down
Loading