Would it be possible to branch it out, or package it as a release?
I guess I could just grab HEAD, but it would be nice to pick a 0_2_1 revision.
![Wink ;)](./images/smilies/icon_wink.gif)
Moderators: CEGUI MVP, CEGUI Team
Code: Select all
cc1plus: warning: -Wuninitialized is not supported without -O
Code: Select all
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/CEGUIFont_xmlHandler.cpp:33:22:
error: ft2build.h: No such file or directory
Code: Select all
#define CEGUI_WITH_XERCES
Code: Select all
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/chartables.c:13:
warning: 'pcre_default_tables' defined but not used
[...]
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/pcre.c:54:1:
warning: "DPRINTF" redefined
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/pcre.c:116299:38:
warning: this is the location of the previous definition
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/pcre.c: In function 'ord2utf8':
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/pcre.c:520:
warning: comparison between signed and unsigned
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/pcre.c: In function 'pcre_compile':
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/pcre/pcre.c:4612:
warning: comparison between signed and unsigned
Code: Select all
../../../../include/elements/CEGUIPopupMenu.h: In constructor `CEGUI::PopupMenu::PopupMenu(const CEGUI::String&, const CEGUI::String&)':
../../../../include/elements/CEGUIPopupMenu.h:201: warning: 'CEGUI::PopupMenu::d_fadeInTime' will be initialized after
../../../../include/elements/CEGUIPopupMenu.h:200: warning: 'float CEGUI::PopupMenu::d_fadeOutTime'
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/../../../../src/elements/CEGUIPopupMenu.cpp:49: warning: when initialized here
Code: Select all
Ld /Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build/CEGUI.framework/Versions/A/CEGUI normal ppc
cd /Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI
/usr/bin/g++-4.0 -o /Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build/CEGUI.framework/Versions/A/CEGUI
-L/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build -L/usr/X11R6/lib -L/sw/lib
-F/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build
-filelist /Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build/CrazyEddiesGUI.build/CEGUIBase.build/Objects-normal/ppc/CEGUI.LinkFileList
-lfreetype -arch ppc -prebind -Wl,-single_module -dynamiclib -compatibility_version 1 -current_version 1 -install_name /Library/Frameworks/CEGUI.framework/Versions/A/CEGUI -framework Carbon
ld: warning multiple definitions of symbol _regcomp
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build/CrazyEddiesGUI.build/CEGUIBase.build/Objects-normal/ppc/pcreposix.o definition of _regcomp in section (__TEXT,__text)
/usr/lib/gcc/powerpc-apple-darwin8/4.0.0/../../../libSystem.dylib(regcomp.So) definition of _regcomp
ld: warning multiple definitions of symbol _regexec
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build/CrazyEddiesGUI.build/CEGUIBase.build/Objects-normal/ppc/pcreposix.o definition of _regexec in section (__TEXT,__text)
/usr/lib/gcc/powerpc-apple-darwin8/4.0.0/../../../libSystem.dylib(regexec.So) definition of _regexec
ld: warning multiple definitions of symbol _regfree
/Users/renchap/Dev/cegui_mk2/makefiles/mac/Xcode/CrazyEddiesGUI/build/CrazyEddiesGUI.build/CEGUIBase.build/Objects-normal/ppc/pcreposix.o
definition of _regfree in section (__TEXT,__text)
/usr/lib/gcc/powerpc-apple-darwin8/4.0.0/../../../libSystem.dylib(regfree.So) definition of _regfree
Code: Select all
ld: warning prebinding disabled because dependent library: /Users/renchap/ogre/xerces-c-src_2_6_0/Projects/MacOS/Xcode/XercesLib/build/Xerces.framework/Versions/A/Xerces
is not prebound
CrazyEddie wrote:
These diagnostics were done against HEAD and not release-0_2_0 which contains what should become 0.2.1.
The freetype issue is strange, a couple of other people have submitted patches for Tiger and made no mention of issues with freetype. Do we just add another include search path, or will that cause problems if the second path does not exist on releases prior to Tiger?
While not really an issue for 0.2.1, since for this release Xerces is still a required dependency (TinXML will debut in the 0.3.0 release, until then its a CVS only thing), Xerces should definately stay as an option, and should infact be the default option (which is why CEGUIConfig.h is set-up the way that it is for OSX and VC++ builds. The idea, as has aways been, is that you download and install Xerces as a dependency prior to compiling CEGUI. While I obviously put TinyXML in as an option, Xerces is still my preferred XML parser.
Also, can you edit your post so that your code lines are not so long, it makes this topic very difficult to read
Yeah, I think you have have messed upi have done theses tests with the release-0_2_0 version, not the HEAD (hum... i think i have done this, i am not very skilled with CVS)
Do we just add another include search path, or will that cause problems if the second path does not exist on releases prior to Tiger?
this should not be a problem, gcc searchs in all the include path dirs to find the headers, and should not warning if there is too much of them
yes, but the xcode project is not done for xerces.
i can try to add both targets into it, but when i tryed sometimes ago i had an error. i will retry this week end if you want.
Return to “Offtopic Discussion”
Users browsing this forum: Baidu [Spider] and 5 guests