Re: bug report

2013-12-31 Thread Stephan Witt
> Am 31.12.2013 um 21:49 schrieb Scott Kostyshak : > >> On Tue, Dec 31, 2013 at 12:29 AM, DWL wrote: >> Hi, >> >> Searched the bug tracker wiki. Couldn't find this one. It's major, at least >> to me. >> >> LyX Version: 2.1.0beta2 >> OS: Macintosh 10.6.8 >> Package came from the pre-compiled

Re: bug report

2013-12-31 Thread Marcus Kriele
I can confirm the observation of Dan: Insert > Special Character > Symbols dialog box is completely devoid of symbols. This is on Mac OS 10.9 with the 2.1.0beta2 Mac binary produced by the LyX team Regards, Marcus > On Tue, Dec 31, 2013 at 12:29 AM, DWL wrote: > > Hi, > > > > Searched the bug tr

Re: bug report

2013-12-31 Thread Scott Kostyshak
On Tue, Dec 31, 2013 at 12:29 AM, DWL wrote: > Hi, > > Searched the bug tracker wiki. Couldn't find this one. It's major, at least > to me. > > LyX Version: 2.1.0beta2 > OS: Macintosh 10.6.8 > Package came from the pre-compiled disc image on LyX website. > > Symptom: Insert > Special Character >

bug report

2013-12-31 Thread DWL
Hi, Searched the bug tracker wiki. Couldn't find this one. It's major, at least to me. LyX Version: 2.1.0beta2 OS: Macintosh 10.6.8 Package came from the pre-compiled disc image on LyX website. Symptom: Insert > Special Character > Symbols dialog box is completely devoid of symbols. Every Cat

Re: [LyX/master] avoid CMAKE_XCODE_ATTRIBUTE_GCC_VERSION assignment for Xcode 5.0+ it is not needed anymore and the current assignment is wrong in this case

2013-12-31 Thread Kornel Benko
Am Dienstag, 31. Dezember 2013 um 11:23:52, schrieb Stephan Witt > Am 31.12.2013 um 10:59 schrieb Kornel Benko : > > > Am Dienstag, 31. Dezember 2013 um 10:24:41, schrieb Stephan Witt > > > > > + if (NOT XCODE_VERSION VERSION_GREATER "5.0") > > > + # Automatically select th

Re: [LyX/master] avoid CMAKE_XCODE_ATTRIBUTE_GCC_VERSION assignment for Xcode 5.0+ it is not needed anymore and the current assignment is wrong in this case

2013-12-31 Thread Stephan Witt
Am 31.12.2013 um 10:59 schrieb Kornel Benko : > Am Dienstag, 31. Dezember 2013 um 10:24:41, schrieb Stephan Witt > > > + if (NOT XCODE_VERSION VERSION_GREATER "5.0") > > + # Automatically select the Xcode compiler if not set > > Why don't you use VERSION_LESS? > Should the

Re: [LyX/master] avoid CMAKE_XCODE_ATTRIBUTE_GCC_VERSION assignment for Xcode 5.0+ it is not needed anymore and the current assignment is wrong in this case

2013-12-31 Thread Kornel Benko
Am Dienstag, 31. Dezember 2013 um 10:24:41, schrieb Stephan Witt > + if (NOT XCODE_VERSION VERSION_GREATER "5.0") > + # Automatically select the Xcode compiler if not set Why don't you use VERSION_LESS? Should the if-part really be valid for "5.0" but not for e.g. "5.0.1"? As