On 26/08/10 16:59, Stefan Eilemann wrote: >> This however leads to two further questions: >> >> 1. name it 'Equalizer' and break backward compatibility on unix. >> 2. name it 'eq' and break backward compatibility on Windows. >> >> I would opt for 1. Having a library called 'eq' for a project called >> 'Equalizer' is counterintuitive IMHO. > > Agreed: libEqualizer.so and libEqualizerServer.so it is.
Thanks! The attached tiny patch is necessary so that the demo programs do not look for the old name anymore. Martin -- Computer Graphics and Multimedia Systems Group University of Siegen, Germany http://www.cg.informatik.uni-siegen.de/
Index: lib/client/client.cpp
===================================================================
--- lib/client/client.cpp (revision 4872)
+++ lib/client/client.cpp (working copy)
@@ -101,11 +101,11 @@
#ifdef _MSC_VER
"EqualizerServer.dll"
#elif defined (WIN32)
- "libeqserver.dll"
+ "libEqualizerServer.dll"
#elif defined (Darwin)
- "libeqserver.dylib"
+ "libEqualizerServer.dylib"
#else
- "libeqserver.so"
+ "libEqualizerServer.so"
#endif
))
{
smime.p7s
Description: S/MIME Cryptographic Signature
_______________________________________________ eq-dev mailing list [email protected] http://www.equalizergraphics.com/cgi-bin/mailman/listinfo/eq-dev http://www.equalizergraphics.com

