diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-09 11:14:26 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-09 11:14:26 +0000 |
commit | 35adaabe0b98a5db5de25c5b2b2bcc608579e2df (patch) | |
tree | 4588fe07185d7b302673a9526415a49711e361cc | |
parent | 6a30dc73cb211d2573cb87b0042df97b7770ad41 (diff) |
Fix libraries list for static architectures
-rw-r--r-- | app/xidle/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/xidle/Makefile b/app/xidle/Makefile index 9ec0ab9fb..4073865f6 100644 --- a/app/xidle/Makefile +++ b/app/xidle/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2006/12/02 16:28:48 matthieu Exp $ +# $OpenBSD: Makefile,v 1.3 2007/04/09 11:14:25 matthieu Exp $ .include <bsd.own.mk> X11BASE?= /usr/X11R6 @@ -7,7 +7,7 @@ PROG= xidle CPPFLAGS+= -I${X11BASE}/include CFLAGS+= -Wall -LDADD+= -L${X11BASE}/lib -lXss -lXext -lX11 +LDADD+= -L${X11BASE}/lib -lXss -lXext -lX11 -lXau -lXdmcp MANDIR= ${X11BASE}/man/cat |