Displaying 1 result from an estimated 1 matches for "3012d4d".
Did you mean:
30124
2013 Feb 07
0
[PATCH 3/4] xmms - Fix inline linking problems with old glib
...G_H
+# include <config.h>
+#endif
+
+#if defined(__GNUC_STDC_INLINE__)
+# define G_INLINE_FUNC extern inline __attribute__((gnu_inline))
+#endif
+
void set_track_info(const char* title, int length_in_msec);
#endif
diff --git a/src/plugin_xmms/tag.c b/src/plugin_xmms/tag.c
index 938cde8..3012d4d 100644
--- a/src/plugin_xmms/tag.c
+++ b/src/plugin_xmms/tag.c
@@ -19,9 +19,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
+#include "plugin.h"
#include <stdlib.h>
#include <string.h>
--...