mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
Merge branch 'master' into 0.11
This commit is contained in:
commit
af70f1fc32
2 changed files with 8 additions and 3 deletions
|
@ -524,13 +524,12 @@ plugin_init (GstPlugin * plugin)
|
|||
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||
#endif
|
||||
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"cdparanoia",
|
||||
"Read audio from CD in paranoid mode",
|
||||
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
||||
plugin_init, GST_PLUGINS_BASE_VERSION, "LGPL", GST_PACKAGE_NAME,
|
||||
GST_PACKAGE_ORIGIN)
|
||||
|
|
|
@ -27,6 +27,12 @@ G_BEGIN_DECLS
|
|||
#define size16 gint16
|
||||
#define size32 gint32
|
||||
|
||||
/* on OSX the cdparanoia headers include IOKit framework headers (in particular
|
||||
* SCSICmds_INQUIRY_Definitions.h) which define a structure that has a member
|
||||
* named VERSION, so we must #undef VERSION here for things to compile on OSX */
|
||||
static char GST_PLUGINS_BASE_VERSION[] = VERSION;
|
||||
#undef VERSION
|
||||
|
||||
#ifdef CDPARANOIA_HEADERS_IN_DIR
|
||||
#include <cdda/cdda_interface.h>
|
||||
#include <cdda/cdda_paranoia.h>
|
||||
|
|
Loading…
Reference in a new issue