Attached is a patch that fixes the issue.
--
Etienne Millon
From: Etienne Millon <[email protected]>
Date: Wed, 20 Apr 2011 11:34:45 +0200
Subject: Add -lz and -lX11 to LIBS
The new toolchain requires that all needed libraries are explicitly listed.
This is a fix for #623439.
---
src/Makefile.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/Makefile.in b/src/Makefile.in
index dd991ce..8d67779 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -425,7 +425,7 @@ gmpc_SOURCES = \
nodist_gmpc_SOURCES = \
$(gmpc_GOBCFILES)
-gmpc_LDADD = libeggsmclient.la $(am__append_1)
+gmpc_LDADD = libeggsmclient.la $(am__append_1) -lz -lX11
BUILT_SOURCES = \
$(gmpc_GOBSTAMPFILES)\
revisiont.h
--