Tue 16 Feb 2010 11:34:42 AM UTC, original submission:
hello,
apologies if I am missing some blatant point.
I found this with gnash-0.8.7 (was absent in 0.8.6)
I build with --with-boost-incl=/usr/include/boost
This is correctly set in plugin/Makefile:
BOOST_CFLAGS = -I/usr/include/boost
but then, apparently, BOOST_CFLAGS is ignored in the definition of LTCXXCOMPILE, which causes the build to crash with:
../libbase/StringPredicates.h:25:46: error: boost/algorithm/string/compare.hpp: No such file or directory
../libbase/StringPredicates.h:26:48: error: boost/algorithm/string/predicate.hpp: No such file or directory
As a matter of fact, this workaround:
diff -c plugin/Makefile.in.ORIG plugin/Makefile.in
- plugin/Makefile.in.ORIG Tue Feb 16 11:44:33 2010
--- plugin/Makefile.in Tue Feb 16 11:44:33 2010
***************
$(CXXFLAGS) $(libgnashplugin_la_LDFLAGS) $(LDFLAGS) -o $@
@NPAPI_TRUE@@WIN32_FALSE@am_libgnashplugin_la_rpath = -rpath \
@NPAPI_TRUE@@WIN32_FALSE@ $(plugindir)
! DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
--- 136,142 ----
$(CXXFLAGS) $(libgnashplugin_la_LDFLAGS) $(LDFLAGS) -o $@
@NPAPI_TRUE@@WIN32_FALSE@am_libgnashplugin_la_rpath = -rpath \
@NPAPI_TRUE@@WIN32_FALSE@ $(plugindir)
! DEFAULT_INCLUDES = $(BOOST_CFLAGS) -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
fixes the problem for me.
I am on GNU/linux.
Thanks for your valuable work
ciao
gabriele
|