> I did a full rewrite of Jeremie's module.
> Get it at http://ard.nu/tru64_mme.tar
Yes, and you could have said that it works far better than what I had
quickly set up !
Many thanks for the work you did on this plugin,
Jeremie.
BTW, for the record, the 'more generic' Makefile I suggested last day
which you did not take into account yet:
# Makefile for Tru64 MME Output Plugin for XMMS
XMMS_OUTPUTLIBDIR = `xmms-config --output-plugin-dir`
CC = cc
LD = cc
CP = cp
RM = rm
CFLAGS = -pthread -arch host `xmms-config --cflags` -DPIC -O2
-I/usr/include/mme
LINKFLAGS = -pthread -shared -expect_unresolved
'get_current_effect_plugin' -expect_unresolved 'effects_enabled'
`xmms-config --libs` -lmme
OBJECTS = about.o audio.o init.o mixer.o
SO_NAME = libtru64_mme.so
$(SO_NAME) : $(OBJECTS)
$(LD) -o $(SO_NAME) $(LINKFLAGS) $(OBJECTS)
install : $(SO_NAME)
-$(RM) $(XMMS_OUTPUTLIBDIR)/$(SO_NAME)
$(CP) $(SO_NAME) $(XMMS_OUTPUTLIBDIR)
clean:
rm -f $(OBJECTS) $(SO_NAME) so_locations