From 02a0d61e559db01b441943727a733e58decca00d Mon Sep 17 00:00:00 2001 From: crs Date: Wed, 8 Jan 2003 22:17:44 +0000 Subject: [PATCH] Added bit about configuring on Solaris, which requires some options to find the X11 includes and libraries. --- FAQ | 9 +++++++++ INSTALL | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/FAQ b/FAQ index efdda31c..8805d1d1 100644 --- a/FAQ +++ b/FAQ @@ -15,6 +15,7 @@ Questions 10. Do AltGr or Mode-Switch work? 11. Why isn't synergy ported to platform XYZ? 12. My client can't connect. What's wrong? +13. Linking fails on Solaris. What's wrong? Answers @@ -135,3 +136,11 @@ Answers rejected" or "connection refused" then the server isn't started, can't bind the address, or the client is connecting to the wrong host name/address or port. + +13. Linking fails on Solaris. What's wrong? + + Did you add `--x-includes=/usr/openwin/include + --x-libraries=/usr/openwin/lib' (without the linebreak) to the + `configure' command line? Solaris puts the X11 includes and + libraries in an unusual place and the above lets synergy find + them. diff --git a/INSTALL b/INSTALL index 8d531dd0..b90c6be9 100644 --- a/INSTALL +++ b/INSTALL @@ -30,6 +30,12 @@ For a list of options to configure use: ./configure --help +On Solaris you may need to use: + + ./configure --x-includes=/usr/openwin/include --x-libraries=/usr/openwin/lib + +so synergy can find the X11 includes and libraries. + Building --------