Commit 42768640 authored by Luca Falavigna's avatar Luca Falavigna Committed by Johannes Schindelin

Merge pull request #17 from dktrkranz/master

Signed-off-by: 's avatarJohannes Schindelin <johannes.schindelin@gmx.de>
parents 27b0c0de cdd8675f
...@@ -1137,7 +1137,10 @@ x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) ...@@ -1137,7 +1137,10 @@ x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
x86_64-*linux*) x86_64-*linux*)
LD="${LD-ld} -m elf_i386" LD="${LD-ld} -m elf_i386"
;; ;;
ppc64-*linux*|powerpc64-*linux*) powerpc64le-*)
LD="${LD-ld} -m elf32lppclinux"
;;
powerpc64-*)
LD="${LD-ld} -m elf32ppclinux" LD="${LD-ld} -m elf32ppclinux"
;; ;;
s390x-*linux*) s390x-*linux*)
...@@ -1153,7 +1156,10 @@ x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) ...@@ -1153,7 +1156,10 @@ x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
x86_64-*linux*) x86_64-*linux*)
LD="${LD-ld} -m elf_x86_64" LD="${LD-ld} -m elf_x86_64"
;; ;;
ppc*-*linux*|powerpc*-*linux*) powerpcle-*)
LD="${LD-ld} -m elf64lppc"
;;
powerpc-*)
LD="${LD-ld} -m elf64ppc" LD="${LD-ld} -m elf64ppc"
;; ;;
s390*-*linux*) s390*-*linux*)
......
...@@ -7,6 +7,8 @@ Name: LibVNCClient ...@@ -7,6 +7,8 @@ Name: LibVNCClient
Description: A library for easy implementation of a VNC client. Description: A library for easy implementation of a VNC client.
Version: @VERSION@ Version: @VERSION@
Requires: Requires:
Libs: -L${libdir} -lvncclient @LIBS@ @WSOCKLIB@ Requires.private: zlib
Libs: -L${libdir} -lvncclient
Libs.private: @LIBS@ @WSOCKLIB@
Cflags: -I${includedir} Cflags: -I${includedir}
...@@ -7,6 +7,8 @@ Name: LibVNCServer ...@@ -7,6 +7,8 @@ Name: LibVNCServer
Description: A library for easy implementation of a VNC server. Description: A library for easy implementation of a VNC server.
Version: @VERSION@ Version: @VERSION@
Requires: Requires:
Libs: -L${libdir} -lvncserver @LIBS@ @WSOCKLIB@ Requires.private: zlib
Libs: -L${libdir} -lvncserver
Libs.private: @LIBS@ @WSOCKLIB@
Cflags: -I${includedir} Cflags: -I${includedir}
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