Mercurial > audlegacy-plugins
changeset 3043:8a7364b4c957
add a debugging notice
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Tue, 14 Apr 2009 18:25:16 -0500 |
parents | fbfdd7946be9 |
children | c733dd93af62 |
files | configure.ac src/filewriter/filewriter.c src/projectm-1.0/Makefile |
diffstat | 3 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.ac Tue Apr 14 18:19:27 2009 -0500 +++ b/configure.ac Tue Apr 14 18:25:16 2009 -0500 @@ -1491,10 +1491,6 @@ [have_projectm1=$enableval], [have_projectm1=yes]) -if test "x$have_projectm1" = "xyes"; then - PKG_CHECK_MODULES(GTKGLEXT, [gtkglext-1.0 >= 1.2.0], [have_projectm1="yes"], [have_projectm1="no"]) -fi - if test "$have_projectm1" = "yes"; then PKG_CHECK_MODULES(LIBPROJECTM1, [libprojectM >= 1.1], [have_projectm1="yes"], [have_projectm1="no"]) if test x$libprjM = xno; then
--- a/src/filewriter/filewriter.c Tue Apr 14 18:19:27 2009 -0500 +++ b/src/filewriter/filewriter.c Tue Apr 14 18:25:16 2009 -0500 @@ -143,6 +143,8 @@ { ConfigDb *db; + g_print("file_init called\n"); + db = aud_cfg_db_open(); aud_cfg_db_get_int(db, FILEWRITER_CFGID, "fileext", &fileext); aud_cfg_db_get_string(db, FILEWRITER_CFGID, "file_path", &file_path);
--- a/src/projectm-1.0/Makefile Tue Apr 14 18:19:27 2009 -0500 +++ b/src/projectm-1.0/Makefile Tue Apr 14 18:25:16 2009 -0500 @@ -10,6 +10,7 @@ plugindir := ${plugindir}/${VISUALIZATION_PLUGIN_DIR} +LD = ${CXX} CFLAGS += ${PLUGIN_CFLAGS} CXXFLAGS += ${PLUGIN_CFLAGS} CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${ARCH_DEFINES} ${XML_CPPFLAGS} ${SDL_CFLAGS} ${LIBPROJECTM1_CFLAGS} -I../../intl -I../..