Commit 94501cdc authored by dscho's avatar dscho

fix in-place compilation of VisualNaCro

parent 75b900a3
......@@ -4,7 +4,7 @@ OBJS=nacro.o
ISRCS=nacro_wrap.c
IOBJS=nacro_wrap.o
TARGET=nacro
LIBS= -lvncclient @LIBVNCSERVERLIBS@
LIBS= @LIBVNCSERVERLIBS@
nacro_CFLAGS= @LIBVNCSERVERCFLAGS@
......
......@@ -11,7 +11,7 @@ if [ -f "`dirname "$0"`/libvncserver-config.in" ]; then
dir="`dirname "$0"`"
prefix="`cd "$dir"; pwd`"
includedir="$prefix"
libdir="$prefix"/libvncserver
libdir="$prefix/libvncserver $prefix/libvncclient"
fi
usage="\
......@@ -55,12 +55,13 @@ while test $# -gt 0; do
echo "$includes"
;;
--libs)
for dir in $libdir; do
echo -n "-L$dir "
if [ "`uname`" = "SunOS" ]; then
libdirs="-L$libdir -R$libdir"
else
libdirs="-L$libdir"
echo -n "-R$dir "
fi
echo "$libdirs" -lvncserver @LIBS@ @WSOCKLIB@
done
echo -lvncserver -lvncclient @LIBS@ @WSOCKLIB@
;;
--link)
echo @CC@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment