Merge pull request #17 from dktrkranz/master

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
pull/1/head
Luca Falavigna 10 years ago committed by Johannes Schindelin
commit 4276864096

@ -1137,7 +1137,10 @@ x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
x86_64-*linux*)
LD="${LD-ld} -m elf_i386"
;;
ppc64-*linux*|powerpc64-*linux*)
powerpc64le-*)
LD="${LD-ld} -m elf32lppclinux"
;;
powerpc64-*)
LD="${LD-ld} -m elf32ppclinux"
;;
s390x-*linux*)
@ -1153,7 +1156,10 @@ x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
x86_64-*linux*)
LD="${LD-ld} -m elf_x86_64"
;;
ppc*-*linux*|powerpc*-*linux*)
powerpcle-*)
LD="${LD-ld} -m elf64lppc"
;;
powerpc-*)
LD="${LD-ld} -m elf64ppc"
;;
s390*-*linux*)

@ -7,6 +7,8 @@ Name: LibVNCClient
Description: A library for easy implementation of a VNC client.
Version: @VERSION@
Requires:
Libs: -L${libdir} -lvncclient @LIBS@ @WSOCKLIB@
Requires.private: zlib
Libs: -L${libdir} -lvncclient
Libs.private: @LIBS@ @WSOCKLIB@
Cflags: -I${includedir}

@ -7,6 +7,8 @@ Name: LibVNCServer
Description: A library for easy implementation of a VNC server.
Version: @VERSION@
Requires:
Libs: -L${libdir} -lvncserver @LIBS@ @WSOCKLIB@
Requires.private: zlib
Libs: -L${libdir} -lvncserver
Libs.private: @LIBS@ @WSOCKLIB@
Cflags: -I${includedir}

Loading…
Cancel
Save