Displaying 2 results from an estimated 2 matches for "lib64dir".
2006 Oct 17
0
[PATCH] misc compile fixes for tools on Solaris
...da88b0c38a1c34c8cc95bc28bdbd
# Parent 7a86cb5bb6b6e9164bec378b5fb0a270625a2452
A couple of simple compile fixes for tools/ on Solaris.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/Linux.mk b/config/Linux.mk
--- a/config/Linux.mk
+++ b/config/Linux.mk
@@ -21,6 +21,7 @@ LIB64DIR=lib64
LIB64DIR=lib64
SOCKET_LIBS =
+CURSES_LIB = -lncurses
SONAME_LDFLAG = -Wl,-soname
SHLIB_FLAGS = -shared
diff --git a/config/SunOS.mk b/config/SunOS.mk
--- a/config/SunOS.mk
+++ b/config/SunOS.mk
@@ -22,6 +22,7 @@ LIB64DIR=lib/amd64
LIB64DIR=lib/amd64
SOCKET_LIBS = -lsocket
+CURSES_...
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...#39;'s LD. Fix the build to use the correct
flags, and link against libsocket where necessary.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/Linux.mk b/config/Linux.mk
--- a/config/Linux.mk
+++ b/config/Linux.mk
@@ -20,6 +20,10 @@ INSTALL_PROG = $(INSTALL) -m0755
LIB64DIR=lib64
+SOCKET_LIBS =
+SONAME_LDFLAG = -Wl,-soname
+SHLIB_FLAGS = -shared
+
ifneq ($(debug),y)
# Optimisation flags are overridable
CFLAGS ?= -O2 -fomit-frame-pointer
diff --git a/config/SunOS.mk b/config/SunOS.mk
--- a/config/SunOS.mk
+++ b/config/SunOS.mk
@@ -20,6 +20,10 @@ INSTALL_PROG =...