discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] Test reports needed for release 3.0rc1 tarball


From: Michael Dickens
Subject: Re: [Discuss-gnuradio] Test reports needed for release 3.0rc1 tarball
Date: Tue, 3 Oct 2006 19:22:34 -0400

gr-video-sdl requires library sdl, not found.

The configure script will say this for any reason the SDL test fails, so
it should probably say 'not found or failed compilation test' or
something like that to be more accurate.

Not sure if it helps, but here's the relevant output from config.log.

configure:33616: checking for sdl-config
configure:33634: found /opt/local/bin/sdl-config
configure:33647: result: /opt/local/bin/sdl-config
configure:33656: checking for SDL - version >= 1.2.0
configure:33751: gcc -o conftest -g -O2 -Wall -I/opt/local/include/ SDL -D_GNU_SOURCE=1 -D_THREAD_SAFE -L/opt/local/lib conftest.c -L/ opt/local/lib -lSDLmain -lSDL -Wl,-framework,Cocoa >&5
configure:33754: $? = 0
configure:33760: ./conftest
kCGErrorRangeCheck : Window Server communications from outside of session allowed for root and console user only INIT_Processeses(), could not establish the default connection to the WindowServer../configure: line 1: 3313 Abort trap ./ conftest$ac_exeext
configure:33763: $? = 134
configure: program exited with status 134
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "gnuradio"
| #define VERSION "3.0rc1"
| #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
| #define HAVE_PYTHON_H 1
| #define OMNITHREAD_POSIX 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_NANOSLEEP 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SHM_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_TIME_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SCHED_H 1
| #define TIME_WITH_SYS_TIME 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define PROTOTYPES 1
| #define __PROTOTYPES 1
| #define HAVE_VPRINTF 1
| #define HAVE_MMAP 1
| #define HAVE_SELECT 1
| #define HAVE_SOCKET 1
| #define HAVE_STRCSPN 1
| #define HAVE_STRERROR 1
| #define HAVE_STRSPN 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_SYSCONF 1
| #define HAVE_SNPRINTF 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_NANOSLEEP 1
| #define HAVE_MODF 1
| #define HAVE_SQRT 1
| #define HAVE_SINF 1
| #define HAVE_COSF 1
| #define HAVE_TRUNC 1
| #define HAVE_SHM_OPEN 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_GETOPT 1
| #define HAVE_USLEEP 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_NANOSLEEP 1
| #define HAVE_RAND 1
| #define HAVE_SRAND 1
| #define HAVE_RANDOM 1
| #define HAVE_SRANDOM 1
| #define HAVE_SLEEP 1
| #define HAVE_SIGACTION 1
| #define HAVE_STRUCT_TIMEZONE 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_SSIZE_T 1
| #define HAVE_GETOPT 1
| #define HAVE_USLEEP 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_MKSTEMP 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_GETRUSAGE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SNPRINTF 1
| #define HAVE_USB_H 1
| #define HAVE_AUDIOUNIT_AUDIOUNIT_H 1
| #define HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H 1
| /* end confdefs.h.  */
|
| #include <stdio.h>
| #include <stdlib.h>
| #include <string.h>
| #include "SDL.h"
|
| char*
| my_strdup (char *str)
| {
|   char *new_str;
|
|   if (str)
|     {
|       new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
|       strcpy (new_str, str);
|     }
|   else
|     new_str = NULL;
|
|   return new_str;
| }
|
| int main (int argc, char *argv[])
| {
|   int major, minor, micro;
|   char *tmp_version;
|
|   /* This hangs on some systems (?)
|   system ("touch conf.sdltest");
|   */
|   { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); }
|
|   /* HP/UX 9 (address@hidden) writes to sscanf strings */
|   tmp_version = my_strdup("1.2.0");
|   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
|      printf("%s, bad version string\n", "1.2.0");
|      exit(1);
|    }
|
|    if ((1 > major) ||
|       ((1 == major) && (2 > minor)) ||
|       ((1 == major) && (2 == minor) && (11 >= micro)))
|     {
|       return 0;
|     }
|   else
|     {
| printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", 1, 2, 11); | printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro);
|       printf("*** best to upgrade to the required version.\n");
| printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); | printf("*** to point to the correct copy of sdl-config, and remove the file\n");
|       printf("*** config.cache before re-running configure\n");
|       return 1;
|     }
| }
|
|
configure:33787: result: no
configure:33830: gcc -o conftest -g -O2 -Wall -I/opt/local/include/ SDL -D_GNU_SOURCE=1 -D_THREAD_SAFE -L/opt/local/lib conftest.c -L/ opt/local/lib -lSDLmain -lSDL -Wl,-framework,Cocoa >&5
configure:33836: $? = 0
configure:33843: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:33846: $? = 0
configure:33853: test -s conftest
configure:33856: $? = 0
configure:33885: result: gr-video-sdl requires library sdl, not found.
configure:33901: result: Not building component gr-video-sdl.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]