you are right about the glib1.2/2.0 thing.
can you please try to replace the Makefile in src/frontend/kluppe with
the attached one. this one explicitly uses gthread-2.0 and works for me
on "unstable".
thanks
all the best
d
Le Mercredi 29 Mars 2006 12:42, kluppe a écrit :
hello!
i have no experience with pbuilder, but you will need libglib1.2-dev to
compile kluppe
best
d
The Build-Depends specify libgtk+2.0-dev, so it would be a bad thing to link
against both glib2.0 and glib1.2. If you actually meant libglib2.0-dev, that
was indeed installed since it's a dependency of libgtk+2.0-dev.
The package built successfully as recently as 25 Feb under pbuilder; my only
guess is that changes in a recent version of libglib2.0-dev or something else
are causing this.
BIN_DIR = $(INSTALL_PREFIX)/bin
PIXMAPS_DIR = $(INSTALL_PREFIX)/share/pixmaps
SOURCES = sfpreview.c configfile.c griddialog.c graindialog.c customcurve.c
looper.c gtkmeter.c gtkloopview.c kluppe.c
TARGETS = $(SOURCES:.c=.o)
kluppe: $(TARGETS)
$(CC) $(CFLAGS) -DPIXMAPS_DIR=\"$(PIXMAPS_DIR)\" *.o ../../common/*.o
-o kluppe `pkg-config gtk+-2.0 gthread-2.0 alsa jack sndfile libxml-2.0 --libs
gthread-2.0`
.c.o:
$(CC) $(CFLAGS) -DPIXMAPS_DIR=\"$(PIXMAPS_DIR)\" -c -o $@ $*.c
`pkg-config gtk+-2.0 --cflags` `xml2-config --cflags`
install: kluppe
install -d $(DESTDIR)$(BIN_DIR)
install -m 755 kluppe $(DESTDIR)$(BIN_DIR)
install -d $(DESTDIR)$(PIXMAPS_DIR)
install -m 644 kluppe.png $(DESTDIR)$(PIXMAPS_DIR)
clean:
rm -f *.o kluppe