summaryrefslogtreecommitdiffstats
path: root/sys/oss/Makefile.am
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2006-04-10 19:55:31 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2006-04-10 19:55:31 +0000
commit4ebda6356b3d0d5391410ac5d593dca7d8a4885b (patch)
tree7fc2e2b4ee5ae58d015237a8bbe181ce89ad3afc /sys/oss/Makefile.am
parent4d598ca20146707158392755903950ce07ca411f (diff)
sys/oss/: - the user-visible error strings were in the wrong category
Original commit message from CVS: * sys/oss/Makefile.am: * sys/oss/common.h: * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open), (gst_oss_sink_prepare), (gst_oss_sink_unprepare): * sys/oss/gstosssrc.c: (gst_oss_src_prepare), (gst_oss_src_unprepare): - the user-visible error strings were in the wrong category - and the messages were not marked for translation - which is actually a good thing, because they were exactly the kind of message you would never want anyone to see - the macros were using variables that didn't exist in the macro arguments - and they were obviously copied from each other and then modified - so a common header makes sense
Diffstat (limited to 'sys/oss/Makefile.am')
-rw-r--r--sys/oss/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/oss/Makefile.am b/sys/oss/Makefile.am
index f7dc0aa5..079444be 100644
--- a/sys/oss/Makefile.am
+++ b/sys/oss/Makefile.am
@@ -18,7 +18,8 @@ libgstossaudio_la_LIBADD = \
$(GST_LIBS)
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-noinst_HEADERS = gstosssink.h \
+noinst_HEADERS = common.h \
+ gstosssink.h \
gstosssrc.h \
gstosshelper.h \
gstossdmabuffer.h \