From: Gerd Moellmann Date: Thu, 2 Dec 1999 07:58:22 +0000 (+0000) Subject: (LIBS_SYSTEM): Add -lgen because that's needed X-Git-Tag: emacs-pretest-21.0.90~5909 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c42b4fab89e387a47b833aa48af174e9763285a9;p=emacs.git (LIBS_SYSTEM): Add -lgen because that's needed for building with Motif. --- diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 2c10a7550c7..95cd4392411 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -33,7 +33,8 @@ Boston, MA 02111-1307, USA. */ #undef NOMULTIPLEJOBS -#define LIBS_SYSTEM -lsocket -lnsl -lelf +/* Motif needs -lgen. */ +#define LIBS_SYSTEM -lsocket -lnsl -lelf -lgen #define ORDINARY_LINK #if 0 @@ -202,3 +203,8 @@ Boston, MA 02111-1307, USA. */ #define bcmp(src,dst,n) memcmp (src,dst,n) #define bzero(s,n) memset (s,0,n) #endif + +/* Markus Weiand says this is needed for Motif on + SINIX. */ +#undef LIBS_SYSTEM +#define LIBS_SYSTEM -lgen