Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Jean-Marc Lasgouttes

Le 11/02/2011 07:01, Guido Gonni a écrit :

Hi Gents,
I just tried to install the beta4 version. I went through the compile
phase without any problem, but then when I entered make I received the
following message:



CXX c_regex_traits.o
In file included from /usr/include/c++/4.4/cstring:45,
from ./boost/regex/v4/regex_workaround.hpp:24,
from ./boost/regex/v4/c_regex_traits.hpp:26,
from libs/regex/src/c_regex_traits.cpp:27:
/usr/include/string.h:413: error: declaration of ‘char* strerror(int)
throw ()’ throws different exceptions
../config.h:606: error: from previous declaration ‘char* strerror(int)’


This is strange. I have no problem with exactly the same setup. Is your
ubuntu completely up-to-date?

JMarc


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Liviu Andronic
On Fri, Feb 11, 2011 at 7:01 AM, Guido Gonni guidogo...@eim.ae wrote:
 Hi Gents,
 I just tried to install the beta4 version. I went through the compile phase
 without any problem, but then when I entered make I received the following
 message:

Try
./configure --with-version-suffix=-svn --enable-build-type=release

Simple ./configure  make failed on my 10.10, too. With the above it
worked just fine.

Regards
Liviu


Re: Lyx as a simulation lab book (clickable hyperlinks also)

2011-02-11 Thread Chris Lingwood
Pavel Sanda sanda at lyx.org writes:

 i'm not sure i understand what are you trying to do here, but if its
possibility
 to get context menu for a hyperlink which launches viewer for  file:// or
http://
 web address i can provide not complicated patch for lyx.

 it was part of lyx months back, but then we get nervous thats its security
 issue and reverted it.
 pavel

If I were you I might be inclined to reintroduce it (as well as a generic
context menu for hyperlinks if it hasn't already made its way into lyx 2). I
can
see your point about security but the version control command that I've
subverted allows equally arbitrary code to be executed using a lyx function.
Perhaps a disabled by default option to enable it for links. Shame to remove
a
useful feature (at least for me) while leaving the security problem in there
anyway.

I'd rather not patch it as I presume I would have to do that for every
version
with a different patch.

The problem with most software as an electronic lab book for simulations is
getting the links to the files to work in a nice way. Word is as per usual
horrible, Onenote is a bit of an abortion (embeds things like excel items as
IMAGES rendering itself pointless) and none of the other options I came
across
worked very well at all.

Lyx of course lets me do all the things you need for a lab book (equations,
tables, images etc) but the file linking is poor. Drag and drop/CP for
images
is really nice, but not for generic files. That's where that dropper script
comes in. And launching the hyperlinks doesn't really work in pdf readers
(that
really is for good reason) so lyx needs to do that too, hence that hacky
script
to launch them. Propper support of that from lyx would, of course, be
better.

Chris Lingwood


Lyx reverse search in windows

2011-02-11 Thread Chris Lingwood
I've had reverse/inverse search working on my standard version of lyx
for windows for a while without using cygwin. I've not noticed anyone
posting about how to do it or providing scripts so I thought I'd share
mine. I've written it up here http://www.thousandmonkeys.com/?p=96 but
here are the really important bits. Hope this gets it working for
someone.

Requirements:

* Python 2.6 (might work with other versions not tried it)
* win32api – Python extension (to find the short pathnames)
* SumatraPDF – This is the only appropriate windows pdf viewer I
am aware of. It prints badly though in my experience.
* ReverseSearch – The scripts defined below

Setup:

* Set the lyxserver pipe (under paths in the settings) to
“\\.\pipe\lyxserver”
* put “SumatraPDF.bat”, “search.py” and “SumatraPDF.exe” in “../lyx16/bin”
* Update the paths in “SumatraPDF.bat” to be correct for your
setup (mine is 64bit), use pythonw.exe to supress the console
* Set your in “PDF (pdflatex)” viewer field (in file formats) to:
SumatraPDF.bat
* Set the “Latex (pdflatex) - PDF (pdflatex)” converter to
“pdflatex –synctex=-1 $$i”

SumatraPDF.bat
---
start SumatraPDF.exe SumatraPDF.exe -inverse-search
C:/Progra~1/Python26/pythonw.exe C:/Progra~2/lyx16/bin/search.py %%l
%%f %1
exit

search.py
--
# author Chris Lingwood
#
# This script (along with sumatra.bat) enables DVI/PDF search in
windows using Sumatra

import sys
import time
import os
import win32api

#Debug output to ensure the path name is picked up properly
print(sys.argv[1])
print(sys.argv[2:])

line = sys.argv[1]
filename = ' '.join(sys.argv[2:])
print(filename)

#We have to get the windows short filename to avoid having spaces
which upsets the command
filename = win32api.GetShortPathName(filename);
#create the command to be send to the lyx server pipe with an echo to
a windows pipe
command = echo LYXCMD:revdvi:server-goto-file-row:+filename+
+line+gt;gt; .\pipe\lyxserver.in

#print it for debugging and send it to the os
print(command)
os.system(command)

#Uncomment the next line if there are problems, it lets you see  the
debugging output (this is still supressed with pythonw.exe though)
#time.sleep(100)

I attempted to post this the to the list a while back but it never
made it for some reason. That version doesn't work with newer versions
of lyx (or so I'm told), hence the repost.

Chris Lingwood


Re: SOLVED: LyX startup is slow on Windows

2011-02-11 Thread Manveru
2011/1/27 J. Gardner disinteres...@gmail.com:
 Earlier I posted about slow startup (up to five minutes) with LyX 2.0
 beta 3 on Windows 7 Pro 32 bit. After some experimentation, I
 discovered that the problem was that there was a corrupted DVD in the
 drive. This caused very LyX to start very slowly and freeze for
 several minutes every time a change was made to the preferences
 (presumably because of an interaction with Windows explorer).
 Interestingly, it didn't cause problems with other applications.
 Removing the DVD solved the problem, but I thought it might be useful
 to note what the solution was -- maybe it suggests a change that can
 be made to prevent similar problems.

I suspect this problem to be deeper than LyX code itself. Probably
something in Qt library requests WinAPI specific calls to identify
drives available in the system. It is a Windows fault it hangs for
long time trying to identify broken DVD in the drive. Similar scenario
is happening in Total Commander if you select the drive with faulty
disc.

-- 
Manveru
jabber: manv...@manveru.pl
     gg: 1624001
   http://www.manveru.pl


Re: lyx2lyx failing when updating svn

2011-02-11 Thread Jose Quesada
I've copied it here, as you suggest. This is with a clean, default, .lyx
file.
The problem persists. There might be something wrong on the install script;
I seem to spend way too much time getting this to work everytime I change
computers...

-J

On Wed, Feb 2, 2011 at 2:00 AM, Richard Heck rgh...@comcast.net wrote:

 On 2/1/11 7:02 PM, Jose Quesada wrote:

 Thanks Richard,

 lyx2lyx was indeed missing in my .lyx. After moving it there this is what
 I get:

  Sorry, you want it in /usr/share/lyx/lyx2lyx/, or wherever this is on
 your system.

 rh




-- 
Best,
-Jose

Jose Quesada, PhD.
Research scientist,
Max Planck Institute,
Center for Adaptive Behavior and Cognition,
Berlin
http://www.josequesada.name/
http://twitter.com/Quesada


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread stefano franchi
On Fri, Feb 11, 2011 at 5:19 AM, Liviu Andronic landronim...@gmail.com wrote:
 On Fri, Feb 11, 2011 at 7:01 AM, Guido Gonni guidogo...@eim.ae wrote:


 Try
 ./configure --with-version-suffix=-svn --enable-build-type=release



I haven´t tried beta4, but later svn releases compile fine on my
Ubuntu 10.10 installation.
I do use the same configure options Liviu mentioned (see above).


Stefano


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Paul Johnson
on Fri, Feb 11, 2011 at 9:55 AM, stefano franchi
stefano.fran...@gmail.com wrote:
 Try
 ./configure --with-version-suffix=-svn --enable-build-type=release



 I haven´t tried beta4, but later svn releases compile fine on my
 Ubuntu 10.10 installation.
 I do use the same configure options Liviu mentioned (see above).


 Stefano


On my Ubuntu 10.10 with the all of the pre-packaged compilers and
qt, I get a completely clean compile with all of the usual procedures.

And I have the full build output to prove it:

http://pj.freefaculty.org/latex/lyxbuild.txt

Because I saved all the output.  And I suggest the people who have
trouble on Ubuntu do the same virtuous thing so we can actually see
the whole dead body to perform the autopsy.  (Sorry, watching too many
CSI lately).

$ ./configure --prefix=/tmp/lyxb4  lyxbuild.txt 21

$ make  lyxbuild.txt 21

$ make install  lyxbuild.txt 21

pj

-- 
Paul E. Johnson
Professor, Political Science
1541 Lilac Lane, Room 504
University of Kansas


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Jean-Marc Lasgouttes

Le 11/02/2011 07:01, Guido Gonni a écrit :

Hi Gents,
I just tried to install the beta4 version. I went through the compile
phase without any problem, but then when I entered make I received the
following message:



CXX c_regex_traits.o
In file included from /usr/include/c++/4.4/cstring:45,
from ./boost/regex/v4/regex_workaround.hpp:24,
from ./boost/regex/v4/c_regex_traits.hpp:26,
from libs/regex/src/c_regex_traits.cpp:27:
/usr/include/string.h:413: error: declaration of ‘char* strerror(int)
throw ()’ throws different exceptions
../config.h:606: error: from previous declaration ‘char* strerror(int)’


This is strange. I have no problem with exactly the same setup. Is your
ubuntu completely up-to-date?

JMarc


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Liviu Andronic
On Fri, Feb 11, 2011 at 7:01 AM, Guido Gonni guidogo...@eim.ae wrote:
 Hi Gents,
 I just tried to install the beta4 version. I went through the compile phase
 without any problem, but then when I entered make I received the following
 message:

Try
./configure --with-version-suffix=-svn --enable-build-type=release

Simple ./configure  make failed on my 10.10, too. With the above it
worked just fine.

Regards
Liviu


Re: Lyx as a simulation lab book (clickable hyperlinks also)

2011-02-11 Thread Chris Lingwood
Pavel Sanda sanda at lyx.org writes:

 i'm not sure i understand what are you trying to do here, but if its
possibility
 to get context menu for a hyperlink which launches viewer for  file:// or
http://
 web address i can provide not complicated patch for lyx.

 it was part of lyx months back, but then we get nervous thats its security
 issue and reverted it.
 pavel

If I were you I might be inclined to reintroduce it (as well as a generic
context menu for hyperlinks if it hasn't already made its way into lyx 2). I
can
see your point about security but the version control command that I've
subverted allows equally arbitrary code to be executed using a lyx function.
Perhaps a disabled by default option to enable it for links. Shame to remove
a
useful feature (at least for me) while leaving the security problem in there
anyway.

I'd rather not patch it as I presume I would have to do that for every
version
with a different patch.

The problem with most software as an electronic lab book for simulations is
getting the links to the files to work in a nice way. Word is as per usual
horrible, Onenote is a bit of an abortion (embeds things like excel items as
IMAGES rendering itself pointless) and none of the other options I came
across
worked very well at all.

Lyx of course lets me do all the things you need for a lab book (equations,
tables, images etc) but the file linking is poor. Drag and drop/CP for
images
is really nice, but not for generic files. That's where that dropper script
comes in. And launching the hyperlinks doesn't really work in pdf readers
(that
really is for good reason) so lyx needs to do that too, hence that hacky
script
to launch them. Propper support of that from lyx would, of course, be
better.

Chris Lingwood


Lyx reverse search in windows

2011-02-11 Thread Chris Lingwood
I've had reverse/inverse search working on my standard version of lyx
for windows for a while without using cygwin. I've not noticed anyone
posting about how to do it or providing scripts so I thought I'd share
mine. I've written it up here http://www.thousandmonkeys.com/?p=96 but
here are the really important bits. Hope this gets it working for
someone.

Requirements:

* Python 2.6 (might work with other versions not tried it)
* win32api – Python extension (to find the short pathnames)
* SumatraPDF – This is the only appropriate windows pdf viewer I
am aware of. It prints badly though in my experience.
* ReverseSearch – The scripts defined below

Setup:

* Set the lyxserver pipe (under paths in the settings) to
“\\.\pipe\lyxserver”
* put “SumatraPDF.bat”, “search.py” and “SumatraPDF.exe” in “../lyx16/bin”
* Update the paths in “SumatraPDF.bat” to be correct for your
setup (mine is 64bit), use pythonw.exe to supress the console
* Set your in “PDF (pdflatex)” viewer field (in file formats) to:
SumatraPDF.bat
* Set the “Latex (pdflatex) - PDF (pdflatex)” converter to
“pdflatex –synctex=-1 $$i”

SumatraPDF.bat
---
start SumatraPDF.exe SumatraPDF.exe -inverse-search
C:/Progra~1/Python26/pythonw.exe C:/Progra~2/lyx16/bin/search.py %%l
%%f %1
exit

search.py
--
# author Chris Lingwood
#
# This script (along with sumatra.bat) enables DVI/PDF search in
windows using Sumatra

import sys
import time
import os
import win32api

#Debug output to ensure the path name is picked up properly
print(sys.argv[1])
print(sys.argv[2:])

line = sys.argv[1]
filename = ' '.join(sys.argv[2:])
print(filename)

#We have to get the windows short filename to avoid having spaces
which upsets the command
filename = win32api.GetShortPathName(filename);
#create the command to be send to the lyx server pipe with an echo to
a windows pipe
command = echo LYXCMD:revdvi:server-goto-file-row:+filename+
+line+gt;gt; .\pipe\lyxserver.in

#print it for debugging and send it to the os
print(command)
os.system(command)

#Uncomment the next line if there are problems, it lets you see  the
debugging output (this is still supressed with pythonw.exe though)
#time.sleep(100)

I attempted to post this the to the list a while back but it never
made it for some reason. That version doesn't work with newer versions
of lyx (or so I'm told), hence the repost.

Chris Lingwood


Re: SOLVED: LyX startup is slow on Windows

2011-02-11 Thread Manveru
2011/1/27 J. Gardner disinteres...@gmail.com:
 Earlier I posted about slow startup (up to five minutes) with LyX 2.0
 beta 3 on Windows 7 Pro 32 bit. After some experimentation, I
 discovered that the problem was that there was a corrupted DVD in the
 drive. This caused very LyX to start very slowly and freeze for
 several minutes every time a change was made to the preferences
 (presumably because of an interaction with Windows explorer).
 Interestingly, it didn't cause problems with other applications.
 Removing the DVD solved the problem, but I thought it might be useful
 to note what the solution was -- maybe it suggests a change that can
 be made to prevent similar problems.

I suspect this problem to be deeper than LyX code itself. Probably
something in Qt library requests WinAPI specific calls to identify
drives available in the system. It is a Windows fault it hangs for
long time trying to identify broken DVD in the drive. Similar scenario
is happening in Total Commander if you select the drive with faulty
disc.

-- 
Manveru
jabber: manv...@manveru.pl
     gg: 1624001
   http://www.manveru.pl


Re: lyx2lyx failing when updating svn

2011-02-11 Thread Jose Quesada
I've copied it here, as you suggest. This is with a clean, default, .lyx
file.
The problem persists. There might be something wrong on the install script;
I seem to spend way too much time getting this to work everytime I change
computers...

-J

On Wed, Feb 2, 2011 at 2:00 AM, Richard Heck rgh...@comcast.net wrote:

 On 2/1/11 7:02 PM, Jose Quesada wrote:

 Thanks Richard,

 lyx2lyx was indeed missing in my .lyx. After moving it there this is what
 I get:

  Sorry, you want it in /usr/share/lyx/lyx2lyx/, or wherever this is on
 your system.

 rh




-- 
Best,
-Jose

Jose Quesada, PhD.
Research scientist,
Max Planck Institute,
Center for Adaptive Behavior and Cognition,
Berlin
http://www.josequesada.name/
http://twitter.com/Quesada


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread stefano franchi
On Fri, Feb 11, 2011 at 5:19 AM, Liviu Andronic landronim...@gmail.com wrote:
 On Fri, Feb 11, 2011 at 7:01 AM, Guido Gonni guidogo...@eim.ae wrote:


 Try
 ./configure --with-version-suffix=-svn --enable-build-type=release



I haven´t tried beta4, but later svn releases compile fine on my
Ubuntu 10.10 installation.
I do use the same configure options Liviu mentioned (see above).


Stefano


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Paul Johnson
on Fri, Feb 11, 2011 at 9:55 AM, stefano franchi
stefano.fran...@gmail.com wrote:
 Try
 ./configure --with-version-suffix=-svn --enable-build-type=release



 I haven´t tried beta4, but later svn releases compile fine on my
 Ubuntu 10.10 installation.
 I do use the same configure options Liviu mentioned (see above).


 Stefano


On my Ubuntu 10.10 with the all of the pre-packaged compilers and
qt, I get a completely clean compile with all of the usual procedures.

And I have the full build output to prove it:

http://pj.freefaculty.org/latex/lyxbuild.txt

Because I saved all the output.  And I suggest the people who have
trouble on Ubuntu do the same virtuous thing so we can actually see
the whole dead body to perform the autopsy.  (Sorry, watching too many
CSI lately).

$ ./configure --prefix=/tmp/lyxb4  lyxbuild.txt 21

$ make  lyxbuild.txt 21

$ make install  lyxbuild.txt 21

pj

-- 
Paul E. Johnson
Professor, Political Science
1541 Lilac Lane, Room 504
University of Kansas


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Jean-Marc Lasgouttes

Le 11/02/2011 07:01, Guido Gonni a écrit :

Hi Gents,
I just tried to install the beta4 version. I went through the compile
phase without any problem, but then when I entered "make" I received the
following message:



CXX c_regex_traits.o
In file included from /usr/include/c++/4.4/cstring:45,
from ./boost/regex/v4/regex_workaround.hpp:24,
from ./boost/regex/v4/c_regex_traits.hpp:26,
from libs/regex/src/c_regex_traits.cpp:27:
/usr/include/string.h:413: error: declaration of ‘char* strerror(int)
throw ()’ throws different exceptions
../config.h:606: error: from previous declaration ‘char* strerror(int)’


This is strange. I have no problem with exactly the same setup. Is your
ubuntu completely up-to-date?

JMarc


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Liviu Andronic
On Fri, Feb 11, 2011 at 7:01 AM, Guido Gonni  wrote:
> Hi Gents,
> I just tried to install the beta4 version. I went through the compile phase
> without any problem, but then when I entered "make" I received the following
> message:
>
Try
./configure --with-version-suffix=-svn --enable-build-type=release

Simple ./configure && make failed on my 10.10, too. With the above it
worked just fine.

Regards
Liviu


Re: Lyx as a simulation lab book (clickable hyperlinks also)

2011-02-11 Thread Chris Lingwood
Pavel Sanda  lyx.org> writes:

> i'm not sure i understand what are you trying to do here, but if its
possibility
> to get context menu for a hyperlink which launches viewer for  file:// or
http://
> web address i can provide not complicated patch for lyx.
>
> it was part of lyx months back, but then we get nervous thats its security
> issue and reverted it.
> pavel

If I were you I might be inclined to reintroduce it (as well as a generic
context menu for hyperlinks if it hasn't already made its way into lyx 2). I
can
see your point about security but the version control command that I've
subverted allows equally arbitrary code to be executed using a lyx function.
Perhaps a disabled by default option to enable it for links. Shame to remove
a
useful feature (at least for me) while leaving the security problem in there
anyway.

I'd rather not patch it as I presume I would have to do that for every
version
with a different patch.

The problem with most software as an electronic lab book for simulations is
getting the links to the files to work in a nice way. Word is as per usual
horrible, Onenote is a bit of an abortion (embeds things like excel items as
IMAGES rendering itself pointless) and none of the other options I came
across
worked very well at all.

Lyx of course lets me do all the things you need for a lab book (equations,
tables, images etc) but the file linking is poor. Drag and drop/C for
images
is really nice, but not for generic files. That's where that dropper script
comes in. And launching the hyperlinks doesn't really work in pdf readers
(that
really is for good reason) so lyx needs to do that too, hence that hacky
script
to launch them. Propper support of that from lyx would, of course, be
better.

Chris Lingwood


Lyx reverse search in windows

2011-02-11 Thread Chris Lingwood
I've had reverse/inverse search working on my standard version of lyx
for windows for a while without using cygwin. I've not noticed anyone
posting about how to do it or providing scripts so I thought I'd share
mine. I've written it up here http://www.thousandmonkeys.com/?p=96 but
here are the really important bits. Hope this gets it working for
someone.

Requirements:

* Python 2.6 (might work with other versions not tried it)
* win32api – Python extension (to find the short pathnames)
* SumatraPDF – This is the only appropriate windows pdf viewer I
am aware of. It prints badly though in my experience.
* ReverseSearch – The scripts defined below

Setup:

* Set the lyxserver pipe (under paths in the settings) to
“\\.\pipe\lyxserver”
* put “SumatraPDF.bat”, “search.py” and “SumatraPDF.exe” in “../lyx16/bin”
* Update the paths in “SumatraPDF.bat” to be correct for your
setup (mine is 64bit), use pythonw.exe to supress the console
* Set your in “PDF (pdflatex)” viewer field (in file formats) to:
SumatraPDF.bat
* Set the “Latex (pdflatex) -> PDF (pdflatex)” converter to
“pdflatex –synctex=-1 $$i”

SumatraPDF.bat
---
start "SumatraPDF.exe" "SumatraPDF.exe" -inverse-search
"C:/Progra~1/Python26/pythonw.exe C:/Progra~2/lyx16/bin/search.py %%l
%%f" %1
exit

search.py
--
# author Chris Lingwood
#
# This script (along with sumatra.bat) enables DVI/PDF search in
windows using Sumatra

import sys
import time
import os
import win32api

#Debug output to ensure the path name is picked up properly
print(sys.argv[1])
print(sys.argv[2:])

line = sys.argv[1]
filename = ' '.join(sys.argv[2:])
print(filename)

#We have to get the windows short filename to avoid having spaces
which upsets the command
filename = win32api.GetShortPathName(filename);
#create the command to be send to the lyx server pipe with an echo to
a windows pipe
command = "echo LYXCMD:revdvi:server-goto-file-row:"+filename+"
"+line+" .\pipe\lyxserver.in"

#print it for debugging and send it to the os
print(command)
os.system(command)

#Uncomment the next line if there are problems, it lets you see  the
debugging output (this is still supressed with pythonw.exe though)
#time.sleep(100)

I attempted to post this the to the list a while back but it never
made it for some reason. That version doesn't work with newer versions
of lyx (or so I'm told), hence the repost.

Chris Lingwood


Re: SOLVED: LyX startup is slow on Windows

2011-02-11 Thread Manveru
2011/1/27 J. Gardner :
> Earlier I posted about slow startup (up to five minutes) with LyX 2.0
> beta 3 on Windows 7 Pro 32 bit. After some experimentation, I
> discovered that the problem was that there was a corrupted DVD in the
> drive. This caused very LyX to start very slowly and freeze for
> several minutes every time a change was made to the preferences
> (presumably because of an interaction with Windows explorer).
> Interestingly, it didn't cause problems with other applications.
> Removing the DVD solved the problem, but I thought it might be useful
> to note what the solution was -- maybe it suggests a change that can
> be made to prevent similar problems.

I suspect this problem to be deeper than LyX code itself. Probably
something in Qt library requests WinAPI specific calls to identify
drives available in the system. It is a Windows fault it hangs for
long time trying to identify broken DVD in the drive. Similar scenario
is happening in Total Commander if you select the drive with faulty
disc.

-- 
Manveru
jabber: manv...@manveru.pl
     gg: 1624001
   http://www.manveru.pl


Re: lyx2lyx failing when updating svn

2011-02-11 Thread Jose Quesada
I've copied it here, as you suggest. This is with a clean, default, .lyx
file.
The problem persists. There might be something wrong on the install script;
I seem to spend way too much time getting this to work everytime I change
computers...

-J

On Wed, Feb 2, 2011 at 2:00 AM, Richard Heck  wrote:

> On 2/1/11 7:02 PM, Jose Quesada wrote:
>
>> Thanks Richard,
>>
>> lyx2lyx was indeed missing in my .lyx. After moving it there this is what
>> I get:
>>
>>  Sorry, you want it in /usr/share/lyx/lyx2lyx/, or wherever this is on
> your system.
>
> rh
>
>


-- 
Best,
-Jose

Jose Quesada, PhD.
Research scientist,
Max Planck Institute,
Center for Adaptive Behavior and Cognition,
Berlin
http://www.josequesada.name/
http://twitter.com/Quesada


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread stefano franchi
On Fri, Feb 11, 2011 at 5:19 AM, Liviu Andronic  wrote:
> On Fri, Feb 11, 2011 at 7:01 AM, Guido Gonni  wrote:


> Try
> ./configure --with-version-suffix=-svn --enable-build-type=release
>


I haven´t tried beta4, but later svn releases compile fine on my
Ubuntu 10.10 installation.
I do use the same configure options Liviu mentioned (see above).


Stefano


Re: Ubuntu 10.10 - Unsuccessful installation

2011-02-11 Thread Paul Johnson
on Fri, Feb 11, 2011 at 9:55 AM, stefano franchi
 wrote:
>> Try
>> ./configure --with-version-suffix=-svn --enable-build-type=release
>>
>
>
> I haven´t tried beta4, but later svn releases compile fine on my
> Ubuntu 10.10 installation.
> I do use the same configure options Liviu mentioned (see above).
>
>
> Stefano
>

On my Ubuntu 10.10 with the all of the "pre-packaged" compilers and
qt, I get a completely clean compile with all of the usual procedures.

And I have the full build output to prove it:

http://pj.freefaculty.org/latex/lyxbuild.txt

Because I saved all the output.  And I suggest the people who have
trouble on Ubuntu do the same virtuous thing so we can actually see
the whole dead body to perform the autopsy.  (Sorry, watching too many
CSI lately).

$ ./configure --prefix=/tmp/lyxb4 > lyxbuild.txt 2>&1

$ make >> lyxbuild.txt 2>&1

$ make install >> lyxbuild.txt 2>&1

pj

-- 
Paul E. Johnson
Professor, Political Science
1541 Lilac Lane, Room 504
University of Kansas