From: Rusty B. <ho...@sb...> - 2003-09-05 06:40:11
|
> Anyway, I will be offline until Tuesday night, but will see what I > can get done without being too antisocial at Syndi's parents' house. > (If I get anything done, I will focus on documentation in libfunUtil, > source changes in qub, and *maybe* getting qub to work with > buildtool Well, what I did instead was fiddle with getting an RPM target (which works now... by God I hate RPM), because I didn't want to "make install" into /. The nice thing about going through RPM (or, more specifically, about having the headers & libs installed in /usr/include & /usr/lib) is that I was able to fiddle with building qub without messing with the configure script much. Regarding API changes, one thing which occurred to me is that where I was turning this: QString getSomeString(); into this: #if FUN_API_QSTRING void getSomeString(QString &); #endif #if FUN_API_STD_STRING void getSomeString(std::string &); #endif that's not really necessary; I could make it #if FUN_API_QSTRING QString getSomeString(); #endif #if FUN_API_STD_STRING void getSomeString(std::string &); #endif which is a little better because it doesn't affect the QString version. So I think I'll go back & do that in ClassLoader, and *then* it'll be ready for qub. --Rusty |