To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=69033
------- Additional comments from [email protected] Tue Jun 15 20:41:58 +0000 2010 ------- OK, found the problem. You have changed +.IF "$(OS)"=="NETBSD" +TARGET2=gnu_readdir_r +OBJFILES+= $(OBJ)$/readdir_r.obj +LIB2TARGET=$(SLB)$/$(TARGET2).lib +LIB2ARCHIV=$(LB)$/lib$(TARGET2).a +LIB2OBJFILES= $(OBJ)$/readdir_r.obj +.ENDIF to +.IF "$(HAVE_READDIR_R)" != "YES" +TARGET2=gnu_readdir_r +OBJFILES+= $(OBJ)$/readdir_r.obj +LIB2TARGET=$(SLB)$/$(TARGET2).lib +LIB2ARCHIV=$(LB)$/lib$(TARGET2).a +LIB2OBJFILES= $(OBJ)$/readdir_r.obj +.ENDIF So now readdir_r.obj was tried to build on Windows what neither is necessary nor works. I changed that to +.IF "$(HAVE_READDIR_R)" != "YES" +.IF "$(OS)"=="NETBSD" +TARGET2=gnu_readdir_r +OBJFILES+= $(OBJ)$/readdir_r.obj +LIB2TARGET=$(SLB)$/$(TARGET2).lib +LIB2ARCHIV=$(LB)$/lib$(TARGET2).a +LIB2OBJFILES= $(OBJ)$/readdir_r.obj +.ENDIF +.ENDIF Perhaps you can explain why you removed the "NETBSD" check. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
