Skip to content
Snippets Groups Projects
Commit 14187e6e authored by nicfit's avatar nicfit
Browse files

A friend running OpenBox on Debian had an undefined trayicons_functions symbol...

A friend running OpenBox on Debian had an undefined trayicons_functions symbol which prevented the trayicon from loading.  This patch fixes that.
parent 7cd0b8d6
No related branches found
No related tags found
No related merge requests found
......@@ -8,10 +8,10 @@ all: trayicon.so gtkspell.so
# Build the shared objects
trayicon.so: trayicon.o eggtrayicon.o trayiconmodule.o
$(CC) $(LDFLAGS) -shared $^ -o $@
$(CC) -shared $^ -o $@ $(LDFLAGS)
gtkspell.so:
$(CC) $(OPTFLAGS) $(CFLAGS) $(LDFLAGS) `pkg-config --libs --cflags gtkspell-2.0` -shared gtkspellmodule.c $^ -o $@
$(CC) $(OPTFLAGS) $(CFLAGS) `pkg-config --cflags gtkspell-2.0` -shared gtkspellmodule.c $^ -o $@ $(LDFLAGS) `pkg-config --libs gtkspell-2.0`
# The path to the GTK+ python types
DEFS=`pkg-config --variable=defsdir pygtk-2.0`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment