Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-26-2006, 01:30 AM
|
#1
|
Member
Registered: Jun 2005
Posts: 34
Rep:
|
gtkglext.pc not found
I'm trying to install gtkglextmm-1.2.0, and I keep getting an error during configure that says:
checking for GtkGLExt - version >= 1.0.0... no
*** Could not run GtkGLExt test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GtkGLExt is incorrectly installed.
configure: error: GtkGLExt not found
I know I've installed gtkglext-1.2.0. I've tried installing it with --prefix=/usr, --prefix=/usr/local, as well as no options.
There is a gtkglext-1.0.pc and gtkglext-x11-1.0.pc in /usr/lib/pkgconfig as well as /usr/local/lib/pkgconfig.
I've tried making a symbolic link for gtkglext-1.0.0.pc -> gtkglext.pc
There also was gtkglext.pc in the gtkglext-1.2.0 directory, and I tried a symbolic link with that as well.
I've also tried installing gtkglextt to /usr and /usr/local
Does anyone have any idea what else I should try?
Any help is greatly appreciated.
|
|
|
04-26-2006, 05:53 PM
|
#2
|
Member
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595
Rep:
|
First, you want only ONE installation of gtkglext-1.0 on your system. Choose one and dump the other one.
Then, make sure the environment variable PKG_CONFIG_PATH has the proper directories listed in it.
Lastly, look in "config.log" to find out why the check for GtkGLExt failed. It might not be related to pkgconfig at all. You could post your config.log here for us to see, if you're not comfortable looking at it yourself. config.log will be in the same directory where you ran your configure command. Also, post the actual configure command you typed when you got the above error.
Peace...
|
|
|
04-26-2006, 09:28 PM
|
#3
|
Member
Registered: Jun 2005
Posts: 34
Original Poster
Rep:
|
Allright, I only have one library installed.
In GTKglext-1.2.0 directory, I ran ./configure --prefix=/usr
Then I ran:
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
Then I went to the GTKglextmm-1.2.0 directory and ran
./configure --prefix=/usr
I then get the same error:
checking for GtkGLExt - version >= 1.0.0... no
*** Could not run GtkGLExt test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GtkGLExt is incorrectly installed.
configure: error: GtkGLExt not found
Looking through the config.log, it seems to be getting an undefined reference to XF86VidModeQueryVersion and XF86VidModeGetModeLine when it tests for gtkglext-1.2.0
There are also some errors like this:
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
This looks like it might have something to do with my openGL drivers. I currently have NVIDIA drivers.
Any ideas?
I'll post the entire config.log if necessary.
Thanks for any help
|
|
|
04-27-2006, 03:29 AM
|
#4
|
Member
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595
Rep:
|
Quote:
Originally Posted by ajk48n
Allright, I only have one library installed.
In GTKglext-1.2.0 directory, I ran ./configure --prefix=/usr
|
Good.
Quote:
Then I ran:
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
|
Bad. You don't want to _clobber_ PKG_CONFIG_PATH, but make sure it's set correctly.
So, open a fresh terminal window and type this command:
$ echo $PKG_CONFIG_PATH
If it already lists /usr/lib/pkgconfig, then you're done and don't need to touch PKG_CONFIG_PATH. If that directory is NOT listed, add it like this:
$ export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig
Quote:
Then I went to the GTKglextmm-1.2.0 directory and ran
./configure --prefix=/usr
I then get the same error:
checking for GtkGLExt - version >= 1.0.0... no
*** Could not run GtkGLExt test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GtkGLExt is incorrectly installed.
configure: error: GtkGLExt not found
|
Ok
Quote:
Looking through the config.log, it seems to be getting an undefined reference to XF86VidModeQueryVersion and XF86VidModeGetModeLine when it tests for gtkglext-1.2.0
There are also some errors like this:
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
|
Those aren't errors. That's the test program it tried to compile to test for an installed library.
Quote:
I'll post the entire config.log if necessary.
|
Please do. Also, please post which distro you're using and whether it's a 32-bit or 64-bit Linux system.
Peace...
|
|
|
04-27-2006, 09:22 AM
|
#5
|
Member
Registered: Jun 2005
Posts: 34
Original Poster
Rep:
|
I'm running Slack 10.1 32-bit. I'm running it on dual Opterons, however the kernel is currently compiled for only 1 processor.
Here's the log file:
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by gtkglextmm configure 1.2.0, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ ./configure --prefix=/usr
## --------- ##
## Platform. ##
## --------- ##
hostname = localhost
uname -m = i686
uname -r = 2.4.29
uname -s = Linux
uname -v = #8 Thu Jan 20 16:36:28 PST 2005
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = i686
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/X11R6/bin
PATH: /usr/games
PATH: /opt/www/htdig/bin
PATH: /usr/lib/java/bin
PATH: /usr/lib/java/jre/bin
PATH: /opt/kde/bin
PATH: /usr/lib/qt/bin
PATH: /usr/share/texmf/bin
PATH: .
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1584: checking for a BSD-compatible install
configure:1639: result: /usr/bin/ginstall -c
configure:1650: checking whether build environment is sane
configure:1693: result: yes
configure:1726: checking for gawk
configure:1742: found /usr/bin/gawk
configure:1752: result: gawk
configure:1762: checking whether make sets $(MAKE)
configure:1782: result: yes
configure:1942: checking whether to enable maintainer-specific portions of Makefiles
configure:1951: result: no
configure:1973: checking build system type
configure:1991: result: i686-pc-linux-gnu
configure:1999: checking host system type
configure:2013: result: i686-pc-linux-gnu
configure:2112: checking for gcc
configure:2128: found /usr/bin/gcc
configure:2138: result: gcc
configure:2382: checking for C compiler version
configure:2385: gcc --version </dev/null >&5
gcc (GCC) 3.3.4
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2388: $? = 0
configure:2390: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i486-slackware-linux/3.3.4/specs
Configured with: ../gcc-3.3.4/configure --prefix=/usr --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-checking --with-gnu-ld --verbose --target=i486-slackware-linux --host=i486-slackware-linux
Thread model: posix
gcc version 3.3.4
configure:2393: $? = 0
configure:2395: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:2398: $? = 1
configure:2421: checking for C compiler default output file name
configure:2424: gcc conftest.c >&5
configure:2427: $? = 0
configure:2473: result: a.out
configure:2478: checking whether the C compiler works
configure:2484: ./a.out
configure:2487: $? = 0
configure:2504: result: yes
configure:2511: checking whether we are cross compiling
configure:2513: result: no
configure:2516: checking for suffix of executables
configure:2518: gcc -o conftest conftest.c >&5
configure:2521: $? = 0
configure:2546: result:
configure:2552: checking for suffix of object files
configure:2573: gcc -c conftest.c >&5
configure:2576: $? = 0
configure:2598: result: o
configure:2602: checking whether we are using the GNU C compiler
configure:2626: gcc -c conftest.c >&5
configure:2632: $? = 0
configure:2636: test -z
|| test ! -s conftest.err
configure:2639: $? = 0
configure:2642: test -s conftest.o
configure:2645: $? = 0
configure:2658: result: yes
configure:2664: checking whether gcc accepts -g
configure:2685: gcc -c -g conftest.c >&5
configure:2691: $? = 0
configure:2695: test -z
|| test ! -s conftest.err
configure:2698: $? = 0
configure:2701: test -s conftest.o
configure:2704: $? = 0
configure:2715: result: yes
configure:2732: checking for gcc option to accept ANSI C
configure:2802: gcc -c -g -O2 conftest.c >&5
configure:2808: $? = 0
configure:2812: test -z
|| test ! -s conftest.err
configure:2815: $? = 0
configure:2818: test -s conftest.o
configure:2821: $? = 0
configure:2839: result: none needed
configure:2857: gcc -c -g -O2 conftest.c >&5
conftest.c:2: error: parse error before "me"
configure:2863: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:3007: checking for style of include used by make
configure:3035: result: GNU
configure:3063: checking dependency style of gcc
configure:3146: result: gcc3
configure:3168: checking how to run the C preprocessor
configure:3203: gcc -E conftest.c
configure:3209: $? = 0
configure:3241: gcc -E conftest.c
conftest.c:9:28: ac_nonexistent.h: No such file or directory
configure:3247: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3286: result: gcc -E
configure:3310: gcc -E conftest.c
configure:3316: $? = 0
configure:3348: gcc -E conftest.c
conftest.c:9:28: ac_nonexistent.h: No such file or directory
configure:3354: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3449: checking for g++
configure:3465: found /usr/bin/g++
configure:3475: result: g++
configure:3491: checking for C++ compiler version
configure:3494: g++ --version </dev/null >&5
g++ (GCC) 3.3.4
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3497: $? = 0
configure:3499: g++ -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i486-slackware-linux/3.3.4/specs
Configured with: ../gcc-3.3.4/configure --prefix=/usr --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-checking --with-gnu-ld --verbose --target=i486-slackware-linux --host=i486-slackware-linux
Thread model: posix
gcc version 3.3.4
configure:3502: $? = 0
configure:3504: g++ -V </dev/null >&5
g++: `-V' option must have argument
configure:3507: $? = 1
configure:3510: checking whether we are using the GNU C++ compiler
configure:3534: g++ -c conftest.cc >&5
configure:3540: $? = 0
configure:3544: test -z
|| test ! -s conftest.err
configure:3547: $? = 0
configure:3550: test -s conftest.o
configure:3553: $? = 0
configure:3566: result: yes
configure:3572: checking whether g++ accepts -g
configure:3593: g++ -c -g conftest.cc >&5
configure:3599: $? = 0
configure:3603: test -z
|| test ! -s conftest.err
configure:3606: $? = 0
configure:3609: test -s conftest.o
configure:3612: $? = 0
configure:3623: result: yes
configure:3665: g++ -c -g -O2 conftest.cc >&5
configure:3671: $? = 0
configure:3675: test -z
|| test ! -s conftest.err
configure:3678: $? = 0
configure:3681: test -s conftest.o
configure:3684: $? = 0
configure:3710: g++ -c -g -O2 conftest.cc >&5
conftest.cc: In function `int main()':
conftest.cc:13: error: `exit' undeclared (first use this function)
conftest.cc:13: error: (Each undeclared identifier is reported only once for
each function it appears in.)
configure:3716: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:3665: g++ -c -g -O2 conftest.cc >&5
configure:3671: $? = 0
configure:3675: test -z
|| test ! -s conftest.err
configure:3678: $? = 0
configure:3681: test -s conftest.o
configure:3684: $? = 0
configure:3710: g++ -c -g -O2 conftest.cc >&5
configure:3716: $? = 0
configure:3720: test -z
|| test ! -s conftest.err
configure:3723: $? = 0
configure:3726: test -s conftest.o
configure:3729: $? = 0
configure:3754: checking dependency style of g++
configure:3837: result: gcc3
configure:3859: checking how to run the C++ preprocessor
configure:3890: g++ -E conftest.cc
configure:3896: $? = 0
configure:3928: g++ -E conftest.cc
conftest.cc:12:28: ac_nonexistent.h: No such file or directory
configure:3934: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3973: result: g++ -E
configure:3997: g++ -E conftest.cc
configure:4003: $? = 0
configure:4035: g++ -E conftest.cc
conftest.cc:12:28: ac_nonexistent.h: No such file or directory
configure:4041: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4086: checking for strerror in -lcposix
configure:4116: gcc -o conftest -g -O2 conftest.c -lcposix >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../../i486-slackware-linux/bin/ld: cannot find -lcposix
collect2: ld returned 1 exit status
configure:4122: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
|
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char strerror ();
| int
| main ()
| {
| strerror ();
| ;
| return 0;
| }
configure:4148: result: no
configure:4231: checking for a sed that does not truncate output
configure:4285: result: /usr/bin/sed
configure:4288: checking for egrep
configure:4298: result: grep -E
configure:4314: checking for ld used by gcc
configure:4381: result: /usr/i486-slackware-linux/bin/ld
configure:4390: checking if the linker (/usr/i486-slackware-linux/bin/ld) is GNU ld
configure:4405: result: yes
configure:4410: checking for /usr/i486-slackware-linux/bin/ld option to reload object files
configure:4417: result: -r
configure:4435: checking for BSD-compatible nm
configure:4484: result: /usr/bin/nm -B
configure:4488: checking whether ln -s works
configure:4492: result: yes
configure:4499: checking how to recognise dependent libraries
configure:4675: result: pass_all
configure:5149: checking for ANSI C header files
configure:5174: gcc -c -g -O2 conftest.c >&5
configure:5180: $? = 0
configure:5184: test -z
|| test ! -s conftest.err
configure:5187: $? = 0
configure:5190: test -s conftest.o
configure:5193: $? = 0
configure:5282: gcc -o conftest -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5287: ./conftest
configure:5290: $? = 0
configure:5305: result: yes
configure:5329: checking for sys/types.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for sys/stat.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for stdlib.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for string.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for memory.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for strings.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for inttypes.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for stdint.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5329: checking for unistd.h
configure:5345: gcc -c -g -O2 conftest.c >&5
configure:5351: $? = 0
configure:5355: test -z
|| test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest.o
configure:5364: $? = 0
configure:5375: result: yes
configure:5401: checking dlfcn.h usability
configure:5413: gcc -c -g -O2 conftest.c >&5
configure:5419: $? = 0
configure:5423: test -z
|| test ! -s conftest.err
configure:5426: $? = 0
configure:5429: test -s conftest.o
configure:5432: $? = 0
configure:5442: result: yes
configure:5446: checking dlfcn.h presence
configure:5456: gcc -E conftest.c
configure:5462: $? = 0
configure:5482: result: yes
configure:5517: checking for dlfcn.h
configure:5524: result: yes
configure:5547: checking how to run the C++ preprocessor
configure:5661: result: g++ -E
configure:5685: g++ -E conftest.cc
configure:5691: $? = 0
configure:5723: g++ -E conftest.cc
conftest.cc:23:28: ac_nonexistent.h: No such file or directory
configure:5729: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5826: checking for g77
configure:5842: found /usr/bin/g77
configure:5852: result: g77
configure:5867: checking for Fortran 77 compiler version
configure:5870: g77 --version </dev/null >&5
GNU Fortran (GCC) 3.3.4
Copyright (C) 2002 Free Software Foundation, Inc.
|
|
|
04-27-2006, 09:24 AM
|
#6
|
Member
Registered: Jun 2005
Posts: 34
Original Poster
Rep:
|
configure:5873: $? = 0
configure:5875: g77 -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i486-slackware-linux/3.3.4/specs
Configured with: ../gcc-3.3.4/configure --prefix=/usr --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-checking --with-gnu-ld --verbose --target=i486-slackware-linux --host=i486-slackware-linux
Thread model: posix
gcc version 3.3.4
configure:5878: $? = 0
configure:5880: g77 -V </dev/null >&5
g77: `-V' option must have argument
configure:5883: $? = 1
configure:5891: checking whether we are using the GNU Fortran 77 compiler
configure:5905: g77 -c conftest.F >&5
configure:5911: $? = 0
configure:5915: test -z
|| test ! -s conftest.err
configure:5918: $? = 0
configure:5921: test -s conftest.o
configure:5924: $? = 0
configure:5937: result: yes
configure:5943: checking whether g77 accepts -g
configure:5955: g77 -c -g conftest.f >&5
configure:5961: $? = 0
configure:5965: test -z
|| test ! -s conftest.err
configure:5968: $? = 0
configure:5971: test -s conftest.o
configure:5974: $? = 0
configure:5986: result: yes
configure:6016: checking the maximum length of command line arguments
configure:6125: result: 32768
configure:6136: checking command to parse /usr/bin/nm -B output from gcc object
configure:6241: gcc -c -g -O2 conftest.c >&5
configure:6244: $? = 0
configure:6248: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6251: $? = 0
configure:6303: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
configure:6306: $? = 0
configure:6344: result: ok
configure:6348: checking for objdir
configure:6363: result: .libs
configure:6453: checking for ar
configure:6469: found /usr/bin/ar
configure:6480: result: ar
configure:6533: checking for ranlib
configure:6549: found /usr/bin/ranlib
configure:6560: result: ranlib
configure:6613: checking for strip
configure:6629: found /usr/bin/strip
configure:6640: result: strip
configure:6863: checking for correct ltmain.sh version
configure:6913: result: yes
configure:6973: checking if gcc supports -fno-rtti -fno-exceptions
configure:6991: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: "-fno-rtti" is valid for C++ but not for C/ObjC
configure:6995: $? = 0
configure:7008: result: no
configure:7023: checking for gcc option to produce PIC
configure:7233: result: -fPIC
configure:7241: checking if gcc PIC flag -fPIC works
configure:7259: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5
configure:7263: $? = 0
configure:7276: result: yes
configure:7304: checking if gcc static flag -static works
configure:7332: result: yes
configure:7342: checking if gcc supports -c -o file.o
configure:7363: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:7367: $? = 0
configure:7389: result: yes
configure:7415: checking whether the gcc linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:8373: result: yes
configure:8394: checking whether -lc should be explicitly linked in
configure:8399: gcc -c -g -O2 conftest.c >&5
configure:8402: $? = 0
configure:8417: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:8420: $? = 0
configure:8432: result: no
configure:8440: checking dynamic linker characteristics
configure:9065: result: GNU/Linux ld.so
configure:9074: checking how to hardcode library paths into programs
configure:9099: result: immediate
configure:9113: checking whether stripping libraries is possible
configure:9118: result: yes
configure:9952: checking if libtool supports shared libraries
configure:9954: result: yes
configure:9957: checking whether to build shared libraries
configure:9978: result: yes
configure:9981: checking whether to build static libraries
configure:9985: result: yes
configure:10077: creating libtool
configure:10665: checking for ld used by g++
configure:10732: result: /usr/i486-slackware-linux/bin/ld
configure:10741: checking if the linker (/usr/i486-slackware-linux/bin/ld) is GNU ld
configure:10756: result: yes
configure:10807: checking whether the g++ linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:11745: result: yes
configure:11763: g++ -c -g -O2 conftest.cpp >&5
configure:11766: $? = 0
configure:11885: checking for g++ option to produce PIC
configure:12159: result: -fPIC
configure:12167: checking if g++ PIC flag -fPIC works
configure:12185: g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5
configure:12189: $? = 0
configure:12202: result: yes
configure:12230: checking if g++ static flag -static works
configure:12258: result: yes
configure:12268: checking if g++ supports -c -o file.o
configure:12289: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:12293: $? = 0
configure:12315: result: yes
configure:12341: checking whether the g++ linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:12366: result: yes
configure:12433: checking dynamic linker characteristics
configure:13058: result: GNU/Linux ld.so
configure:13067: checking how to hardcode library paths into programs
configure:13092: result: immediate
configure:13618: checking if libtool supports shared libraries
configure:13620: result: yes
configure:13623: checking whether to build shared libraries
configure:13643: result: yes
configure:13646: checking whether to build static libraries
configure:13650: result: yes
configure:13660: checking for g77 option to produce PIC
configure:13870: result: -fPIC
configure:13878: checking if g77 PIC flag -fPIC works
configure:13896: g77 -c -g -O2 -fPIC conftest.f >&5
configure:13900: $? = 0
configure:13913: result: yes
configure:13941: checking if g77 static flag -static works
configure:13969: result: yes
configure:13979: checking if g77 supports -c -o file.o
configure:14000: g77 -c -g -O2 -o out/conftest2.o conftest.f >&5
configure:14004: $? = 0
configure:14026: result: yes
configure:14052: checking whether the g77 linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:14990: result: yes
configure:15057: checking dynamic linker characteristics
configure:15682: result: GNU/Linux ld.so
configure:15691: checking how to hardcode library paths into programs
configure:15716: result: immediate
configure:19318: checking for some Win32 platform
configure:19327: result: no
configure:19342: checking for native Win32
configure:19352: result: no
configure:19394: checking whether build environment is sane
configure:19437: result: yes
configure:19444: checking for gcc option to accept ANSI C
configure:19507: gcc -c -g -O2 conftest.c >&5
configure:19513: $? = 0
configure:19517: test -z
|| test ! -s conftest.err
configure:19520: $? = 0
configure:19523: test -s conftest.o
configure:19526: $? = 0
configure:19541: result: none needed
configure:19565: checking for a BSD-compatible install
configure:19620: result: /usr/bin/ginstall -c
configure:19631: checking whether make sets $(MAKE)
configure:19651: result: yes
configure:19660: checking whether ln -s works
configure:19664: result: yes
configure:19675: checking for gawk
configure:19701: result: gawk
configure:19717: checking for gm4
configure:19746: result: no
configure:19717: checking for m4
configure:19733: found /usr/bin/m4
configure:19743: result: m4
configure:19756: checking whether m4 is GNU m4
configure:19759: result: yes
configure:19776: checking whether make is GNU Make
configure:19779: result: yes
configure:19804: checking for compiler warning flags to use
configure:19849: result: -Wall
configure:19965: checking for pkg-config
configure:19983: found /usr/bin/pkg-config
configure:19995: result: /usr/bin/pkg-config
configure:20010: checking pkg-config is at least version 0.9.0
configure:20013: result: yes
configure:20024: checking for BASE_DEPENDENCIES
configure:20032: $PKG_CONFIG --exists --print-errors "gtkglext-1.0 >= 1.0.0 gdkglext-1.0 >= 1.0.0 gtkmm-2.4 >= 2.4.0 gdkmm-2.4 >= 2.4.0 pangomm-1.4 >= 2.4.0 "
configure:20035: $? = 0
configure:20050: $PKG_CONFIG --exists --print-errors "gtkglext-1.0 >= 1.0.0 gdkglext-1.0 >= 1.0.0 gtkmm-2.4 >= 2.4.0 gdkmm-2.4 >= 2.4.0 pangomm-1.4 >= 2.4.0 "
configure:20053: $? = 0
configure:20129: result: yes
configure:20160: checking for pkg-config
configure:20191: result: /usr/bin/pkg-config
configure:20212: checking for GtkGLExt - version >= 1.0.0
configure:20336: gcc -o conftest -g -O2 -I/usr/include/gtkglext-1.0 -I/usr/lib/gtkglext-1.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 conftest.c -Wl,--export-dynamic -L/usr/X11/lib -lgtkglext-x11-1.0 -lgdkglext-x11-1.0 -lGLU -lGL -lpthread -lXmu -lXt -lSM -lICE -lgtk-x11-2.0 -lpangox-1.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../libgdkglext-x11-1.0.so: undefined reference to `XF86VidModeQueryVersion'
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../libgdkglext-x11-1.0.so: undefined reference to `XF86VidModeGetModeLine'
collect2: ld returned 1 exit status
configure:20339: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
|
| #include <gtk/gtk.h>
| #include <gtk/gtkgl.h>
| #include <stdio.h>
| #include <stdlib.h>
|
| int
| main ()
| {
| int major, minor, micro;
| char *tmp_version;
|
| system ("touch conf.gtkgltest");
|
| /* HP/UX 9 (%@#!) writes to sscanf strings */
| tmp_version = g_strdup ("1.0.0");
| if (sscanf (tmp_version, "%d.%d.%d", &major, &minor, µ) != 3)
| {
| printf ("%s, bad version string\n", "1.0.0");
| exit (1);
| }
|
| if ((gtkglext_major_version != 1) ||
| (gtkglext_minor_version != 2) ||
| (gtkglext_micro_version != 0))
| {
| printf ("\n*** 'pkg-config --modversion gtkglext-1.0' returned %d.%d.%d, but GtkGLExt\n",
| 1, 2, 0);
| printf ("*** library %d.%d.%d was found!\n",
| gtkglext_major_version, gtkglext_minor_version, gtkglext_micro_version);
| printf ("***\n");
| printf ("*** If pkg-config was correct, then it is best to remove the old version\n");
| printf ("*** of GtkGLExt. You may also be able to fix the error by modifying your\n");
| printf ("*** LD_LIBRARY_PATH enviroment variable, or by editing /etc/ld.so.conf.\n");
| printf ("*** Make sure you have run ldconfig if that is required on your system.\n");
| printf ("***\n");
| printf ("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
| printf ("*** to point to the correct configuration files.\n");
| }
| else if ((gtkglext_major_version != GTKGLEXT_MAJOR_VERSION) ||
| (gtkglext_minor_version != GTKGLEXT_MINOR_VERSION) ||
| (gtkglext_micro_version != GTKGLEXT_MICRO_VERSION))
| {
| printf ("\n*** GtkGLExt header files (version %d.%d.%d) do not match library (version %d.%d.%d).\n",
| GTKGLEXT_MAJOR_VERSION, GTKGLEXT_MINOR_VERSION, GTKGLEXT_MICRO_VERSION,
| gtkglext_major_version, gtkglext_minor_version, gtkglext_micro_version);
| }
| else
| {
| if ((gtkglext_major_version > major) ||
| ((gtkglext_major_version == major) && (gtkglext_minor_version > minor)) ||
| ((gtkglext_major_version == major) && (gtkglext_minor_version == minor) && (gtkglext_micro_version >= micro)))
| {
| return 0;
| }
| else
| {
| printf ("\n*** An old version of GtkGLExt library (%d.%d.%d) was found.\n",
| gtkglext_major_version, gtkglext_minor_version, gtkglext_micro_version);
| printf ("*** You need a version of GtkGLExt newer than %d.%d.%d. The latest version of\n",
| major, minor, micro);
| printf ("*** GtkGLExt is always available from http://gtkglext.sourceforge.net/.\n");
| printf ("***\n");
| printf ("*** If you have already installed a sufficiently new version, this error\n");
| printf ("*** probably means that the wrong copy of the pkg-config shell script is\n");
| printf ("*** being found. The easiest way to fix this is to remove the old version\n");
| printf ("*** of GtkGLExt, but you can also set the PKG_CONFIG environment to point\n");
| printf ("*** to the correct copy of pkg-config. (In this case, you will have to\n");
| printf ("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
| printf ("*** so that the correct libraries are found at run-time)\n");
| }
| }
| return 1;
| }
|
configure:20366: result: no
configure:20400: gcc -o conftest -g -O2 -I/usr/include/gtkglext-1.0 -I/usr/lib/gtkglext-1.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 conftest.c -Wl,--export-dynamic -L/usr/X11/lib -lgtkglext-x11-1.0 -lgdkglext-x11-1.0 -lGLU -lGL -lpthread -lXmu -lXt -lSM -lICE -lgtk-x11-2.0 -lpangox-1.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../libgdkglext-x11-1.0.so: undefined reference to `XF86VidModeQueryVersion'
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../libgdkglext-x11-1.0.so: undefined reference to `XF86VidModeGetModeLine'
collect2: ld returned 1 exit status
configure:20406: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "gtkglextmm"
| #define PACKAGE_TARNAME "gtkglextmm"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "gtkglextmm 1.2.0"
| #define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
|
| #include <gtk/gtk.h>
| #include <gtk/gtkgl.h>
| #include <stdio.h>
|
| int
| main ()
| {
| return ((gtkglext_major_version) || (gtkglext_minor_version) || (gtkglext_micro_version));
| ;
| return 0;
| }
configure:20445: error: GtkGLExt not found
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_BASE_DEPENDENCIES_CFLAGS_set=
ac_cv_env_BASE_DEPENDENCIES_CFLAGS_value=
ac_cv_env_BASE_DEPENDENCIES_LIBS_set=
ac_cv_env_BASE_DEPENDENCIES_LIBS_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_f77_compiler_gnu=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_lib_cposix_strerror=no
ac_cv_objext=o
ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/ginstall -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_M4=m4
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_F77=g77
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep='grep -E'
ac_cv_prog_f77_g=yes
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_prog_cc_stdc=
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/i486-slackware-linux/bin/ld
lt_cv_path_LDCXX=/usr/i486-slackware-linux/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_c_o_F77=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=32768
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_prog_compiler_c_o_F77='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
pkg_cv_BASE_DEPENDENCIES_CFLAGS='-I/usr/include/gtkglext-1.0 -I/usr/lib/gtkglext-1.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include '
pkg_cv_BASE_DEPENDENCIES_LIBS='-Wl,--export-dynamic -L/usr/X11/lib -lgtkglext-x11-1.0 -lgdkglext-x11-1.0 -lGLU -lGL -lpthread -lXmu -lXt -lSM -lICE -lpangox-1.0 -lgtkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -latk-1.0 -lgdkmm-2.4 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lcairo -lpangomm-1.4 -lglibmm-2.4 -lpango-1.0 -lsigc-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 '
|
|
|
04-27-2006, 09:24 AM
|
#7
|
Member
Registered: Jun 2005
Posts: 34
Original Poster
Rep:
|
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home/adam/Development/GTKglext/gtkglextmm-1.2.0/missing --run aclocal-1.7 -I ./m4macros'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/adam/Development/GTKglext/gtkglextmm-1.2.0/missing --run tar'
AR='ar'
AS='as'
AUTOCONF='${SHELL} /home/adam/Development/GTKglext/gtkglextmm-1.2.0/missing --run autoconf'
AUTOHEADER='${SHELL} /home/adam/Development/GTKglext/gtkglextmm-1.2.0/missing --run autoheader'
AUTOMAKE='${SHELL} /home/adam/Development/GTKglext/gtkglextmm-1.2.0/missing --run automake-1.7'
AWK='gawk'
BASE_DEPENDENCIES_CFLAGS='-I/usr/include/gtkglext-1.0 -I/usr/lib/gtkglext-1.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include '
BASE_DEPENDENCIES_LIBS='-Wl,--export-dynamic -L/usr/X11/lib -lgtkglext-x11-1.0 -lgdkglext-x11-1.0 -lGLU -lGL -lpthread -lXmu -lXt -lSM -lICE -lpangox-1.0 -lgtkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -latk-1.0 -lgdkmm-2.4 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lcairo -lpangomm-1.4 -lglibmm-2.4 -lpango-1.0 -lsigc-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 '
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2 -Wall'
CYGPATH_W='echo'
DEFS=''
DEPDIR='.deps'
DLLTOOL='dlltool'
DOT_PATH=''
DOXYGEN_PATH=''
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
ENABLE_DOXYGEN_DOC_FALSE=''
ENABLE_DOXYGEN_DOC_TRUE=''
EXEEXT=''
F77='g77'
FFLAGS='-g -O2'
GDKGLEXTMM_DEP_CFLAGS=''
GDKGLEXTMM_DEP_LIBS=''
GDKGLEXTMM_EXTRA_CFLAGS=''
GDKGLEXTMM_EXTRA_LIBS=''
GDKGLEXTMM_MULTIHEAD_SUPPORT=''
GDKGLEXTMM_PACKAGES=''
GDKMM_INCLUDE_PATH=''
GLIBMM_INCLUDE_PATH=''
GMMPROC=''
GMMPROC_DIR=''
GTKGLEXTMM_API_MAJOR_VERSION='1'
GTKGLEXTMM_API_MINOR_VERSION='2'
GTKGLEXTMM_API_VERSION='1.2'
GTKGLEXTMM_BINARY_AGE='0'
GTKGLEXTMM_DEP_CFLAGS=''
GTKGLEXTMM_DEP_LIBS=''
GTKGLEXTMM_EXTRA_CFLAGS=''
GTKGLEXTMM_EXTRA_LIBS=''
GTKGLEXTMM_INTERFACE_AGE='0'
GTKGLEXTMM_MAJOR_VERSION='1'
GTKGLEXTMM_MICRO_VERSION='0'
GTKGLEXTMM_MINOR_VERSION='2'
GTKGLEXTMM_PACKAGES=''
GTKGLEXTMM_VERSION='1.2.0'
GTKGLEXT_CFLAGS=''
GTKGLEXT_LIBS=''
GTKGLEXT_REQUIRED_VERSION='1.0.0'
GTKMM_INCLUDE_PATH=''
HAVE_DOT=''
HTML_DIR=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIB_MJR='1'
LIB_MNR='2'
LN_S='ln -s'
LTLIBOBJS=''
LT_AGE='0'
LT_CURRENT='0'
LT_CURRENT_MINUS_AGE='0'
LT_RELEASE='1.2'
LT_REVISION='0'
M4='m4'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='${SHELL} /home/adam/Development/GTKglext/gtkglextmm-1.2.0/missing --run makeinfo'
MULTIHEAD_SUPPORT_FALSE=''
MULTIHEAD_SUPPORT_TRUE=''
OBJDUMP='objdump'
OBJEXT='o'
OS_WIN32_FALSE=''
OS_WIN32_TRUE='#'
PACKAGE='gtkglextmm'
PACKAGE_BUGREPORT='gtkglext-develop@lists.sourceforge.net'
PACKAGE_NAME='gtkglextmm'
PACKAGE_STRING='gtkglextmm 1.2.0'
PACKAGE_TARNAME='gtkglextmm'
PACKAGE_VERSION='1.2.0'
PANGOMM_INCLUDE_PATH=''
PATH_SEPARATOR=':'
PERL_PATH=''
PKG_CONFIG='/usr/bin/pkg-config'
PLATFORM_WIN32_FALSE=''
PLATFORM_WIN32_TRUE='#'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
VERSION='1.2.0'
WIN32_LD_EXPORT_ALL_SYMBOLS=''
ac_ct_AR='ar'
ac_ct_AS=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DLLTOOL=''
ac_ct_F77='g77'
ac_ct_OBJDUMP=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
ac_pt_PKG_CONFIG='/usr/bin/pkg-config'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${prefix}/share'
exec_prefix='NONE'
gdkglextmm_targetlib='libgdkglextmm-x11-1.2.la'
gdktarget='x11'
gtkglextmm_targetlib='libgtkglextmm-x11-1.2.la'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/home/adam/Development/GTKglext/gtkglextmm-1.2.0/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
prefix='/usr'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define HAVE_DLFCN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define PACKAGE_BUGREPORT "gtkglext-develop@lists.sourceforge.net"
#define PACKAGE_NAME "gtkglextmm"
#define PACKAGE_STRING "gtkglextmm 1.2.0"
#define PACKAGE_TARNAME "gtkglextmm"
#define PACKAGE_VERSION "1.2.0"
#define STDC_HEADERS 1
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;
configure: exit 1
Again, thanks for all the help
|
|
|
04-27-2006, 11:06 AM
|
#8
|
Member
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595
Rep:
|
Thanks for posting that.
Here is the problem:
Code:
configure:20212: checking for GtkGLExt - version >= 1.0.0
configure:20336: gcc -o conftest -g -O2 -I/usr/include/gtkglext-1.0 -I/usr/lib/gtkglext-1.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 conftest.c -Wl,--export-dynamic -L/usr/X11/lib -lgtkglext-x11-1.0 -lgdkglext-x11-1.0 -lGLU -lGL -lpthread -lXmu -lXt -lSM -lICE -lgtk-x11-2.0 -lpangox-1.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../libgdkglext-x11-1.0.so: undefined reference to `XF86VidModeQueryVersion'
/usr/lib/gcc-lib/i486-slackware-linux/3.3.4/../../../libgdkglext-x11-1.0.so: undefined reference to `XF86VidModeGetModeLine'
collect2: ld returned 1 exit status
XF86VidModeQueryVersion should be defined in /usr/X11R6/lib/libXxf86vm.so but for some reason, there isn't a "-lXxf86vm" linker option being passed to gcc, hence the linker error. Why this is happening, I have no idea. You can see if there is a gtkglext mailing list that might discuss this build issue. Are you building the latest version of gtkglext?
One thing you can try is this:
$ LDFLAGS="-lXxf86vm" ./configure --prefix=/usr
and see if that helps.
Peace...
|
|
|
04-28-2006, 02:22 AM
|
#9
|
Member
Registered: Jun 2005
Posts: 34
Original Poster
Rep:
|
thanks for your help
i'll let you know if i can get it to work
|
|
|
All times are GMT -5. The time now is 04:58 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|