<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -107,7 +107,7 @@ IoObject *IoEditLine_readLine(IoEditLine *self, IoObject *locals, IoMessage *m)
 	line = el_gets(DATA(self)-&gt;editline, &amp;count);
 
 	if (line &amp;&amp; count &gt;= 0)
-		return IOSEQ(line, (size_t)count);
+		return IOSEQ((const unsigned char *)line, (size_t)count);
 	else
 		return IONIL(self);
 }</diff>
      <filename>addons/EditLine/source/IoEditLine.c</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,9 @@
+
+int __WindowsMacAddress(int a) // just to make ranlib happy
+{
+	return a + 1;
+}
+
 #ifdef WIN32
 
 #ifndef _INC_WINDOWS</diff>
      <filename>addons/NetworkAdapter/source/WindowsMacAddress.c</filename>
    </modified>
    <modified>
      <diff>@@ -106,7 +106,7 @@ EventManager do(
 	*/
 	addEvent := method(e, descriptorId, eventType, timeout,
 		//writeln(&quot;addEvent&quot;)
-		Coroutine currentCoroutine backTraceString
+		//writeln(Coroutine currentCoroutine backTraceString)
 		//Exception raise(&quot;EventManager addEvent &quot; .. e eventTypeName .. &quot; - begin&quot;)
 		//writeln(&quot;addEvent2&quot;)
 		r := self realAddEvent(e, descriptorId, eventType, timeout)</diff>
      <filename>addons/Socket/io/A0_EventManager.io</filename>
    </modified>
    <modified>
      <diff>@@ -489,7 +489,7 @@ IoObject *IoSyslog_log(IoSyslog *self, IoObject *locals, IoMessage *m)
 		return IONIL(self);
 	}
 
-	syslog_write(CNUMBER((int)DATA(self)-&gt;priority), str);
+	syslog_write(CNUMBER((uintptr_t)DATA(self)-&gt;priority), str);
 
 	return self;
 }</diff>
      <filename>addons/Syslog/source/IoSyslog.c</filename>
    </modified>
    <modified>
      <diff>@@ -137,7 +137,8 @@ IoObject *IoVorbisDspState_pcmout(IoVorbisDspState *self, IoObject *locals, IoMe
 	    *p++ = pcm[j][i];
 
 	IoObject* data = IOSEQ((const unsigned char*)sound, samples * sizeof(float) * 2);
-	int ret = vorbis_synthesis_read(DATA(self), samples);
+	//int ret = 
+	vorbis_synthesis_read(DATA(self), samples);
 
 	return data;
 }</diff>
      <filename>addons/Vorbis/source/IoVorbisDspState.c</filename>
    </modified>
    <modified>
      <diff>@@ -36,64 +36,34 @@ AddonBuilder := Object clone do(
 
 	supportedOnPlatform := true
 
-	/*
-
-	frameworkSearchPaths := List clone
-	frameworkSearchPaths append(&quot;/System/Library/Frameworks&quot;)
-	frameworkSearchPaths append(&quot;/Library/Frameworks&quot;)
-	frameworkSearchPaths append(&quot;/Local/Library/Frameworks&quot;)
-//	frameworkSearchPaths append(&quot;~/Library/Frameworks&quot;)
-
-	searchPrefixes := List clone
-	searchPrefixes append(System installPrefix)
-	searchPrefixes append(&quot;/usr&quot;)
-	if(platform != &quot;darwin&quot;, searchPrefixes append(&quot;/usr/X11R6&quot;))
-	if(platform == &quot;mingw&quot;, searchPrefixes append(&quot;/mingw&quot;))
-	searchPrefixes append(&quot;/usr/local&quot;)
-	searchPrefixes append(&quot;/usr/pkg&quot;)
-	searchPrefixes append(&quot;/opt/local&quot;)
-	searchPrefixes append(&quot;/sw&quot;)
-	// on windows there is no such thing as a standard place
-	// to look for these things
-	searchPrefixes append(&quot;i:/io/addonLibs&quot;, &quot;C:/io/addonLibs&quot;)
-
-	headerSearchPaths := List clone
-	appendHeaderSearchPath := method(v, if(File clone setPath(v) exists, headerSearchPaths appendIfAbsent(v)))
-	searchPrefixes foreach(searchPrefix, appendHeaderSearchPath(searchPrefix .. &quot;/include&quot;))
-
-	libSearchPaths := List clone
-	appendLibSearchPath := method(v, if(File clone setPath(v) exists, libSearchPaths appendIfAbsent(v)))
-	searchPrefixes foreach(searchPrefix, appendLibSearchPath(searchPrefix .. &quot;/lib&quot;))
-*/
-
 	setupPaths := method(
-
-			self frameworkSearchPaths := List clone
-			frameworkSearchPaths append(&quot;/System/Library/Frameworks&quot;)
-			frameworkSearchPaths append(&quot;/Library/Frameworks&quot;)
-			frameworkSearchPaths append(&quot;/Local/Library/Frameworks&quot;)
-		//	frameworkSearchPaths append(&quot;~/Library/Frameworks&quot;)
-
-			self searchPrefixes := List clone
-			searchPrefixes append(System installPrefix)
-			searchPrefixes append(&quot;/usr&quot;)
-			if(platform != &quot;darwin&quot;, searchPrefixes append(&quot;/usr/X11R6&quot;))
-			if(platform == &quot;mingw&quot;, searchPrefixes append(&quot;/mingw&quot;))
-			searchPrefixes append(&quot;/usr/local&quot;)
-			searchPrefixes append(&quot;/usr/pkg&quot;)
-			searchPrefixes append(&quot;/opt/local&quot;)
-			searchPrefixes append(&quot;/sw&quot;)
-			// on windows there is no such thing as a standard place
-			// to look for these things
-			searchPrefixes append(&quot;i:/io/addonLibs&quot;, &quot;C:/io/addonLibs&quot;)
-					
-	self headerSearchPaths := List clone
-	self appendHeaderSearchPath := method(v, if(File clone setPath(v) exists, headerSearchPaths appendIfAbsent(v)))
-	searchPrefixes foreach(searchPrefix, appendHeaderSearchPath(searchPrefix .. &quot;/include&quot;))
-
-	self libSearchPaths := List clone
-	self appendLibSearchPath := method(v, if(File clone setPath(v) exists, libSearchPaths appendIfAbsent(v)))
-	searchPrefixes foreach(searchPrefix, appendLibSearchPath(searchPrefix .. &quot;/lib&quot;))
+		self frameworkSearchPaths := List clone
+		frameworkSearchPaths append(&quot;/System/Library/Frameworks&quot;)
+		frameworkSearchPaths append(&quot;/Library/Frameworks&quot;)
+		frameworkSearchPaths append(&quot;/Local/Library/Frameworks&quot;)
+		//frameworkSearchPaths append(&quot;~/Library/Frameworks&quot;)
+
+		self searchPrefixes := List clone
+
+		searchPrefixes append(System installPrefix)
+		searchPrefixes append(&quot;/opt/local&quot;)
+		searchPrefixes append(&quot;/usr&quot;)
+		if(platform != &quot;darwin&quot;, searchPrefixes append(&quot;/usr/X11R6&quot;))
+		if(platform == &quot;mingw&quot;, searchPrefixes append(&quot;/mingw&quot;))
+		searchPrefixes append(&quot;/usr/local&quot;)
+		searchPrefixes append(&quot;/usr/pkg&quot;)
+		searchPrefixes append(&quot;/sw&quot;)
+		// on windows there is no such thing as a standard place
+		// to look for these things
+		searchPrefixes append(&quot;i:/io/addonLibs&quot;, &quot;C:/io/addonLibs&quot;)
+
+		self headerSearchPaths := List clone
+		self appendHeaderSearchPath := method(v, if(File clone setPath(v) exists, headerSearchPaths appendIfAbsent(v)))
+		searchPrefixes foreach(searchPrefix, appendHeaderSearchPath(searchPrefix .. &quot;/include&quot;))
+
+		self libSearchPaths := List clone
+		self appendLibSearchPath := method(v, if(File clone setPath(v) exists, libSearchPaths appendIfAbsent(v)))
+		searchPrefixes foreach(searchPrefix, appendLibSearchPath(searchPrefix .. &quot;/lib&quot;))
 	)
 
 	debs    := Map clone</diff>
      <filename>build/AddonBuilder.io</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>77420c9a5e46cdc7e78ccc0d08a7f982bd753c58</id>
    </parent>
  </parents>
  <author>
    <name>Steve Dekorte</name>
    <email>steve@StevesLaptop-7.local</email>
  </author>
  <url>http://github.com/stevedekorte/io/commit/86d9bcc70abe8b4d92c1db3fafb28d5aab15a375</url>
  <id>86d9bcc70abe8b4d92c1db3fafb28d5aab15a375</id>
  <committed-date>2009-10-27T17:51:39-07:00</committed-date>
  <authored-date>2009-10-27T17:51:39-07:00</authored-date>
  <message>removed backtrace from EventManager, cleanup of some addon builds</message>
  <tree>a9133127f205568b217433fba5fe36aa084dfc9a</tree>
  <committer>
    <name>Steve Dekorte</name>
    <email>steve@StevesLaptop-7.local</email>
  </committer>
</commit>
