Skip to content

Commit

Permalink
Fix indirect linking
Browse files Browse the repository at this point in the history
In the latest glibc, shared objects cannot be implicitly linked. This
was causing easystroke to fail to build on Fedora 13.  Thanks spotrh.
  • Loading branch information
thjaeger committed Mar 17, 2010
1 parent d6f9bc9 commit 16757c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ STROKEFLAGS = -Wall -std=c99 $(DFLAGS)
CXXFLAGS = -Wall $(DFLAGS) -DLOCALEDIR=\"$(LOCALEDIR)\" `pkg-config gtkmm-2.4 dbus-glib-1 --cflags`
LDFLAGS = $(DFLAGS)

LIBS = $(DFLAGS) -lboost_serialization-mt -lXtst `pkg-config gtkmm-2.4 dbus-glib-1 --libs`
LIBS = $(DFLAGS) -lboost_serialization-mt -lX11 -lXext -lXi -lXfixes -lXtst `pkg-config gtkmm-2.4 dbus-glib-1 --libs`

BINARY = easystroke
ICON = easystroke.svg
Expand Down

0 comments on commit 16757c0

Please sign in to comment.