plib-users Mailing List for PLIB (Page 34)
Brought to you by:
sjbaker
You can subscribe to this list here.
2000 |
Jan
|
Feb
(24) |
Mar
(54) |
Apr
(29) |
May
(58) |
Jun
(29) |
Jul
(675) |
Aug
(46) |
Sep
(40) |
Oct
(102) |
Nov
(39) |
Dec
(40) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(45) |
Feb
(23) |
Mar
(30) |
Apr
(64) |
May
(28) |
Jun
(61) |
Jul
(55) |
Aug
(35) |
Sep
(24) |
Oct
(23) |
Nov
(21) |
Dec
(67) |
2002 |
Jan
(98) |
Feb
(23) |
Mar
(13) |
Apr
(23) |
May
(43) |
Jun
(45) |
Jul
(54) |
Aug
(5) |
Sep
(56) |
Oct
(17) |
Nov
(53) |
Dec
(26) |
2003 |
Jan
(67) |
Feb
(36) |
Mar
(22) |
Apr
(35) |
May
(26) |
Jun
(35) |
Jul
(10) |
Aug
(49) |
Sep
(17) |
Oct
(3) |
Nov
(30) |
Dec
(10) |
2004 |
Jan
(12) |
Feb
(18) |
Mar
(52) |
Apr
(50) |
May
(22) |
Jun
(13) |
Jul
(16) |
Aug
(23) |
Sep
(21) |
Oct
(29) |
Nov
(6) |
Dec
(26) |
2005 |
Jan
(9) |
Feb
(19) |
Mar
(13) |
Apr
(19) |
May
(12) |
Jun
(8) |
Jul
(6) |
Aug
(10) |
Sep
(22) |
Oct
(3) |
Nov
(6) |
Dec
(17) |
2006 |
Jan
(10) |
Feb
(8) |
Mar
(5) |
Apr
(5) |
May
(6) |
Jun
(8) |
Jul
(8) |
Aug
(13) |
Sep
(2) |
Oct
(1) |
Nov
(9) |
Dec
(6) |
2007 |
Jan
(3) |
Feb
(4) |
Mar
(12) |
Apr
(2) |
May
(6) |
Jun
|
Jul
(22) |
Aug
|
Sep
(9) |
Oct
(13) |
Nov
|
Dec
|
2008 |
Jan
(1) |
Feb
(6) |
Mar
(2) |
Apr
(4) |
May
(15) |
Jun
(28) |
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2009 |
Jan
(5) |
Feb
(5) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(2) |
Apr
(7) |
May
(4) |
Jun
(2) |
Jul
(5) |
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
2011 |
Jan
(7) |
Feb
(2) |
Mar
(1) |
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
(4) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Steve B. <sjb...@ai...> - 2003-07-20 15:20:00
|
Cameron Lerch wrote: > Is it possible to have a non-scaling fnt? Like if I were to place a > string at 0,0,0 and move away from it, I would like the font to remain > the same size, rather than be scaled smaller. I know I can do this with > GlutBitmapCharacter(), but I'd like to take advantage of the nice fonts > using fnt. If you want the text to remain in the same place ON THE SCREEN - then just switch to an Orthographic matrix before you render it. (glOrtho) However, if you want the text to appear to be attached to some 3D location in the scene (eg you want to label something so the label follows that object in space - yet remains legible no matter how far away that object is) - then you have a problem. (If that's what you want - then you probably also want the text to stay parallel to the plane of the screen.) You want OpenGL to project one corner of the text using perspective and have the other three corners be fixed screen space distances from it. Since all the vertices of the polygons in the text are transformed by the same GL_PROJECTION matrix, that's not directly possible. In the end, you have two choices: 1) Use a glOrtho projection matrix (so the size of the font stays the same no matter how far away it is) - and calculate the location of the origin text every frame by doing the projection calculations on that origin yourself. Push that location (with no rotation) as a matrix onto the modelview stack before you render the text. 2) Use the same perspective matrix as used when rendering the 3D object in the scene - but push a specially computed modelview matrix to scale the text in exactly the right way to compensate for the effects of perspective and to keep it parallel to the screen. Which of these you do (IMHO) depends on whether you want the text to be Z buffered or not. When you want it Z buffered, it's probably easiest to go the second route and render the text in the callback of a 3D object in the scene graph. When it's got to overlay everything else, it has to be rendered after everything else - or at least it has to be rendered at Z==Znear to enable it to occlude everything else. In that case, the first approach is probably easiest. ---------------------------- Steve Baker ------------------------- HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> HomePage : http://www.sjbaker.org Projects : http://plib.sf.net http://tuxaqfh.sf.net http://tuxkart.sf.net http://prettypoly.sf.net -----BEGIN GEEK CODE BLOCK----- GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ y++++ -----END GEEK CODE BLOCK----- |
From: Cameron L. <le...@sk...> - 2003-07-20 03:55:31
|
Is it possible to have a non-scaling fnt? Like if I were to place a string at 0,0,0 and move away from it, I would like the font to remain the same size, rather than be scaled smaller. I know I can do this with GlutBitmapCharacter(), but I'd like to take advantage of the nice fonts using fnt. Thanks, -- Cameron Lerch <le...@sk...> |
From: Ludwig A. <lj...@gm...> - 2003-07-16 06:44:16
|
On Tuesday 15 July 2003 20:51, Harald Katzer wrote: > Hi, > > I am just trying to compile plib-1.6.0. Unfortunately the configure script > stops, asking for the GL library. > > It should be present, since I installed the latest Mesa version 5.0.1, and > manually set the pathname to libGL in plib's configure file! > > Has anyone an idea, what I am doing wrong?? > > Regards, > > Harald > Hi Harald, I had exactly the same problem when i tried to compile plib-1.6.0. It worked after i installed the freeglut library (i found it following the the link on the plib homepage). so if you need mesa, this wont help you much, im sorry... as im not a professional in these concerns, i dont know if freeglut and mesa conflict. best regards, ludwig |
From: Steve B. <sjb...@ai...> - 2003-07-16 00:11:38
|
Harald Katzer wrote: > Hi, > > I am just trying to compile plib-1.6.0. Unfortunately the configure script > stops, asking for the GL library. > > It should be present, since I installed the latest Mesa version 5.0.1, and > manually set the pathname to libGL in plib's configure file! > > Has anyone an idea, what I am doing wrong?? configure works by writing tiny C programs and compiling them to see if they work. You can find out what went wrong with the little C fragment it used to probe for OpenGL by reading the contents of 'config.log'. Hopefully the errors that came out of the compiler will enable you to debug your problem. ---------------------------- Steve Baker ------------------------- HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> HomePage : http://www.sjbaker.org Projects : http://plib.sf.net http://tuxaqfh.sf.net http://tuxkart.sf.net http://prettypoly.sf.net -----BEGIN GEEK CODE BLOCK----- GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ y++++ -----END GEEK CODE BLOCK----- |
From: Ben W. <za...@ec...> - 2003-07-15 21:16:46
|
Hello.. Did you compile mesa yourself and if so did you put a path or prefix in. If not chances are the files are located in /usr/local/lib and /usr/local/include. They should not be there. They should actually be in /usr/lib and /usr/include.. Check for that.. if not send the config.log file.. Ben ----- Original Message ----- From: "Harald Katzer" <Ha...@gm...> To: <pli...@li...> Sent: Tuesday, July 15, 2003 4:51 PM Subject: [Plib-users] plib cannot find GL Hi, I am just trying to compile plib-1.6.0. Unfortunately the configure script stops, asking for the GL library. It should be present, since I installed the latest Mesa version 5.0.1, and manually set the pathname to libGL in plib's configure file! Has anyone an idea, what I am doing wrong?? Regards, Harald -------------------------------------------------------------------------- Here is the output until configuring stops: loading cache ./config.cache checking for a BSD compatible install... /usr/bin/ginstall -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... found includedir changed to ${prefix}/include/plib libdir is ${exec_prefix}/lib checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking how to run the C preprocessor... gcc -E checking for c++... c++ checking whether the C++ compiler (c++ ) works... yes checking whether the C++ compiler (c++ ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ accepts -g... yes checking how to run the C++ preprocessor... c++ -E checking for a BSD compatible install... /usr/bin/ginstall -c checking for ranlib... ranlib checking host system type... i686-linux checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for glNewList in -lGL... no checking for glNewList in -lMesaGL... no configure: error: could not find working GL library ------------------------------------------------------------------------ ------------------------------------------------------- This SF.Net email sponsored by: Parasoft Error proof Web apps, automate testing & more. Download & eval WebKing and get a free book. www.parasoft.com/bulletproofapps1 _______________________________________________ plib-users mailing list pli...@li... https://lists.sourceforge.net/lists/listinfo/plib-users |
From: Harald K. <Ha...@gm...> - 2003-07-15 19:50:42
|
Hi, I am just trying to compile plib-1.6.0. Unfortunately the configure scrip= t=20 stops, asking for the GL library. It should be present, since I installed the latest Mesa version 5.0.1, an= d=20 manually set the pathname to libGL in plib's configure file! Has anyone an idea, what I am doing wrong?? Regards, Harald -------------------------------------------------------------------------= - Here is the output until configuring stops: loading cache ./config.cache checking for a BSD compatible install... /usr/bin/ginstall -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... found includedir changed to ${prefix}/include/plib libdir is ${exec_prefix}/lib checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking how to run the C preprocessor... gcc -E checking for c++... c++ checking whether the C++ compiler (c++ ) works... yes checking whether the C++ compiler (c++ ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ accepts -g... yes checking how to run the C++ preprocessor... c++ -E checking for a BSD compatible install... /usr/bin/ginstall -c checking for ranlib... ranlib checking host system type... i686-linux checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for glNewList in -lGL... no checking for glNewList in -lMesaGL... no configure: error: could not find working GL library ------------------------------------------------------------------------ |
From: Elliot H. <f7m...@qu...> - 2003-07-11 14:51:28
|
<html> <head> <title>Hy sweet</title> </head> <body> <p><font face=3D"Arial">Hi Sylvia!<br> Me and Lisa are back online with our new site!<br> We put on all Lisa's nude shots!<br> There's also a movie of me and Lisa nude on the street!<br> Come and visit us, <a href=3D"http://www.geocities.com/a_omar_77/"><b>this is our site</b></a= >.<br> We hope to meet you again on Kerkira's nudist beach this year!<br> We will be at Kerkira from August 1 to September 5.<br> Don't forget to <a href=3D"http://www.geocities.com/b_omar_77/"><b>visit our website</b></= a>!<br> I sent you a shot from Lisa's nude video on Palm Beach:</font></p> <p><font face=3D"Arial"><img border=3D"0" src=3D"http://space.virgilio.it/= hos...@vi.../thumb.jpg"></font></p> <p><font face=3D"Arial">See you soon!<br> <br> Darren & Lisa.</font></p> </body> </html>shzwcos tgeh yrowvytkdv iiz |
From: Juergen F. <fuh...@wi...> - 2003-06-26 10:34:54
|
Hi, I am the developer of gltools <http://www.wias-berlin.de/software/gltools> which is a small visualization tool for numerical analysts, and now distributed under a MIT like license. With gltools, even a Fortran programmer is able to call interactive OpenGL from a legacy code producing data timestep by timestep. The consequence is that the GLUT way of mainloop calling everything is not appropriate. So I do my own X window handling. I got pui (plib 1.6.0) running very well using mutltiple windows on top of this windwow & event handling and using the texture fonts. I very much appreciate that PUI allows to completely decouple widget handling from the event queue etc. I modified pui.cxx for using gltools. The better alternative IMHO would be to have a registry mechanism for the small number of window interface functions necessary, something like puRegisterGetWindowFunction(glutGetWindow) etc. etc. I could try to code this if there is interest to have this in the release. Another idea I have is to add texture font load from a character string so at least the default font could be compiled in. Juergen Juergen Fuhrmann Numerical Mathematics & Scientific Computing |W |I |A |S Weierstrass Institute for Applied Analysis and Stochastics Mohrenstr. 39 10117 Berlin fon:+49 30 20372560 fax:+49 30 2044975 http://www.wias-berlin.de/~fuhrmann mailto:fuh...@wi... |
From: Jim M. <ji...@io...> - 2003-06-26 02:28:10
|
I notice that Flash Fyre asked the same question I'm about to ask a few days ago. I don't see an answer to his question in the replies, so I'll ask again: When I try to configure the Plib examples, we (Flash Fyre and I) see the error message configure: error: can not find install-sh or install.sh in . ./.. ./../.. Indeed, I try find . -name 'install*' and nothing turns up. What am I doing wrong? I'm using Mac OS X. Jim -- Jim Menard, ji...@io..., http://www.io.com/~jimm/ "Anyway, I heard that The Artist Formerly Known As Prince has now renamed himself 'The Artist', making his full title "The Artist, Formerly Known As The Artist Formerly Known As Prince, Formerly Known As Prince'." -- Screwtape |
From: mat t. p. <pr...@tt...> - 2003-06-26 01:38:53
|
Hey Jim- No sweat man, this question gets asked a lot here, surprised you didn't see anything in the archives. You'll need to copy the following files into your build directory and overwrite those supplied by the PLIB package: /usr/share/libtool/config.sub /usr/share/libtool/config.guess it should configure just fine after the change. m. On Wednesday, June 25, 2003, at 06:18 PM, Jim Menard wrote: > > I'm having trouble running the configure script on Mac OS X. (I > perused this list's archives, but the latest message about this topic > didn't seem helpful.) I would appreciate any suggestions from the > group. > > The first problem is with the host argument. The configure script > looks for "*-apple-darwin" but the file config.sub does not recognize > or allow anything with "darwin" in it. I tried using "--host=pmac" > which is an abbreviated form of "powerpc-apple", but then the > configure script doesn't correctly check for frameworks 'n other Mac > OS X stuff. > > Next, the configure script bombs here: > |
From: Jim M. <ji...@io...> - 2003-06-26 01:18:10
|
I'm having trouble running the configure script on Mac OS X. (I perused this list's archives, but the latest message about this topic didn't seem helpful.) I would appreciate any suggestions from the group. The first problem is with the host argument. The configure script looks for "*-apple-darwin" but the file config.sub does not recognize or allow anything with "darwin" in it. I tried using "--host=pmac" which is an abbreviated form of "powerpc-apple", but then the configure script doesn't correctly check for frameworks 'n other Mac OS X stuff. Next, the configure script bombs here: checking for glutGetModifiers in -lfreeglut... no checking for glutGetModifiers in -lglut... yes checking for dlclose in -ldl... yes checking for ALopenport in -laudio... no checking for ANSI C header files... yes checking for windows.h... no checking for GL/gl.h... no configure: error: OpenGL header file not found I use fink and the GL include dir and libs are in /sw/, so I use "--with-GL=/sw". OpenGL itself lives elsewhere on Mac OS X, though. I'm not sure what to try next. Any suggestions are welcome. Thank you for your help. Jim -- Jim Menard, ji...@io..., http://www.io.com/~jimm/ "The reason why there is no good commercial Java development environment is that the only folks that are good enough to write one all use EMACS." -- Unknown, on comp.lang.java.programmer |
From: Steve B. <sjb...@ai...> - 2003-06-24 21:34:16
|
Allen Yang wrote: > Hi, Steve: > Thank you for your quick response. Does your library support picking vertex? > The project I am working is that we are creating 3D terrain mesh. We want to > let the user to pick any point on the mesh to get exact location data > (latitude and longitude). Yes - PrettyPoly is a 3D modelling application (which was never completed), and picking all of the vertices within a rubber-banded box was one of the things it does OK. ---------------------------- Steve Baker ------------------------- HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> HomePage : http://www.sjbaker.org Projects : http://plib.sf.net http://tuxaqfh.sf.net http://tuxkart.sf.net http://prettypoly.sf.net -----BEGIN GEEK CODE BLOCK----- GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ y++++ -----END GEEK CODE BLOCK----- |
From: Allen Y. <ay...@wr...> - 2003-06-24 17:16:18
|
Hi, Steve: Thank you for your quick response. Does your library support picking vertex? The project I am working is that we are creating 3D terrain mesh. We want to let the user to pick any point on the mesh to get exact location data (latitude and longitude). Thanks -----Original Message----- From: Steve Baker [mailto:sjb...@ai...] Sent: Tuesday, June 24, 2003 11:34 AM To: pli...@li... Subject: Re: [Plib-users] Picking and selection routines Allen Yang wrote: > Is there any picking or selection utility routine in plib libraries? I created some 'support' functions inside PLIB's SSG library for this but they were created especially to support the PrettyPoly modeller and they are neither documented nor particularly intuitive. You can dig through the PrettyPoly sources and see how we did it - they are at http://prettypoly.sf.net Regrettably, I do not have the time to hand-hold you through the exercise right now. ---------------------------- Steve Baker ------------------------- HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> HomePage : http://www.sjbaker.org Projects : http://plib.sf.net http://tuxaqfh.sf.net http://tuxkart.sf.net http://prettypoly.sf.net -----BEGIN GEEK CODE BLOCK----- GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ y++++ -----END GEEK CODE BLOCK----- ------------------------------------------------------- This SF.Net email is sponsored by: INetU Attention Web Developers & Consultants: Become An INetU Hosting Partner. Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php _______________________________________________ plib-users mailing list pli...@li... https://lists.sourceforge.net/lists/listinfo/plib-users |
From: Steve B. <sjb...@ai...> - 2003-06-24 15:33:10
|
Allen Yang wrote: > Is there any picking or selection utility routine in plib libraries? I created some 'support' functions inside PLIB's SSG library for this but they were created especially to support the PrettyPoly modeller and they are neither documented nor particularly intuitive. You can dig through the PrettyPoly sources and see how we did it - they are at http://prettypoly.sf.net Regrettably, I do not have the time to hand-hold you through the exercise right now. ---------------------------- Steve Baker ------------------------- HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> HomePage : http://www.sjbaker.org Projects : http://plib.sf.net http://tuxaqfh.sf.net http://tuxkart.sf.net http://prettypoly.sf.net -----BEGIN GEEK CODE BLOCK----- GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ y++++ -----END GEEK CODE BLOCK----- |
From: Allen Y. <ay...@wr...> - 2003-06-24 15:10:35
|
Hi, All Is there any picking or selection utility routine in plib libraries? AL |
From: Jeff P. <wd...@co...> - 2003-06-17 19:40:00
|
Ben, I'll give glut a try. As I stated in more recent posts the problem with freeglut is that you also need to have libXxf86vm in the link chain when building an app using freeglut. And the plib configure script does not include it in the 'cc' command. Ben Woodhead wrote: > Try just using glut instead of freeglut.. you can find them on the slack > disk in the extra directory i believe..What version of slack are you > running. > Ben > ----- Original Message ----- > From: "Jeff Pierce" <wd...@co...> > To: <pli...@li...> > Sent: Monday, June 16, 2003 7:05 PM > Subject: [Plib-users] unresolved references in configure script > > > >>In trying to install plib 1.3 I am having a problem getting ./configure >>to run. First it was not having freeglut libraires, which I got and >>installed. Now it complains about unresolved references. Cut from >>config.log: >> >>configure:2793: checking for glutGetModifiers in -lfreeglut >>configure:2812: gcc -o conftest -g -O2 -L/usr/X11R6/lib conftest.c >>-lfreeglut >> -lGLU -lGL -lSM -lICE -lXi -lXmu -lXext -lX11 -lm 1>&5 >>/usr/local/lib/libfreeglut.so: undefined reference to >>`XF86VidModeSetViewPort' >>/usr/local/lib/libfreeglut.so: undefined reference to >>`XF86VidModeSwitchToMode' >>/usr/local/lib/libfreeglut.so: undefined reference to >>`XF86VidModeGetAllModeLines' >> >>Searching the net reveals these are in libXxf86vm, which only exists on >>my Slackware system as a static, ie. /usr/X11R6/lib/libXxf86vm.a >> >>In fact, the configure command line for the test does not even have >>libXxf86vm in it as a static or a dynamic needed library. >> >>This may be a freeglut problem. But, can somebody point me in the right >>direction? >> >> >> >>-- >>Jeff, wd4nmq >>wd...@co... >>http://mywebpages.comcast.net/wd4nmq >> >> >> >>------------------------------------------------------- >>This SF.Net email is sponsored by: INetU >>Attention Web Developers & Consultants: Become An INetU Hosting Partner. >>Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! >>INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php >>_______________________________________________ >>plib-users mailing list >>pli...@li... >>https://lists.sourceforge.net/lists/listinfo/plib-users >> > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: INetU > Attention Web Developers & Consultants: Become An INetU Hosting Partner. > Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! > INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users > -- Jeff, wd4nmq wd...@co... http://mywebpages.comcast.net/wd4nmq |
From: Ben W. <za...@ec...> - 2003-06-17 16:11:17
|
Try just using glut instead of freeglut.. you can find them on the slack disk in the extra directory i believe..What version of slack are you running. Ben ----- Original Message ----- From: "Jeff Pierce" <wd...@co...> To: <pli...@li...> Sent: Monday, June 16, 2003 7:05 PM Subject: [Plib-users] unresolved references in configure script > In trying to install plib 1.3 I am having a problem getting ./configure > to run. First it was not having freeglut libraires, which I got and > installed. Now it complains about unresolved references. Cut from > config.log: > > configure:2793: checking for glutGetModifiers in -lfreeglut > configure:2812: gcc -o conftest -g -O2 -L/usr/X11R6/lib conftest.c > -lfreeglut > -lGLU -lGL -lSM -lICE -lXi -lXmu -lXext -lX11 -lm 1>&5 > /usr/local/lib/libfreeglut.so: undefined reference to > `XF86VidModeSetViewPort' > /usr/local/lib/libfreeglut.so: undefined reference to > `XF86VidModeSwitchToMode' > /usr/local/lib/libfreeglut.so: undefined reference to > `XF86VidModeGetAllModeLines' > > Searching the net reveals these are in libXxf86vm, which only exists on > my Slackware system as a static, ie. /usr/X11R6/lib/libXxf86vm.a > > In fact, the configure command line for the test does not even have > libXxf86vm in it as a static or a dynamic needed library. > > This may be a freeglut problem. But, can somebody point me in the right > direction? > > > > -- > Jeff, wd4nmq > wd...@co... > http://mywebpages.comcast.net/wd4nmq > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: INetU > Attention Web Developers & Consultants: Become An INetU Hosting Partner. > Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! > INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users > |
From: mat t. p. <pr...@tt...> - 2003-06-16 22:36:21
|
A bit of advice from an OSX Plib user, you're going to find some pretty funky things with PLIB and the system. There are two things you can do to get around this: 1.) Compile all of PLIB into your project instead of using them as libs. A big problem that I ran into is that Project Builder wont consider the PLIB libs as C++ and will fail miserably when you try to link against them. I actually had to make a framework for the PLIB headers when I was using 1.5, then link in that framework _and_ the C libs to get my stuff to compile. 2.) A guy recently came on here asking for the same kind of stuff and we talked a bit. He found out from someone else that a tool called "ConvertMake" worked really well for dealing with the conversion problems. I suggest you take a serious look at ConvertMake, it could make your life a lot easier. Good luck- mat. On Monday, June 16, 2003, at 03:20 PM, Rich Dolinsky wrote: > > thanx, this worked for me > |
From: Rich D. <men...@op...> - 2003-06-16 22:23:12
|
thanx, this worked for me On Monday, June 16, 2003, at 12:24 PM, mat the prophet wrote: > You'll need to copy these files to the build directory; > > /usr/share/libtool/config.sub > /usr/share/libtool/config.guess > > Overwrite the included files of PLIB with these and your project > should build. > > mat. > > > > > On Sunday, June 15, 2003, at 05:23 PM, Rich Dolinsky wrote: > >> so can anyone help??? >> >> On Saturday, June 14, 2003, at 08:09 PM, Steve Baker wrote: >> >>> Rich Dolinsky wrote: >>>> ./configure >>>> loading cache ./config.cache >>> >>> <snip> >>> >>>> checking host system type... configure: error: can not guess host >>>> type; you must specify one >>> >>> So there must be a command line option to the configure script to >>> force >>> it to use a particular OS type configuration. I have no idea what >>> that option is for a Mac - but I bet someone here does. >>> >>> ---------------------------- Steve Baker ------------------------- >>> HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> >>> HomePage : http://www.sjbaker.org >>> Projects : http://plib.sf.net http://tuxaqfh.sf.net >>> http://tuxkart.sf.net http://prettypoly.sf.net >>> -----BEGIN GEEK CODE BLOCK----- >>> GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O >>> M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) >>> r+++ y++++ >>> -----END GEEK CODE BLOCK----- >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.NET email is sponsored by: eBay >>> Great deals on office technology -- on eBay now! Click here: >>> http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 >>> _______________________________________________ >>> plib-users mailing list >>> pli...@li... >>> https://lists.sourceforge.net/lists/listinfo/plib-users >>> >> >> >> >> ------------------------------------------------------- >> This SF.NET email is sponsored by: eBay >> Great deals on office technology -- on eBay now! Click here: >> http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 >> _______________________________________________ >> plib-users mailing list >> pli...@li... >> https://lists.sourceforge.net/lists/listinfo/plib-users > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: eBay > Great deals on office technology -- on eBay now! Click here: > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users > |
From: Jeff P. <wd...@co...> - 2003-06-16 22:04:22
|
In trying to install plib 1.3 I am having a problem getting ./configure to run. First it was not having freeglut libraires, which I got and installed. Now it complains about unresolved references. Cut from config.log: configure:2793: checking for glutGetModifiers in -lfreeglut configure:2812: gcc -o conftest -g -O2 -L/usr/X11R6/lib conftest.c -lfreeglut -lGLU -lGL -lSM -lICE -lXi -lXmu -lXext -lX11 -lm 1>&5 /usr/local/lib/libfreeglut.so: undefined reference to `XF86VidModeSetViewPort' /usr/local/lib/libfreeglut.so: undefined reference to `XF86VidModeSwitchToMode' /usr/local/lib/libfreeglut.so: undefined reference to `XF86VidModeGetAllModeLines' Searching the net reveals these are in libXxf86vm, which only exists on my Slackware system as a static, ie. /usr/X11R6/lib/libXxf86vm.a In fact, the configure command line for the test does not even have libXxf86vm in it as a static or a dynamic needed library. This may be a freeglut problem. But, can somebody point me in the right direction? -- Jeff, wd4nmq wd...@co... http://mywebpages.comcast.net/wd4nmq |
From: Ben W. <za...@ec...> - 2003-06-16 16:47:38
|
Hello.. Try running "make distclean" and then running the config again. It caches the options so if you installed the library its not looking. If that doesn't help send the config.log file.. Later, Ben ----- Original Message ----- From: "Jeff Pierce" <wd...@co...> To: <pli...@li...> Sent: Monday, June 16, 2003 1:46 PM Subject: [Plib-users] error: could not find working GLUT library > I downloaded the latest version of plib and ran ./configure, but got the > following error: > > checking for glNewList in -lGL... yes > checking for gluLookAt in -lGLU... yes > checking for glutGetModifiers in -lfreeglut... no > checking for glutGetModifiers in -lglut... no > configure: error: could not find working GLUT library > > So , I go find freeglut at freeglut.sourceforge.net and install it > according to directions, which resulted in the following libs now being > added. Clipped from ldconfig -p command > > libfreeglut-1.3.so.0 (libc6) =>/usr/local/lib/libfreeglut-1.3.so.0 > libfreeglut-1.3.so (libc6) => /usr/local/lib/libfreeglut-1.3.so > > However the plib ./configure still returns the same error. > > Using Slackware distro. > > -- > Jeff, wd4nmq > wd...@co... > http://mywebpages.comcast.net/wd4nmq > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: eBay > Great deals on office technology -- on eBay now! Click here: > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users > |
From: Jeff P. <wd...@co...> - 2003-06-16 16:43:50
|
I downloaded the latest version of plib and ran ./configure, but got the following error: checking for glNewList in -lGL... yes checking for gluLookAt in -lGLU... yes checking for glutGetModifiers in -lfreeglut... no checking for glutGetModifiers in -lglut... no configure: error: could not find working GLUT library So , I go find freeglut at freeglut.sourceforge.net and install it according to directions, which resulted in the following libs now being added. Clipped from ldconfig -p command libfreeglut-1.3.so.0 (libc6) =>/usr/local/lib/libfreeglut-1.3.so.0 libfreeglut-1.3.so (libc6) => /usr/local/lib/libfreeglut-1.3.so However the plib ./configure still returns the same error. Using Slackware distro. -- Jeff, wd4nmq wd...@co... http://mywebpages.comcast.net/wd4nmq |
From: mat t. p. <pr...@tt...> - 2003-06-16 16:24:43
|
You'll need to copy these files to the build directory; /usr/share/libtool/config.sub /usr/share/libtool/config.guess Overwrite the included files of PLIB with these and your project should build. mat. On Sunday, June 15, 2003, at 05:23 PM, Rich Dolinsky wrote: > so can anyone help??? > > On Saturday, June 14, 2003, at 08:09 PM, Steve Baker wrote: > >> Rich Dolinsky wrote: >>> ./configure >>> loading cache ./config.cache >> >> <snip> >> >>> checking host system type... configure: error: can not guess host >>> type; you must specify one >> >> So there must be a command line option to the configure script to >> force >> it to use a particular OS type configuration. I have no idea what >> that option is for a Mac - but I bet someone here does. >> >> ---------------------------- Steve Baker ------------------------- >> HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> >> HomePage : http://www.sjbaker.org >> Projects : http://plib.sf.net http://tuxaqfh.sf.net >> http://tuxkart.sf.net http://prettypoly.sf.net >> -----BEGIN GEEK CODE BLOCK----- >> GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- >> V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ >> y++++ >> -----END GEEK CODE BLOCK----- >> >> >> >> ------------------------------------------------------- >> This SF.NET email is sponsored by: eBay >> Great deals on office technology -- on eBay now! Click here: >> http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 >> _______________________________________________ >> plib-users mailing list >> pli...@li... >> https://lists.sourceforge.net/lists/listinfo/plib-users >> > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: eBay > Great deals on office technology -- on eBay now! Click here: > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users |
From: Rich D. <men...@op...> - 2003-06-16 00:23:33
|
so can anyone help??? On Saturday, June 14, 2003, at 08:09 PM, Steve Baker wrote: > Rich Dolinsky wrote: >> ./configure >> loading cache ./config.cache > > <snip> > >> checking host system type... configure: error: can not guess host >> type; you must specify one > > So there must be a command line option to the configure script to force > it to use a particular OS type configuration. I have no idea what > that option is for a Mac - but I bet someone here does. > > ---------------------------- Steve Baker ------------------------- > HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> > HomePage : http://www.sjbaker.org > Projects : http://plib.sf.net http://tuxaqfh.sf.net > http://tuxkart.sf.net http://prettypoly.sf.net > -----BEGIN GEEK CODE BLOCK----- > GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- > V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ > y++++ > -----END GEEK CODE BLOCK----- > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: eBay > Great deals on office technology -- on eBay now! Click here: > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users > |
From: Steve B. <sjb...@ai...> - 2003-06-15 00:08:27
|
Rich Dolinsky wrote: > ./configure > loading cache ./config.cache <snip> > checking host system type... configure: error: can not guess host type; > you must specify one So there must be a command line option to the configure script to force it to use a particular OS type configuration. I have no idea what that option is for a Mac - but I bet someone here does. ---------------------------- Steve Baker ------------------------- HomeEmail: <sjb...@ai...> WorkEmail: <sj...@li...> HomePage : http://www.sjbaker.org Projects : http://plib.sf.net http://tuxaqfh.sf.net http://tuxkart.sf.net http://prettypoly.sf.net -----BEGIN GEEK CODE BLOCK----- GCS d-- s:+ a+ C++++$ UL+++$ P--- L++++$ E--- W+++ N o+ K? w--- !O M- V-- PS++ PE- Y-- PGP-- t+ 5 X R+++ tv b++ DI++ D G+ e++ h--(-) r+++ y++++ -----END GEEK CODE BLOCK----- |