summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/Makefile.am34
2 files changed, 25 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index e5bd67526..635bd9c9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
xine-lib (next version) [someone fill in stability and urgency]
+ * dvd plugin replaced by dvdnav with full menu support
* fix segfault on exit for w32codecs
* fix yuy2 on xshm bug (affects w32codecs and msvc)
* reimplemented x/y zoom
@@ -25,6 +26,8 @@ xine-lib (next version) [someone fill in stability and urgency]
* decode id3v1 tags in mp3 files
* updated internal liba52 to version 0.7.4
* numeric selection of dvd menu buttons (could make some dvd easter eggs accesible)
+ * big api cleanup
+ * xine engine can open more than one stream at a time
xine-lib (0.9.13) unstable; urgency=low
diff --git a/src/Makefile.am b/src/Makefile.am
index 50bc6a866..d79bd337a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,19 +1,19 @@
# Order is important be careful changing SUBDIRS
-SUBDIRS = \
- xine-utils \
- xine-engine \
- audio_out \
- video_out \
- dxr3 \
- input \
- libmpeg2 \
- libspudec \
- demuxers \
+#SUBDIRS = \
+# xine-utils \
+# xine-engine \
+# audio_out \
+# video_out \
+# dxr3 \
+# input \
+# libmpeg2 \
+# libspudec \
+# demuxers \
# liba52 \
- libffmpeg \
+# libffmpeg \
# liblpcm \
# libw32dll \
- libmad
+# libmad
# libdts \
# libvorbis \
# libdivx4 \
@@ -24,6 +24,16 @@ SUBDIRS = \
# libxineadec \
# libfaad
+SUBDIRS = \
+ xine-utils \
+ xine-engine \
+ audio_out \
+ video_out \
+ input \
+ demuxers \
+ libffmpeg \
+ libmad
+
debug:
@list='$(SUBDIRS)'; for subdir in $$list; do \
(cd $$subdir && $(MAKE) $@) || exit; \