diff options
author | kleink <kleink> | 1999-04-23 13:49:25 +0000 |
---|---|---|
committer | kleink <kleink> | 1999-04-23 13:49:25 +0000 |
commit | ffb8d5113f980ce5db85546ffb5784b375aa1f00 (patch) | |
tree | c29cdb9d9b10acbfd867bb4f3598e29d776b0312 /mbone | |
parent | 215b1dca829616d6bad2289516c3881a951402be (diff) | |
download | pkgsrc-ffb8d5113f980ce5db85546ffb5784b375aa1f00.tar.gz |
Fix linkage for X11 and Tcl/Tk libraries.
Diffstat (limited to 'mbone')
-rw-r--r-- | mbone/sdr/files/Makefile.netbsd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mbone/sdr/files/Makefile.netbsd b/mbone/sdr/files/Makefile.netbsd index 1fc70be35b8..14b1ef9d110 100644 --- a/mbone/sdr/files/Makefile.netbsd +++ b/mbone/sdr/files/Makefile.netbsd @@ -1,8 +1,9 @@ -# $NetBSD: Makefile.netbsd,v 1.5 1999/01/01 07:58:29 garbled Exp $ +# $NetBSD: Makefile.netbsd,v 1.6 1999/04/23 13:49:25 kleink Exp $ CC = gcc -g -O INCLUDES = -I${LOCALBASE}/include/tk8.0 -I${LOCALBASE}/include/tcl8.0 -I${X11BASE}/include -LIBS = -L${LOCALBASE}/lib -ltk80 -ltcl80 -lm -L${X11BASE}/lib -lX11 +LIBS = -L${LOCALBASE}/lib -ltk80 -ltcl80 -lm -L${X11BASE}/lib -lX11 \ + -Wl,-R${LOCALBASE}/lib -Wl,-R${X11BASE}/lib CFLAGS = ${INCLUDES} -DNORANDPROTO -DUSE_PERROR -DAUTH ${EXTRA_FLAGS} -Werror all:: sdr |