Re: [Scidvspc-users] Scidvspc-users Digest, Vol 79, Issue 7
Chess Database and Toolkit program
Brought to you by:
stevenaaus
From: Okechukwu I. <af...@ch...> - 2019-04-16 17:58:48
|
Hi Steve A ! I want to bring up a somewhat minor compilation annoyance, which has been present for a while. I typically compile the application on "multilib" systems (i.e. mixed 64-bit and 32-bit systems), which are usually running Slackware Linux (or some derivative of Slackware). However, I do most of my work in 64-bit "space", and so compile 64-bit versions of Scid vs PC. When running the *configure* script, it correctly guesses the locations of tk and tcl *include *and *lib *files. Then, it decides: *"Location of X11 library: /usr/lib"* ...when it should be */usr/lib64 *.* * I would fix it by editing the Makefile: TK_LIBRARY = $(TCL_LIBRARY) -ltk$(TCL_VERSION) -L/usr/lib -lX11 is changed to: TK_LIBRARY = $(TCL_LIBRARY) -ltk$(TCL_VERSION) -L/usr/lib_64_ -lX11 Without that change, *make* draws on 32-bit X11 libs during compilation, and the compiled program crashes randomly, as can be expected :-) I looked into the *configure* script, and the issue is that it lists */usr/lib* before */usr/lib64*, when setting *libraryPath *and *x11Path*. As I don't usually install 32-bit versions of *tcl* and *tk*, *configure* guesses correctly for them. I do not know if switching the default search order within the *configure* script will cause issues for most other folks, but that would be my request :-). Thanks for all the work you put into Scid vs PC! Okey Iwu On 4/16/19 7:15 AM, sci...@li... wrote: > Send Scidvspc-users mailing list submissions to > sci...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/scidvspc-users > or, via email, send a message with subject or body 'help' to > sci...@li... > > You can reach the person managing the list at > sci...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Scidvspc-users digest..." > > > Today's Topics: > > 1. Re: Scid vs PC 4.20 (Steve A) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 16 Apr 2019 19:52:19 +1000 > From: Steve A <ste...@gm...> > To: scidvspc-users <sci...@li...> > Subject: Re: [Scidvspc-users] Scid vs PC 4.20 > Message-ID: > <CAKDNZpEF8yQBvZC_a=YiR...@ma...> > Content-Type: text/plain; charset="utf-8" > > Ok, Thanks again to Ozkan for rebuilding the windows packages today, and > those sending in translation updates. The source and mac builds have been > updated too. > > There are only minor changes made in the last week or so. These are: > * fics/graph tweaks (right clicking the in-graph title shows a menu, auto > store fics times and update graph at game end) > * translation updates > * "Reset ECO and spellcheck files to defaults if they are missing" (which > may have been the cause of Carl's macOS bug report) > So using the new packages isn't too important. Sorry for the poor release > scheduling. > Cheers, Steven > > On Sun, Mar 24, 2019 at 1:01 PM Steve A <ste...@gm...> wrote: > >> I might make a version bump/ changelog / release shortly. >> as I'm quite happy with the new time graph now it has distinquishing >> bar-graph colours (attached), and there's quite a few minor changes >> and two serious (but hard to hit) fixes for crashes in the inbuilt pgn >> parser and engine. >> >> There are a few Todos in the translations, which can be found here if >> anyone can update them, thanks. >> https://sourceforge.net/p/scidvspc/code/HEAD/tree/tcl/lang/ >> Just click on your language then select "Download this file", then change >> the items marked "todo" in your text editor. >> >> Cheers, Steven >> > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Scidvspc-users mailing list > Sci...@li... > https://lists.sourceforge.net/lists/listinfo/scidvspc-users > > > ------------------------------ > > End of Scidvspc-users Digest, Vol 79, Issue 7 > ********************************************* |