search for: socket_lib

Displaying 11 results from an estimated 11 matches for "socket_lib".

Did you mean: socketlib
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...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 = $(INSTALL) -m0755...
2011 Nov 03
3
[PATCH 0 of 2 RESEND] tools: add two new compile flags and perform checks on user defined folders.
Added two new sets of compile flags, and pass them to the check scripts, so libraries and includes are searched there also. Resend this patches because they suffered some modifications and where scattered along the mailing list. Please review, thanks Roger. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2006 Oct 17
0
[PATCH] misc compile fixes for tools on Solaris
...ent 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_LIB = -lcurses SONAME_LDFLAG = -Wl,...
2004 Aug 06
0
small icecast fix
...0 1.8 +++ src/Makefile.am 28 Aug 2002 10:30:22 -0000 @@ -16,8 +16,8 @@ icecast_SOURCES = config.c main.c loggin icecast_LDADD = net/libicenet.la thread/libicethread.la httpp/libicehttpp.la\ log/libicelog.la avl/libiceavl.la timing/libicetiming.la -LIBS = @LIBS@ -lxslt -lpthread @SOCKET_LIBS@ @XML_LIBS@ @OGG_LIBS@ @VORBIS_LIBS@ -CFLAGS = -g @CFLAGS@ @XML_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ +LIBS = @LIBS@ @XSLT_LIBS@ -lpthread @SOCKET_LIBS@ @XML_LIBS@ @OGG_LIBS@ @VORBIS_LIBS@ +CFLAGS = -g @CFLAGS@ @XML_CFLAGS@ @XSLT_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ INCLUDES = -I$(srcdir)/net -I...
2004 Aug 06
3
icecast/libxslt compile error
Wondering if anyone else is having this problem compiling the latest version in CVS. autogen.sh runs fine, configure runs fine, make fails with the following: gcc -DPACKAGE=\"icecast\" -DVERSION=\"2.0\" -DHAVE_DLFCN_H=1 -DHAVE_IPV6=1 -DSTDC_HEADERS=1 -DHAVE_STDINT_H=1 -DCHUID=1 -DCHROOT=1 -I. -I. -I./net -I./thread -I./avl -I./httpp -I./log -I./timing -g -O20
2011 Nov 22
7
[PATCH] use ncurses-config to find all curses related libs
...p://lists.opensuse.org/opensuse-packaging/2011-11/msg00055.html Signed-off-by: Olaf Hering <olaf@aepfle.de> diff -r 0b1ac7b3ee4d config/StdGNU.mk --- a/config/StdGNU.mk +++ b/config/StdGNU.mk @@ -67,7 +67,7 @@ XEN_CONFIG_DIR = $(CONFIG_DIR)/xen XEN_SCRIPT_DIR = $(XEN_CONFIG_DIR)/scripts SOCKET_LIBS = -CURSES_LIBS = -lncurses +CURSES_LIBS = $(shell if ! ncurses5-config --libs 2>/dev/null ; then ncurses-config --libs ; fi) PTHREAD_LIBS = -lpthread UTIL_LIBS = -lutil DLOPEN_LIBS = -ldl
2011 Mar 16
3
[PATCH] tools: do not link against unused libraries
...e/Makefile Wed Mar 16 10:38:52 2011 +0000 @@ -1,4 +1,3 @@ - XEN_ROOT=../.. include $(XEN_ROOT)/tools/Rules.mk @@ -8,9 +7,10 @@ CFLAGS += $(CFLAGS_libxenstore) CFLAGS += $(CFLAGS_libxenstore) LDLIBS += $(LDLIBS_libxenctrl) LDLIBS += $(LDLIBS_libxenstore) -LDLIBS += $(UTIL_LIBS) LDLIBS += $(SOCKET_LIBS) -LDLIBS += -lrt + +LDLIBS_xenconsoled += $(UTIL_LIBS) +LDLIBS_xenconsoled += -lrt BIN = xenconsoled xenconsole @@ -23,10 +23,10 @@ clean: $(RM) client/*.o daemon/*.o xenconsoled: $(patsubst %.c,%.o,$(wildcard daemon/*.c)) - $(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS) $(LDLIBS) + $(CC) $(CF...
2018 Oct 12
0
Wine release 3.18
...okie access thread safe. winhttp: Make accessing session credential handle thread safe. msvcrt: Use memmove to copy memory in wmemcpy_s. msvcrt: Use memmove to copy memory in memcpy_s. hostname: Use GetComputerNameW to get hostname. configure: Get rid of no longer used SOCKET_LIBS. mshtml: Support registry configuration for maximal allowed compatibility mode. mlang: Register codepages info in registry. credui: Correctly check for duplicated username entries in CredDialogFillUsernameCombo. ntdll/tests: Use FILE_INFORMATION_CLASS values instead of hard...
2004 Aug 06
3
ices2 compilations problems
...='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PROFILE='-O20 -g -pg -fsigned-char -D_REENTRANT' RANLIB='ranlib' SET_MAKE='' SHELL='/usr/local/bin/bash' SHOUT_CFLAGS='' SHOUT_CLFAGS='' SHOUT_LIBS='' SOCKET_LIBS='' STRIP='strip' SUN_CFLAGS='' VERSION='2.0' VORBISENC_LIBS='-lvorbisenc' VORBISFILE_LIBS='-lvorbisfile' VORBIS_CFLAGS='-I/home/Darkmeteor/include' VORBIS_LIBS='-L/home/Darkmeteor/lib -lvorbis -lm' XIPH_CFLAGS='' XMLCONFIG=...
2004 Aug 06
3
ices2 compilations problems
Hi, I have an Ices2 comp problem, it can't find libshout. I have installed Libshout 2.0 in /home/Darkmeteor the configure line I'm using for ices2 is : ./configure --prefix=/home/Darkmeteor --with-ogg-prefix=/home/Darkmeteor --with-vorbis-prefix=/home/Darkmeteor --with-shout-prefix=/home/Darkmeteor Problem : checking for Ogg... yes checking for Vorbis... yes checking for Shout... no
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -