(no subject)
Keith Packard <[email protected]> Tue, 16 Dec 2003 16:00:39 -0800
| Newsgroups | gmane.comp.freedesktop.xlibs.general |
|---|---|
| Message-ID | <[email protected]> |
(from Jeremy's commit message about Xmu) > Please note that the version numbers need to be fixed. (What should they be?) > Also, Xaw is needed for Xmu. Xmuu will build with: "make libXmuu.la". Ah, for you we have a new libtool feature. For Xmu, use '-version-number 6:2:1' to generate libXmu.so.6.2.1 on Linux, and libXmu.so.6.2 on BSD. This is a libtool 1.5 feature not present in libtool 1.4 or earlier which is designed to allow "legacy" libraries to force specific .so file names on each operating system. For Xmuu, it's using a '.0' version number right now, so we can switch to libtool versioning without any problems. Use '-version-info 1:1:0' (I think that's right) to generate libXmu.so.1.0.1 on Linux and libXmu.so.1.0 on BSD. Can you get $(libXmuu_la_SOURCES) to work in libXmu_la_SOURCES? That would leave just one copy of each source file name in the Makefile.am file, which seems like a feature. -keith