Error Buddy

Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.

If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.

corestack/ libtasn1-0.2.6/ configure.in [1.6]
001 dnl Process this file with autoconf to produce a configure script.
002 AC_PREREQ(2.50)
003 AC_INIT
004 
005 AC_PREFIX_DEFAULT(/usr/local)
006 
007 AC_CANONICAL_TARGET([])
008 AC_DEFINE_UNQUOTED(T_CPU, "$target_cpu")
009 AC_DEFINE_UNQUOTED(T_VENDOR, "$target_vendor")
010 AC_DEFINE_UNQUOTED(T_OS, "$target_os")
011 
012 dnl libtasn1 Version
013 ASN1_MAJOR_VERSION=0
014 ASN1_MINOR_VERSION=2
015 ASN1_MICRO_VERSION=6
016 ASN1_VERSION=$ASN1_MAJOR_VERSION.$ASN1_MINOR_VERSION.$ASN1_MICRO_VERSION
017 
018 AC_DEFINE_UNQUOTED(ASN1_VERSION, "$ASN1_VERSION")
019 
020 AM_INIT_AUTOMAKE(libtasn1, $ASN1_VERSION)
021 AM_CONFIG_HEADER(config.h)
022 
023 dnl This is the library version
024 ASN1_MOST_RECENT_INTERFACE=2
025 ASN1_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER=$ASN1_MICRO_VERSION
026 ASN1_OLDEST_INTERFACE=2
027 
028 
029 AC_SUBST(ASN1_MAJOR_VERSION)
030 AC_SUBST(ASN1_MINOR_VERSION)
031 AC_SUBST(ASN1_MICRO_VERSION)
032 AC_SUBST(ASN1_VERSION)
033 
034 AC_SUBST(ASN1_MOST_RECENT_INTERFACE)
035 AC_SUBST(ASN1_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER)
036 AC_SUBST(ASN1_OLDEST_INTERFACE)
037 
038 LT_CURRENT=$ASN1_MOST_RECENT_INTERFACE
039 LT_REVISION=$ASN1_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER
040 LT_AGE=`expr $ASN1_MOST_RECENT_INTERFACE - $ASN1_OLDEST_INTERFACE`
041 AC_SUBST(LT_CURRENT)
042 AC_SUBST(LT_REVISION)
043 AC_SUBST(LT_AGE)
044 
045 AC_PROG_CC
046 
047 AC_PROG_YACC
048 
049 AC_PROG_LN_S
050 
051 
052 dnl Checks for programs.
053 AC_PROG_INSTALL
054 AM_MISSING_PROG(PERL,perl,$missing_dir)
055 
056 
057 AC_MSG_RESULT([***
058 *** Detecting compiler options...
059 ])
060 
061 
062 AC_C_CONST
063 AC_C_INLINE
064 
065 
066 AC_MSG_CHECKING([whether C99 macros are supported])
067 AC_TRY_COMPILE(,[ 
068 #define test_mac(...) 
069 int z,y,x;
070 test_mac(x,y,z);
071 return 0;
072 ], 
073 dnl ***** OK
074 AC_DEFINE(C99_MACROS, 1, [C99 macros are supported])
075 AC_MSG_RESULT(yes),
076 dnl ***** NOT FOUND
077 AC_MSG_RESULT(no)
078 AC_MSG_WARN([C99 macros are not supported by your compiler. This may
079 affect compiling.])
080 )
081 
082 
083 if test $ac_cv_c_compiler_gnu != no; then
084 
085         CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wstrict-prototypes"
086 
087         AC_MSG_CHECKING([whether we have GNU assembler])
088         
089         GAS=`as --version < /dev/null|grep GNU`
090         if test "$GAS"; then
091           CFLAGS="${CFLAGS} -pipe"
092           AC_MSG_RESULT(yes)
093         else
094           AC_MSG_RESULT(no)
095         fi
096 fi
097 
098 
099 AC_MSG_RESULT([***
100 *** Detecting C library capabilities...
101 ])
102 
103 AC_HEADER_STDC
104 AC_CHECK_HEADERS(getopt.h unistd.h strings.h inttypes.h stdint.h)
105 AC_CHECK_FUNCS(bzero memset memmove bcopy,,)
106 AC_CHECK_FUNCS(getopt_long)
107 AC_FUNC_ALLOCA
108 
109 
110 AC_MSG_RESULT([***
111 *** Detecting system's parameters...
112 ])
113 
114 AC_C_BIGENDIAN
115 
116 AC_CHECK_SIZEOF(unsigned long long, 8)
117 AC_CHECK_SIZEOF(unsigned long int, 4)
118 AC_CHECK_SIZEOF(unsigned int, 4)
119 AC_CHECK_SIZEOF(unsigned short int, 2)
120 AC_CHECK_SIZEOF(unsigned char, 1)
121 
122 
123 
124 AC_MSG_RESULT([***
125 *** Detecting options for shared libraries...
126 ])
127 AM_PROG_LIBTOOL
128 
129 AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile lib/Makefile \
130 doc/Makefile doc/scripts/Makefile])
131 AC_OUTPUT
132 

Powered by Lucene and the LXR engine.