From a897bb17e74ff73b9ee19ace0ef62466030ab6e6 Mon Sep 17 00:00:00 2001 From: bustico Date: Thu, 27 Jan 2011 12:26:11 +0000 Subject: correct OSX Makefile to set correct dylib path on executable at install correct broadcast adress for loopback (not the same beetween linux/windows and osx) --- src/ivy.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/ivy.c') diff --git a/src/ivy.c b/src/ivy.c index 80f9bf6..7964200 100644 --- a/src/ivy.c +++ b/src/ivy.c @@ -55,7 +55,11 @@ #define ARG_START "\002" #define ARG_END "\003" +#ifdef __APPLE__ #define DEFAULT_DOMAIN 127.0.0.1 +#else +#define DEFAULT_DOMAIN 127.255.255.255 +#endif /* stringification et concatenation du domaine et du port en 2 temps : * Obligatoire puisque la substitution de domain, et de bus n'est pas -- cgit v1.1