Corrected some problems that emerged on the build server

This commit is contained in:
Joel Holdsworth 2008-12-13 13:57:19 +00:00
parent d61daa0b2f
commit fdb75fdd2a
2 changed files with 3 additions and 8 deletions

View file

@ -101,11 +101,6 @@ AC_CHECK_HEADER([tr1/memory],
,
AC_MSG_ERROR([std::tr1 proposed standard extension for shared_ptr missing])
)
AC_CHECK_HEADER([boost/foreach.hpp],
,
AC_MSG_ERROR([boost::foreach missing (http://www.boost.org/)])
)
AC_CHECK_HEADER([boost/shared_ptr.hpp],
,
@ -128,7 +123,7 @@ AC_CHECK_HEADER([boost/regex.hpp],
AC_LANG_POP([C++])
PKG_CHECK_MODULES(LUMIERA_GUI_LIBS, [sigc++-2.0 >= 2.0.18])
PKG_CHECK_MODULES(LUMIERA_COMMON_LIBS, [sigc++-2.0 >= 2.0.18])
############## Internatinalization
#GETTEXT_PACKAGE=gtk-lumiera
@ -170,7 +165,7 @@ AC_CHECK_LIB(Xv, XvQueryAdaptors, [LUMIERA_GUI_LIBS="$LUMIERA_GUI_LIBS -lXv"],
# END X11 Dependancies
AC_SUBST(LUMIERA_COMMON_LIBS)
AC_SUBST(LUMIERA_PLUGIN_LIBS)
AC_SUBST(LUMIERA_GUI_CFLAGS)
AC_SUBST(LUMIERA_GUI_LIBS)

View file

@ -299,7 +299,7 @@ TimelineWidget::create_timeline_tracks()
BOOST_FOREACH(shared_ptr<model::Track> child,
sequence->get_child_tracks())
create_timeline_tracks_from_branch(sequence);
create_timeline_tracks_from_branch(child);
}
void