Re: [hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-07-09 Thread Raoul Taddei
yes you're right... but if an header file is not found by g++,
(missing or path unknown by the compiler), you can have this kind of
error without any error in the code

I don't know the open suze packages, but you can check if you
downloaded all the required objects, and if they are installed in the
right places

2012/7/9 Alexey Sukhovich :
> Hi Raoul,
>
> Thank you for your response. I would love to try your advice, but as I said,
> I am not a programmer, so I doubt I will understand anything in the code.
> What you suggest:
>
>
>> Check your sources : paths, versions, environment, all that stuff, and
>> try again.
>>
>
> , does this mean actually: verifying  and modifying the C-codes to fix any
> syntax errors and eventually other more serious errors? Well, I doubt I will
> do any good :-)
> What is more surprising to me, is why at all these errors appear? I have
> downloaded sources from the official hugin web-site, tons of people before
> had installed the software successfully, how come this error didn't appear
> during their installations?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Hugin and other free panoramic software" group.
> A list of frequently asked questions is available at:
> http://wiki.panotools.org/Hugin_FAQ
> To post to this group, send email to hugin-ptx@googlegroups.com
> To unsubscribe from this group, send email to
> hugin-ptx+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/hugin-ptx

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


Re: [hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-07-09 Thread Alexey Sukhovich
Hi Raoul,

Thank you for your response. I would love to try your advice, but as I 
said, I am not a programmer, so I doubt I will understand anything in the 
code. 
What you suggest:

Check your sources : paths, versions, environment, all that stuff, and 
> try again. 
>
>
, does this mean actually: verifying  and modifying the C-codes to fix any 
syntax errors and eventually other more serious errors? Well, I doubt I 
will do any good :-) 
What is more surprising to me, is why at all these errors appear? I have 
downloaded sources from the official hugin web-site, tons of people before 
had installed the software successfully, how come this error didn't appear 
during their installations?

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


Re: [hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-07-03 Thread Raoul Taddei
Hi Alexey

yes, it's an error with the code. It could to be a kind of "circular
includes" error, or a missing ";" in the code, a missing header, or a
something like that.
I don't know the sources, so I can't help more.
Check your sources : paths, versions, environment, all that stuff, and
try again.

m2c

Raoul

2012/7/2 Alexey Sukhovich :
> Hi everyone,
>
> I still need your help. As Thomas suggested,
>
>>>
>>> ./configure --help prints all possible options.
>>> I assume you need
>>> ./configure --with-unicode --with-opengl
>>> and then make and make install
>>> But there are user with more Linux experience on the list which can
>>> help you further.
>>>
>>> Thomas
>
>
>
> I have looked at the options available for configure. There was no option
> --with-unicode, but indeed there was an option --with-opengl. So I have
> uninstalled the wxWidgets 2.8.12 completely, and then made configure
> --with-opengl, then installed it again. And apparently, this worked, because
> I got past this stage when I previously got an error
> ld: cannot find -
> lwx_x11univ_gl-2.8
>
> But then another problem occurred during make:
>
> [ 64%] Building CXX object
> src/hugin1/hugin/CMakeFiles/hugin.dir/huginApp.cpp.o
> In file included from /usr/src/hugin/hugin/src/hugin1/hugin/huginApp.h:29:0,
>  from /usr/src/hugin/hugin/src/hugin1/hugin/huginApp.cpp:39:
> /usr/src/hugin/hugin/src/hugin1/hugin/MainFrame.h:58:1: error: expected
> class-name before ‘{’ token
> make[2]: *** [src/hugin1/hugin/CMakeFiles/hugin.dir/huginApp.cpp.o] Error 1
> make[1]: *** [src/hugin1/hugin/CMakeFiles/hugin.dir/all] Error 2
> make: *** [all] Error 2
>
> Is it an error with the code itself? Does anyone have the idea how to fix
> this? I hope that somebody can give me a hand - if this is a problem with
> the code, only the authors of the code are able to understand what is wrong.
>
> Thank you in advance!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Hugin and other free panoramic software" group.
> A list of frequently asked questions is available at:
> http://wiki.panotools.org/Hugin_FAQ
> To post to this group, send email to hugin-ptx@googlegroups.com
> To unsubscribe from this group, send email to
> hugin-ptx+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/hugin-ptx

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-07-02 Thread Alexey Sukhovich
Hi everyone, 

I still need your help. As Thomas suggested,


>> ./configure --help prints all possible options. 
>> I assume you need 
>> ./configure --with-unicode --with-opengl 
>> and then make and make install 
>> But there are user with more Linux experience on the list which can 
>> help you further. 
>>
>> Thomas
>
>

I have looked at the options available for configure. There was no option 
--with-unicode, but indeed there was an option --with-opengl. So I have 
uninstalled the wxWidgets 2.8.12 completely, and then made configure 
--with-opengl, then installed it again. And apparently, this worked, 
because I got past this stage when I previously got an error 
ld: cannot find - 
lwx_x11univ_gl-2.8  

But then another problem occurred during make:

[ 64%] Building CXX object 
src/hugin1/hugin/CMakeFiles/hugin.dir/huginApp.cpp.o
  

In file included from 
/usr/src/hugin/hugin/src/hugin1/hugin/huginApp.h:29:0,  
   

 from /usr/src/hugin/hugin/src/hugin1/hugin/huginApp.cpp:39:
/usr/src/hugin/hugin/src/hugin1/hugin/MainFrame.h:58:1: error: expected 
class-name before ‘{’ token
make[2]: *** [src/hugin1/hugin/CMakeFiles/hugin.dir/huginApp.cpp.o] Error 1
make[1]: *** [src/hugin1/hugin/CMakeFiles/hugin.dir/all] Error 2
make: *** [all] Error 2

Is it an error with the code itself? Does anyone have the idea how to fix 
this? I hope that somebody can give me a hand - if this is a problem with 
the code, only the authors of the code are able to understand what is 
wrong. 

Thank you in advance! 

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-06-22 Thread Alexey Sukhovich
Hi Thomas,

thanks for your reply! I'll look at the available options for this package 
tomorrow. I will let you know,

with the best regards
Alexey

On Sunday, June 17, 2012 1:31:50 PM UTC+2, T. Modes wrote:
>
> Hi Alexey, 
>
> I'm not on Linux. So I can't help you so much further. 
>
> > More precisely: how to check that the version of wxwidgets 
> > is the one which has openGL support? 
>
> Try running wx-config 
> wx-config --version-full 
> reports the full version number 
>
> wx-config reports also some more details about the install version. 
>
> > And the same for the second option you have proposed: how to rebuild 
> from 
> > source (which commands to use) and which options I should enable? 
> > As I said in my previous message, I have used the following commands 
> while 
> > installing the wxwidgets: 
> > 
> > > ./configure --with-x11 
> > > make 
> > > su  
> > > make install 
> > > ldconfig 
> > > exit 
> > 
>
> ./configure --help prints all possible options. 
> I assume you need 
> ./configure --with-unicode --with-opengl 
> and then make and make install 
> But there are user with more Linux experience on the list which can 
> help you further. 
>
> Thomas

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-06-17 Thread T. Modes
Hi Alexey,

I'm not on Linux. So I can't help you so much further.

> More precisely: how to check that the version of wxwidgets
> is the one which has openGL support?

Try running wx-config
wx-config --version-full
reports the full version number

wx-config reports also some more details about the install version.

> And the same for the second option you have proposed: how to rebuild from
> source (which commands to use) and which options I should enable?
> As I said in my previous message, I have used the following commands while
> installing the wxwidgets:
>
> > ./configure --with-x11
> > make
> > su 
> > make install
> > ldconfig
> > exit
>

./configure --help prints all possible options.
I assume you need
./configure --with-unicode --with-opengl
and then make and make install
But there are user with more Linux experience on the list which can
help you further.

Thomas

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-06-16 Thread Alexey Sukhovich
Dear T. Modes,


On Tuesday, May 29, 2012 6:08:17 PM UTC+2, T. Modes wrote:
>
> > Linking CXX shared library libhuginbasewx.so 
> > /usr/lib64/gcc/x86_64-suse-linux/4.5/../../../../x86_64-suse-linux/bin/ 
> > ld: cannot find - 
> > lwx_x11univ_gl-2.8 
> > collect2: ld returned 1 exit status 
>
> This sounds like wxwidgets is build without OpenGL support. Install a 
> version with OpenGL support or rebuild from source with appropriate 
> option enabled. 
>


thank you for this hint. I would love to try it - but I am not a 
too-much-into-computers person at the moment. I am wondering if you could 
give me detaild instructions on how to build wxwwidgets with OpenGL 
support. More precisely: how to check that the version of wxwidgets is the 
one which has openGL support? To start, I might already check the whatever 
version is downloaded on my computer right now. Which files should I be 
looking for? 
For example, I have noticed that the directory src/gtk is empty. Could it 
be the source of problem in your opinion? 


And the same for the second option you have proposed: how to rebuild from 
source (which commands to use) and which options I should enable? 
As I said in my previous message, I have used the following commands while 
installing the wxwidgets:
> ./configure --with-x11 
> make 
> su  
> make install 
> ldconfig 
> exit 



Thank you in advance,
Alexey

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-05-29 Thread T. Modes
> Linking CXX shared library libhuginbasewx.so
> /usr/lib64/gcc/x86_64-suse-linux/4.5/../../../../x86_64-suse-linux/bin/
> ld: cannot find -
> lwx_x11univ_gl-2.8
> collect2: ld returned 1 exit status

This sounds like wxwidgets is build without OpenGL support. Install a
version with OpenGL support or rebuild from source with appropriate
option enabled.

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


Re: [hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-05-28 Thread Carlos Eduardo G. Carvalho (Cartola)
Hi Alexey, I don't know those answers and would need some environment to
test, which I don't have, but I guess Stefan gave you two hints that can
help you. In particular I guess you could try a pre-compiled package.

But keep the list informed, there are more people who can try to help.

Good luck,

Carlos E G Carvalho (Cartola)
http://cartola.org/360
http://cartola.org/panoforum



2012/5/28 Alexey Sukhovich 

> Hi Carlos,
>
> Thanks for the fast reply. I don't remember how exactly I have
> installed wxX11-2.8.12, but I think I have followed the instructions
> given in the text file which came with the package:
>
> > ./configure --with-x11
> > make
> > su 
> > make install
> > ldconfig
> > exit
>
> Also, when I check with YAST (suse package and software manager) for
> the "wxWidgets", I find that I also have wxWidgets-devel  version
> 2.8.11-4.13.1 installed. As I understand, the problem might be that
> the hugin is looking for the library in the wrong place. Can you tell
> me please where exactly and for which files hugin is looking when
> giving me this mistake so that I could check myself if those files are
> present or not?
>
> Thank you
>
> On May 28, 2:25 pm, "Carlos Eduardo G. Carvalho (Cartola)"
>  wrote:
> > How have you installed the wx lib? Did you do that using the suse package
> > methods or compiled from source? Usually when you compile those free
> > softwares from source they get installed in /usr/local and from there the
> > other directories (bin, lib, include, ...). So, if your system does not
> use
> > /usr/local usually (like linux in general) you might have to point to
> there
> > directly using -L and/or -I options or whatever hugin needs to find the
> lib.
> >
> > This is just one possibility...
> >
> > Cheers,
> >
> > Carlos E G Carvalho (Cartola)
> http://cartola.org/360http://cartola.org/panoforum
>
> --
> You received this message because you are subscribed to the Google Groups
> "Hugin and other free panoramic software" group.
> A list of frequently asked questions is available at:
> http://wiki.panotools.org/Hugin_FAQ
> To post to this group, send email to hugin-ptx@googlegroups.com
> To unsubscribe from this group, send email to
> hugin-ptx+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/hugin-ptx
>

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-05-28 Thread Alexey Sukhovich
Actually, I have just searched the whole computer for the file
lwx_x11univ_gl-2.8* - the search gave nothing, it is not on my
computer. What is that file and with which package it comes anyway?

If I do search for all files having x11univ in their names, I find 47
files, but all names start with libwx, not lwx. They are all in the
directory: usr/local/lib
Anyone can clarify this issue please?

Thanks!

On May 28, 2:25 pm, "Carlos Eduardo G. Carvalho (Cartola)"
 wrote:
> How have you installed the wx lib? Did you do that using the suse package
> methods or compiled from source? Usually when you compile those free
> softwares from source they get installed in /usr/local and from there the
> other directories (bin, lib, include, ...). So, if your system does not use
> /usr/local usually (like linux in general) you might have to point to there
> directly using -L and/or -I options or whatever hugin needs to find the lib.
>
> This is just one possibility...
>
> Cheers,
>
> Carlos E G Carvalho 
> (Cartola)http://cartola.org/360http://cartola.org/panoforum
>
> 2012/5/28 Alexey Sukhovich 
>
>
>
>
>
>
>
> > Hello,
>
> > Can anyone please help me? I am running Opensuse 11.4 and I am trying
> > to install hugin-2011.4.0 . The part with cmake command worked fine;
> > below is the print out:
>
> > alexey@linux-8qge:~/Downloads/hugin/hugin-2011.4.0> cmake -
> > DCMAKE_INSTALL_PREFIX=/usr/local
> > -- Current HG revision is cf9be9344356
> > -- Assuming this is a tarball (release) build for 2011.4.0
> > -- Found TIFF: /usr/include
> > -- Found JPEG: /usr/include
> > -- Found PNG: /usr/include
> > -- WARNING: you are using the obsolete 'PKGCONFIG' macro, use
> > FindPkgConfig
> > -- Found OPENEXR: /usr/lib64/libImath.so;/usr/lib64/libIlmImf.so;/usr/
> > lib64/libIex.so;/usr/lib64/libHalf.so;/usr/lib64/libIlmThread.so
> > -- GLUT Found
> > -- Found Glew:
> > -- libpano13 version: 2.9.18 major 2 minor 9 patch 18
> > -- Program msgfmt found (/usr/bin/msgfmt)
> > -- ZThread library not found. falling back to included copy
> > -- Using shared internal libraries
> > -- Configuring done
> > -- Generating done
> > -- Build files have been written to: /home/alexey/Downloads/hugin/
> > hugin-2011.4.0
>
> > the problem happens when I am trying to do make:
>
> > alexey@linux-8qge:~/Downloads/hugin/hugin-2011.4.0> make
> > [  4%] Built target makefilelib
> > [  6%] Built target huginlevmar
> > [ 11%] Built target huginvigraimpex
> > [ 29%] Built target huginbase
> > [ 33%] Built target celeste
> > [ 33%] Built target celeste_standalone
> > [ 33%] Built target huginlensdb
> > [ 35%] Built target flann_cpp_s
> > [ 35%] Built target flann_cpp
> > [ 43%] Built target ZThread
> > [ 43%] Built target huginlines
> > [ 44%] Built target align_image_stack
> > [ 44%] Built target autooptimiser
> > [ 44%] Built target checkpto
> > [ 45%] Built target cpclean
> > [ 45%] Built target fulla
> > [ 45%] Built target hugin_hdrmerge
> > [ 46%] Built target linefind
> > [ 46%] Built target nona
> > [ 46%] Built target pano_modify
> > [ 46%] Built target pano_trafo
> > [ 47%] Built target pto2mk
> > [ 47%] Built target pto_merge
> > [ 47%] Built target tca_correct
> > [ 48%] Built target vig_optimize
> > [ 49%] Built target matchpoint
> > [ 50%] Built target deghosting_mask
> > Linking CXX shared library libhuginbasewx.so
> > /usr/lib64/gcc/x86_64-suse-linux/4.5/../../../../x86_64-suse-linux/bin/
> > ld: cannot find -
> > lwx_x11univ_gl-2.8
> > collect2: ld returned 1 exit status
> > make[2]: *** [src/hugin1/base_wx/libhuginbasewx.so.0.0] Error 1
> > make[1]: *** [src/hugin1/base_wx/CMakeFiles/huginbasewx.dir/all] Error
> > 2
> > make: *** [all] Error 2
>
> > I have no idea what is going wrong; I have installed wxWidgets
> > library, more precisely, wxX11-2.8.12 .
> > Can anyone please help me? I am getting desperate here. Thank you in
> > advance.
> > Just in case, info on the system and kernel:
>
> > cat /etc/SuSE-release
> > openSUSE 11.4 (x86_64)
> > VERSION = 11.4
>
> > uname -r
> > 2.6.37.6-0.11-default
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Hugin and other free panoramic software" group.
> > A list of frequently asked questions is available at:
> >http://wiki.panotools.org/Hugin_FAQ
> > To post to this group, send email to hugin-ptx@googlegroups.com
> > To unsubscribe from this group, send email to
> > hugin-ptx+unsubscr...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/hugin-ptx

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx


[hugin-ptx] Re: problem with installing hugin on opensuse: cannot find cannot find -lwx_x11univ_gl-2.8

2012-05-28 Thread Alexey Sukhovich
Hi Carlos,

Thanks for the fast reply. I don't remember how exactly I have
installed wxX11-2.8.12, but I think I have followed the instructions
given in the text file which came with the package:

> ./configure --with-x11
> make
> su 
> make install
> ldconfig
> exit

Also, when I check with YAST (suse package and software manager) for
the "wxWidgets", I find that I also have wxWidgets-devel  version
2.8.11-4.13.1 installed. As I understand, the problem might be that
the hugin is looking for the library in the wrong place. Can you tell
me please where exactly and for which files hugin is looking when
giving me this mistake so that I could check myself if those files are
present or not?

Thank you

On May 28, 2:25 pm, "Carlos Eduardo G. Carvalho (Cartola)"
 wrote:
> How have you installed the wx lib? Did you do that using the suse package
> methods or compiled from source? Usually when you compile those free
> softwares from source they get installed in /usr/local and from there the
> other directories (bin, lib, include, ...). So, if your system does not use
> /usr/local usually (like linux in general) you might have to point to there
> directly using -L and/or -I options or whatever hugin needs to find the lib.
>
> This is just one possibility...
>
> Cheers,
>
> Carlos E G Carvalho 
> (Cartola)http://cartola.org/360http://cartola.org/panoforum

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx