To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51126
Issue #:|51126
Summary:|FreeBSD and Mac OS X build fail at instsetoo_native
Component:|porting
Version:|680m111
Platform:|Macintosh
URL:|
OS/Version:|FreeBSD
Status:|NEW
Status whiteboard:|
Keywords:|
Resolution:|
Issue type:|PATCH
Priority:|P3
Subcomponent:|code
Assigned to:|mh
Reported by:|maho
------- Additional comments from [EMAIL PROTECTED] Wed Jun 22 13:55:57 -0700
2005 -------
>From m111, newly introduced project ure breaks the build for FreeBSD and Mac
>OS X
at instsetoo_native because corresponding scp2 file doesn't contain correct
description of libxml2.
build log of instsetoo_native:
... analyzing script: /Users/maho/Work/work/solver/680/unxmacxp.pro/bin/ure.ins
...
... analyzing directories ...
... analyzing files ...
... analyzing scpactions ...
... analyzing shortcuts ...
... analyzing profile ...
... analyzing profileitems ...
... analyzing modules ...
------------------------------------
... languages en-US ...
**************************************************
ERROR: ERROR: Missing files
in function: remove_Files_Without_Sourcedirectory
**************************************************
**************************************************
ERROR: Saved logfile:
/Users/maho/Work/work/instsetoo_native/unxmacxp.pro/URE/logging/en-US/
log_SRC680__en-US.log
**************************************************
... analyzing files ...
ERROR: The following files could not be found:
ERROR: File not found: Name = "libxml2.dylib.2
... cleaning the output tree ...
Thu Jun 23 05:55:16 2005 (00:02 min.)
original
Name = SCP2_URE_DL_VER(xml2, 2);
this only delivers libxml2.so.2
patched
+ #ifdef MACOSX
+ Name = STRING(CONCAT3(libxml2,.2.6.17,UNXSUFFIX));
+ #else
+ Name = SCP2_URE_DL_VER(xml2,2.6.17);
+ #endif
is correct. for the reason of hardcoding minor shared lib version number
please also see scp2/source/ooo/file_library_ooo.scp
#ifndef SYSTEM_LIBXML
File gid_File_Lib_Xml2
TXT_FILE_BODY;
Styles = (PACKED);
Dir = gid_Dir_Program;
#ifdef UNX
#ifdef MACOSX
Name = STRING(CONCAT3(libxml2,.2.6.17,UNXSUFFIX));
#else
Name = STRING(CONCAT3(libxml2,UNXSUFFIX,.2.6.17));
#endif
#else
Name = "libxml2.dll";
#endif
End
#endif
)
---------------------------------------------------------------------
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]