On 2012–12–25 Taco hoekwater wrote:

Hi,

I am building the binaries for Solaris (x86).


> 1) the compile errors for metapost with the missing png.h

No problems during compilation.


> 2) various luatex compile problems for luasocket

Linking fails due to a call to an undefined function:

Undefined                       first referenced
 symbol                             in file
hstrerror                           libluasocket.a(libluasocket_a-socket.o)
ld: fatal: symbol referencing errors. No output written to luatex

A patch is attached. Which upstream repo is useed? This is the most
recent one I found:

https://github.com/diegonehab/luasocket/tree/unstable


When committing the binaries, I get a bunch of SVN errors:

svn: E200009: Could not add all targets because some targets are already 
versioned
svn: E200009: Illegal target for the requested operation

This does not seem to be critical, but maybe you can check while
you're at it. The binaries are committed successfully.


Marco
diff --git a/src/usocket.c b/src/usocket.c
index 096ecd0..ef74a3f 100644
--- a/src/usocket.c
+++ b/src/usocket.c
@@ -400,7 +400,7 @@ const char *socket_hoststrerror(int err) {
     if (err <= 0) return io_strerror(err);
     switch (err) {
         case HOST_NOT_FOUND: return "host not found";
-        default: return hstrerror(err);
+        default: return strerror(err);
     }
 }
 

Attachment: signature.asc
Description: Digital signature

_______________________________________________
dev-context mailing list
dev-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/dev-context

Reply via email to