diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-09 15:48:57 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-09 15:48:57 +0000 |
commit | b390fe33dce6936841f9cd0a208cd9d47f7a1e35 (patch) | |
tree | 3f24da1ac3f49a71488f1c55d6263db203ae8705 | |
parent | 4c6143c97d199fe4a43147847baaf4261f0a3d37 (diff) |
fix libraries list for static architectures
-rw-r--r-- | app/xvctl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/xvctl/Makefile b/app/xvctl/Makefile index 6fbca83b9..33bd71e5d 100644 --- a/app/xvctl/Makefile +++ b/app/xvctl/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 15:48:56 matthieu Exp $ .include <bsd.own.mk> X11BASE?= /usr/X11R6 @@ -7,7 +7,7 @@ PROG=xvctl MAN=xvctl.1 CPPFLAGS+= -I${X11BASE}/include -LDADD+=-L${X11BASE}/lib -lXv -lXext -lX11 +LDADD+=-L${X11BASE}/lib -lXv -lXext -lX11 -lXau -lXdmcp MANDIR= ${X11BASE}/man/cat |