[pvr] configure and build pvr add-ons if the tree is found in /pvr-addons, so these...
[vuplus_xbmc] / bootstrap
index 870b801..86b5189 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -3,14 +3,21 @@
 set -e
 
 autoreconf -vif
+autoreconf -vif lib/libid3tag/libid3tag
+autoreconf -vif xbmc/screensavers/rsxs-0.9
+autoreconf -vif xbmc/visualizations/Goom/goom2k4-0
+autoreconf -vif lib/libapetag
 autoreconf -vif lib/cpluff
-# we must autoreconf libass as we don't know till later if it's used.
-[ -d lib/libass ] && autoreconf -vif lib/libass
-# order matters with libbdnav and friends
-[ -d xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss ] && \
-  autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss
-autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread
-autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav
+# order matters with libdvd and friends
+[ -d lib/libdvd/libdvdcss ] && \
+  autoreconf -vif lib/libdvd/libdvdcss
+autoreconf -vif lib/libdvd/libdvdread
+autoreconf -vif lib/libdvd/libdvdnav
+autoreconf -vif lib/gtest
+
+if [ -f pvr-addons/Makefile.am ]; then
+  autoreconf -vif pvr-addons
+fi
 
 # Clean the generated files
 find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;