Skip to content

Commit

Permalink
Fix PHP library build to include missing functions from Slice
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 18, 2023
1 parent aa870ff commit debc1c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion php/src/php/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ IcePHP_installdir := $(install_phplibdir)
IcePHP_cppflags := -I$(project) -I$(top_srcdir)/cpp/src $(ice_cpp_cppflags) $(php_cppflags)
IcePHP_ldflags := $(php_ldflags)
IcePHP_dependencies := IceDiscovery IceLocatorDiscovery IceSSL Ice
IcePHP_extra_sources := $(top_srcdir)/cpp/src/Slice/PHPUtil.cpp
IcePHP_extra_sources := $(filter-out %Util.cpp %Ruby.cpp,\
$(wildcard $(top_srcdir)/cpp/src/Slice/*.cpp)) \
$(top_srcdir)/cpp/src/Slice/SliceUtil.cpp \
$(top_srcdir)/cpp/src/Slice/PHPUtil.cpp \
$(top_srcdir)/cpp/src/Slice/StringLiteralUtil.cpp \

projects += $(project)
srcs:: $(project)

0 comments on commit debc1c0

Please sign in to comment.