diff options
author | simonb <simonb> | 2000-01-13 05:12:15 +0000 |
---|---|---|
committer | simonb <simonb> | 2000-01-13 05:12:15 +0000 |
commit | bdb4c42a88fc343ed82fb199d86d3a23397b5a92 (patch) | |
tree | f2210321ed0b512be885f49037accc2abc15e448 /www | |
parent | 27092a8d499e20efad6c6552c8b4f2eca5e70d1c (diff) | |
download | pkgsrc-bdb4c42a88fc343ed82fb199d86d3a23397b5a92.tar.gz |
Use LDFLAGS to get ELF -Wl,-R stuff, and use USE_X11 to get X library
paths.
Diffstat (limited to 'www')
-rw-r--r-- | www/ns-remote/Makefile | 3 | ||||
-rw-r--r-- | www/ns-remote/files/Makefile | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/www/ns-remote/Makefile b/www/ns-remote/Makefile index 55bd8ced910..877e0421f74 100644 --- a/www/ns-remote/Makefile +++ b/www/ns-remote/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/01/12 15:03:41 abs Exp $ +# $NetBSD: Makefile,v 1.2 2000/01/13 05:12:15 simonb Exp $ DISTNAME= ns-remote PKGNAME= ns-remote-1.1 @@ -12,6 +12,7 @@ HOMEPAGE= http://home.netscape.com/newsref/std/x-remote.html # fill in when done... # DEPENDS+= ../communicator DIST_SUBDIR= netscape +USE_X11= yes do-extract: ${MKDIR} ${WRKSRC} diff --git a/www/ns-remote/files/Makefile b/www/ns-remote/files/Makefile index cd2d05e6340..e985a1efdc7 100644 --- a/www/ns-remote/files/Makefile +++ b/www/ns-remote/files/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/01/12 15:03:42 abs Exp $ +# $NetBSD: Makefile,v 1.2 2000/01/13 05:12:16 simonb Exp $ # # Very simple Makefile used to compile Netscape's ns-remote program # @@ -9,7 +9,8 @@ X11BASE?= /usr/X11R6 all: ${PROG} ${PROG}: remote.c - ${CC} ${CFLAGS} -o ${PROG} remote.c -DSTANDALONE -I${X11BASE}/include -L${X11BASE}/lib -lXmu -lX11 + ${CC} ${CFLAGS} -o ${PROG} remote.c -DSTANDALONE -I${X11BASE}/include \ + ${LDFLAGS} -lXmu -lXt -lSM -lICE -lXext -lX11 clean: rm ${PROG} |