Changeset ffa693e8bdac429c229fa679e64a8bd6cd6af15f
- Timestamp:
- 01/06/01 08:23:32 (8 years ago)
- git-parent:
- Files:
-
- INSTALL (modified) (1 diff)
- Makefile.in (modified) (4 diffs)
- configure (modified) (66 diffs)
- configure.in (modified) (6 diffs)
- include/common.h (modified) (2 diffs)
- include/defs.h.in (modified) (3 diffs)
- src/interface/intf_msg.c (modified) (3 diffs)
- src/misc/modules.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
INSTALL
rabcabca rffa693e 7 7 A typical way to configure the vlc is : 8 8 9 ./configure --prefix=/usr --enable- mmx --enable-gnome9 ./configure --prefix=/usr --enable-gnome --with-sdl 10 10 11 11 For a full compilation, you may try : 12 12 13 ./configure --prefix=/usr --enable- mmx --enable-gnome --enable-fb \14 -- enable-glide --enable-ggi --enable-sdl --enable-esd --enable-alsa13 ./configure --prefix=/usr --enable-gnome --enable-fb \ 14 --with-glide --with-ggi --with-sdl --enable-esd --enable-alsa 15 15 16 16 See `./configure --help' for more information. Makefile.in
r454454b rffa693e 83 83 84 84 ifneq (,$(findstring solaris,$(SYS))) 85 LIB += -ldl -lsocket -lnsl -lposix4 -lpthread 85 LIB += -ldl -lsocket -lnsl -lposix4 -lpthread -lresolv 86 86 endif 87 87 … … 108 108 ifeq ($(OPTIMS),1) 109 109 CFLAGS += -O6 110 CFLAGS += -ffast-math -funroll-loops -fargument-noalias-global 111 CFLAGS += -funroll-all-loops -fstrict-aliasing 110 CFLAGS += -ffast-math -funroll-loops -funroll-all-loops 112 111 CFLAGS += -fomit-frame-pointer 112 CFLAGS += @BIZARRE_OPTIMS@ 113 113 114 114 # Optimizations for x86 familiy … … 439 439 @echo "Sources are in ../${SNAPSHOTDIR}.tar.[gz,bz2]" 440 440 441 plugins: $(PLUGINS:%=lib/%.so) 441 plugins: lib $(PLUGINS:%=lib/%.so) 442 443 lib: 444 mkdir -p lib 442 445 443 446 FORCE: … … 491 494 ln -s ../vlc ./plugins/_APP_ 492 495 else 493 $(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic -rdynamic-o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)496 $(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic @DYNAMIC_FLAG@ -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) 494 497 endif 495 498 configure
r454454b rffa693e 25 25 --disable-dummy dummy audio and video support (default enabled)" 26 26 ac_help="$ac_help 27 --disable-null Null module (default enabled)" 28 ac_help="$ac_help 27 29 --disable-dsp Linux /dev/dsp support (default enabled)" 28 30 ac_help="$ac_help … … 36 38 ac_help="$ac_help 37 39 --with-glide[=name] Glide (3dfx) support (default disabled)" 38 ac_help="$ac_help39 --enable-null Null plugin (default disabled)"40 40 ac_help="$ac_help 41 41 --enable-gnome Gnome support (default disabled)" … … 1765 1765 fi 1766 1766 1767 for ac_hdr in unistd.h 1768 do 1769 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1770 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1771 echo "configure:1772: checking for $ac_hdr" >&5 1772 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1773 echo $ac_n "(cached) $ac_c" 1>&6 1774 else 1775 cat > conftest.$ac_ext <<EOF 1776 #line 1777 "configure" 1777 #include "confdefs.h" 1778 #include <$ac_hdr> 1779 EOF 1780 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1781 { (eval echo configure:1782: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1782 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1783 if test -z "$ac_err"; then 1784 rm -rf conftest* 1785 eval "ac_cv_header_$ac_safe=yes" 1786 else 1787 echo "$ac_err" >&5 1788 echo "configure: failed program was:" >&5 1789 cat conftest.$ac_ext >&5 1790 rm -rf conftest* 1791 eval "ac_cv_header_$ac_safe=no" 1792 fi 1793 rm -f conftest* 1794 fi 1795 if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then 1796 echo "$ac_t""yes" 1>&6 1797 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` 1798 cat >> confdefs.h <<EOF 1799 #define $ac_tr_hdr 1 1800 EOF 1801 1802 else 1803 echo "$ac_t""no" 1>&6 1804 fi 1805 done 1806 1807 for ac_func in getpagesize 1767 for ac_func in vasprintf 1808 1768 do 1809 1769 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1810 echo "configure:1 811: checking for $ac_func" >&51770 echo "configure:1771: checking for $ac_func" >&5 1811 1771 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1812 1772 echo $ac_n "(cached) $ac_c" 1>&6 1813 1773 else 1814 1774 cat > conftest.$ac_ext <<EOF 1815 #line 1 816 "configure"1775 #line 1776 "configure" 1816 1776 #include "confdefs.h" 1817 1777 /* System header to define __stub macros and hopefully few prototypes, … … 1836 1796 ; return 0; } 1837 1797 EOF 1838 if { (eval echo configure:1 839: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1798 if { (eval echo configure:1799: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1839 1799 rm -rf conftest* 1840 1800 eval "ac_cv_func_$ac_func=yes" … … 1860 1820 done 1861 1821 1822 for ac_hdr in unistd.h 1823 do 1824 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1825 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1826 echo "configure:1827: checking for $ac_hdr" >&5 1827 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1828 echo $ac_n "(cached) $ac_c" 1>&6 1829 else 1830 cat > conftest.$ac_ext <<EOF 1831 #line 1832 "configure" 1832 #include "confdefs.h" 1833 #include <$ac_hdr> 1834 EOF 1835 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1836 { (eval echo configure:1837: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1837 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1838 if test -z "$ac_err"; then 1839 rm -rf conftest* 1840 eval "ac_cv_header_$ac_safe=yes" 1841 else 1842 echo "$ac_err" >&5 1843 echo "configure: failed program was:" >&5 1844 cat conftest.$ac_ext >&5 1845 rm -rf conftest* 1846 eval "ac_cv_header_$ac_safe=no" 1847 fi 1848 rm -f conftest* 1849 fi 1850 if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then 1851 echo "$ac_t""yes" 1>&6 1852 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` 1853 cat >> confdefs.h <<EOF 1854 #define $ac_tr_hdr 1 1855 EOF 1856 1857 else 1858 echo "$ac_t""no" 1>&6 1859 fi 1860 done 1861 1862 for ac_func in getpagesize 1863 do 1864 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1865 echo "configure:1866: checking for $ac_func" >&5 1866 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1867 echo $ac_n "(cached) $ac_c" 1>&6 1868 else 1869 cat > conftest.$ac_ext <<EOF 1870 #line 1871 "configure" 1871 #include "confdefs.h" 1872 /* System header to define __stub macros and hopefully few prototypes, 1873 which can conflict with char $ac_func(); below. */ 1874 #include <assert.h> 1875 /* Override any gcc2 internal prototype to avoid an error. */ 1876 /* We use char because int might match the return type of a gcc2 1877 builtin and then its argument prototype would still apply. */ 1878 char $ac_func(); 1879 1880 int main() { 1881 1882 /* The GNU C library defines this for functions which it implements 1883 to always fail with ENOSYS. Some functions are actually named 1884 something starting with __ and the normal name is an alias. */ 1885 #if defined (__stub_$ac_func) || defined (__stub___$ac_func) 1886 choke me 1887 #else 1888 $ac_func(); 1889 #endif 1890 1891 ; return 0; } 1892 EOF 1893 if { (eval echo configure:1894: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1894 rm -rf conftest* 1895 eval "ac_cv_func_$ac_func=yes" 1896 else 1897 echo "configure: failed program was:" >&5 1898 cat conftest.$ac_ext >&5 1899 rm -rf conftest* 1900 eval "ac_cv_func_$ac_func=no" 1901 fi 1902 rm -f conftest* 1903 fi 1904 1905 if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then 1906 echo "$ac_t""yes" 1>&6 1907 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` 1908 cat >> confdefs.h <<EOF 1909 #define $ac_tr_func 1 1910 EOF 1911 1912 else 1913 echo "$ac_t""no" 1>&6 1914 fi 1915 done 1916 1862 1917 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 1863 echo "configure:1 864: checking for working mmap" >&51918 echo "configure:1919: checking for working mmap" >&5 1864 1919 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 1865 1920 echo $ac_n "(cached) $ac_c" 1>&6 … … 1869 1924 else 1870 1925 cat > conftest.$ac_ext <<EOF 1871 #line 1 872"configure"1926 #line 1927 "configure" 1872 1927 #include "confdefs.h" 1873 1928 … … 2012 2067 2013 2068 EOF 2014 if { (eval echo configure:20 15: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2069 if { (eval echo configure:2070: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2015 2070 then 2016 2071 ac_cv_func_mmap_fixed_mapped=yes … … 2034 2089 fi 2035 2090 2036 echo $ac_n "checking for vprintf""... $ac_c" 1>&62037 echo "configure:20 38: checking for vprintf" >&52038 if eval "test \"`echo '$''{'ac_cv_ func_vprintf'+set}'`\" = set"; then2091 echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 2092 echo "configure:2093: checking return type of signal handlers" >&5 2093 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then 2039 2094 echo $ac_n "(cached) $ac_c" 1>&6 2040 2095 else 2041 2096 cat > conftest.$ac_ext <<EOF 2042 #line 2043 "configure" 2043 #include "confdefs.h" 2044 /* System header to define __stub macros and hopefully few prototypes, 2045 which can conflict with char vprintf(); below. */ 2046 #include <assert.h> 2047 /* Override any gcc2 internal prototype to avoid an error. */ 2048 /* We use char because int might match the return type of a gcc2 2049 builtin and then its argument prototype would still apply. */ 2050 char vprintf(); 2051 2052 int main() { 2053 2054 /* The GNU C library defines this for functions which it implements 2055 to always fail with ENOSYS. Some functions are actually named 2056 something starting with __ and the normal name is an alias. */ 2057 #if defined (__stub_vprintf) || defined (__stub___vprintf) 2058 choke me 2059 #else 2060 vprintf(); 2061 #endif 2062 2063 ; return 0; } 2064 EOF 2065 if { (eval echo configure:2066: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2066 rm -rf conftest* 2067 eval "ac_cv_func_vprintf=yes" 2068 else 2069 echo "configure: failed program was:" >&5 2070 cat conftest.$ac_ext >&5 2071 rm -rf conftest* 2072 eval "ac_cv_func_vprintf=no" 2073 fi 2074 rm -f conftest* 2075 fi 2076 2077 if eval "test \"`echo '$ac_cv_func_'vprintf`\" = yes"; then 2078 echo "$ac_t""yes" 1>&6 2079 cat >> confdefs.h <<\EOF 2080 #define HAVE_VPRINTF 1 2081 EOF 2082 2083 else 2084 echo "$ac_t""no" 1>&6 2085 fi 2086 2087 if test "$ac_cv_func_vprintf" != yes; then 2088 echo $ac_n "checking for _doprnt""... $ac_c" 1>&6 2089 echo "configure:2090: checking for _doprnt" >&5 2090 if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then 2091 echo $ac_n "(cached) $ac_c" 1>&6 2092 else 2093 cat > conftest.$ac_ext <<EOF 2094 #line 2095 "configure" 2095 #include "confdefs.h" 2096 /* System header to define __stub macros and hopefully few prototypes, 2097 which can conflict with char _doprnt(); below. */ 2098 #include <assert.h> 2099 /* Override any gcc2 internal prototype to avoid an error. */ 2100 /* We use char because int might match the return type of a gcc2 2101 builtin and then its argument prototype would still apply. */ 2102 char _doprnt(); 2103 2104 int main() { 2105 2106 /* The GNU C library defines this for functions which it implements 2107 to always fail with ENOSYS. Some functions are actually named 2108 something starting with __ and the normal name is an alias. */ 2109 #if defined (__stub__doprnt) || defined (__stub____doprnt) 2110 choke me 2111 #else 2112 _doprnt(); 2113 #endif 2114 2115 ; return 0; } 2116 EOF 2117 if { (eval echo configure:2118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2118 rm -rf conftest* 2119 eval "ac_cv_func__doprnt=yes" 2120 else 2121 echo "configure: failed program was:" >&5 2122 cat conftest.$ac_ext >&5 2123 rm -rf conftest* 2124 eval "ac_cv_func__doprnt=no" 2125 fi 2126 rm -f conftest* 2127 fi 2128 2129 if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then 2130 echo "$ac_t""yes" 1>&6 2131 cat >> confdefs.h <<\EOF 2132 #define HAVE_DOPRNT 1 2133 EOF 2134 2135 else 2136 echo "$ac_t""no" 1>&6 2137 fi 2138 2139 fi 2140 2141 echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 2142 echo "configure:2143: checking return type of signal handlers" >&5 2143 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then 2144 echo $ac_n "(cached) $ac_c" 1>&6 2145 else 2146 cat > conftest.$ac_ext <<EOF 2147 #line 2148 "configure" 2097 #line 2098 "configure" 2148 2098 #include "confdefs.h" 2149 2099 #include <sys/types.h> … … 2162 2112 ; return 0; } 2163 2113 EOF 2164 if { (eval echo configure:21 65: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2114 if { (eval echo configure:2115: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2165 2115 rm -rf conftest* 2166 2116 ac_cv_type_signal=void … … 2181 2131 2182 2132 echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 2183 echo "configure:21 84: checking for dlopen in -ldl" >&52133 echo "configure:2134: checking for dlopen in -ldl" >&5 2184 2134 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 2185 2135 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2189 2139 LIBS="-ldl $LIBS" 2190 2140 cat > conftest.$ac_ext <<EOF 2191 #line 21 92 "configure"2141 #line 2142 "configure" 2192 2142 #include "confdefs.h" 2193 2143 /* Override any gcc2 internal prototype to avoid an error. */ … … 2200 2150 ; return 0; } 2201 2151 EOF 2202 if { (eval echo configure:2 203: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2152 if { (eval echo configure:2153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2203 2153 rm -rf conftest* 2204 2154 eval "ac_cv_lib_$ac_lib_var=yes" … … 2228 2178 2229 2179 echo $ac_n "checking for optarg in -lgnugetopt""... $ac_c" 1>&6 2230 echo "configure:2 231: checking for optarg in -lgnugetopt" >&52180 echo "configure:2181: checking for optarg in -lgnugetopt" >&5 2231 2181 ac_lib_var=`echo gnugetopt'_'optarg | sed 'y%./+-%__p_%'` 2232 2182 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2236 2186 LIBS="-lgnugetopt $LIBS" 2237 2187 cat > conftest.$ac_ext <<EOF 2238 #line 2 239 "configure"2188 #line 2189 "configure" 2239 2189 #include "confdefs.h" 2240 2190 /* Override any gcc2 internal prototype to avoid an error. */ … … 2247 2197 ; return 0; } 2248 2198 EOF 2249 if { (eval echo configure:22 50: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2199 if { (eval echo configure:2200: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2250 2200 rm -rf conftest* 2251 2201 eval "ac_cv_lib_$ac_lib_var=yes" … … 2275 2225 2276 2226 echo $ac_n "checking for _ in -lbe""... $ac_c" 1>&6 2277 echo "configure:22 78: checking for _ in -lbe" >&52227 echo "configure:2228: checking for _ in -lbe" >&5 2278 2228 ac_lib_var=`echo be'_'_ | sed 'y%./+-%__p_%'` 2279 2229 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2283 2233 LIBS="-lbe $LIBS" 2284 2234 cat > conftest.$ac_ext <<EOF 2285 #line 22 86 "configure"2235 #line 2236 "configure" 2286 2236 #include "confdefs.h" 2287 2237 /* Override any gcc2 internal prototype to avoid an error. */ … … 2294 2244 ; return 0; } 2295 2245 EOF 2296 if { (eval echo configure:22 97: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2246 if { (eval echo configure:2247: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2297 2247 rm -rf conftest* 2298 2248 eval "ac_cv_lib_$ac_lib_var=yes" … … 2322 2272 2323 2273 echo $ac_n "checking for _ in -lgame""... $ac_c" 1>&6 2324 echo "configure:2 325: checking for _ in -lgame" >&52274 echo "configure:2275: checking for _ in -lgame" >&5 2325 2275 ac_lib_var=`echo game'_'_ | sed 'y%./+-%__p_%'` 2326 2276 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2330 2280 LIBS="-lgame $LIBS" 2331 2281 cat > conftest.$ac_ext <<EOF 2332 #line 2 333 "configure"2282 #line 2283 "configure" 2333 2283 #include "confdefs.h" 2334 2284 /* Override any gcc2 internal prototype to avoid an error. */ … … 2341 2291 ; return 0; } 2342 2292 EOF 2343 if { (eval echo configure:2 344: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2293 if { (eval echo configure:2294: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2344 2294 rm -rf conftest* 2345 2295 eval "ac_cv_lib_$ac_lib_var=yes" … … 2369 2319 2370 2320 echo $ac_n "checking for _ in -lroot""... $ac_c" 1>&6 2371 echo "configure:23 72: checking for _ in -lroot" >&52321 echo "configure:2322: checking for _ in -lroot" >&5 2372 2322 ac_lib_var=`echo root'_'_ | sed 'y%./+-%__p_%'` 2373 2323 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2377 2327 LIBS="-lroot $LIBS" 2378 2328 cat > conftest.$ac_ext <<EOF 2379 #line 23 80 "configure"2329 #line 2330 "configure" 2380 2330 #include "confdefs.h" 2381 2331 /* Override any gcc2 internal prototype to avoid an error. */ … … 2388 2338 ; return 0; } 2389 2339 EOF 2390 if { (eval echo configure:23 91: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2340 if { (eval echo configure:2341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2391 2341 rm -rf conftest* 2392 2342 eval "ac_cv_lib_$ac_lib_var=yes" … … 2416 2366 2417 2367 echo $ac_n "checking for powl in -lm""... $ac_c" 1>&6 2418 echo "configure:2 419: checking for powl in -lm" >&52368 echo "configure:2369: checking for powl in -lm" >&5 2419 2369 ac_lib_var=`echo m'_'powl | sed 'y%./+-%__p_%'` 2420 2370 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2424 2374 LIBS="-lm $LIBS" 2425 2375 cat > conftest.$ac_ext <<EOF 2426 #line 2 427 "configure"2376 #line 2377 "configure" 2427 2377 #include "confdefs.h" 2428 2378 /* Override any gcc2 internal prototype to avoid an error. */ … … 2435 2385 ; return 0; } 2436 2386 EOF 2437 if { (eval echo configure:2 438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2387 if { (eval echo configure:2388: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2438 2388 rm -rf conftest* 2439 2389 eval "ac_cv_lib_$ac_lib_var=yes" … … 2463 2413 2464 2414 echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 2465 echo "configure:24 66: checking for pthread_create in -lpthread" >&52415 echo "configure:2416: checking for pthread_create in -lpthread" >&5 2466 2416 ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'` 2467 2417 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2471 2421 LIBS="-lpthread $LIBS" 2472 2422 cat > conftest.$ac_ext <<EOF 2473 #line 24 74 "configure"2423 #line 2424 "configure" 2474 2424 #include "confdefs.h" 2475 2425 /* Override any gcc2 internal prototype to avoid an error. */ … … 2482 2432 ; return 0; } 2483 2433 EOF 2484 if { (eval echo configure:24 85: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2434 if { (eval echo configure:2435: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2485 2435 rm -rf conftest* 2486 2436 eval "ac_cv_lib_$ac_lib_var=yes" … … 2510 2460 2511 2461 echo $ac_n "checking for thread_create in -lthreads""... $ac_c" 1>&6 2512 echo "configure:2 513: checking for thread_create in -lthreads" >&52462 echo "configure:2463: checking for thread_create in -lthreads" >&5 2513 2463 ac_lib_var=`echo threads'_'thread_create | sed 'y%./+-%__p_%'` 2514 2464 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2518 2468 LIBS="-lthreads $LIBS" 2519 2469 cat > conftest.$ac_ext <<EOF 2520 #line 2 521 "configure"2470 #line 2471 "configure" 2521 2471 #include "confdefs.h" 2522 2472 /* Override any gcc2 internal prototype to avoid an error. */ … … 2529 2479 ; return 0; } 2530 2480 EOF 2531 if { (eval echo configure:2 532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2481 if { (eval echo configure:2482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2532 2482 rm -rf conftest* 2533 2483 eval "ac_cv_lib_$ac_lib_var=yes" … … 2558 2508 2559 2509 echo $ac_n "checking for getopt_long""... $ac_c" 1>&6 2560 echo "configure:25 61: checking for getopt_long" >&52510 echo "configure:2511: checking for getopt_long" >&5 2561 2511 if eval "test \"`echo '$''{'ac_cv_func_getopt_long'+set}'`\" = set"; then 2562 2512 echo $ac_n "(cached) $ac_c" 1>&6 2563 2513 else 2564 2514 cat > conftest.$ac_ext <<EOF 2565 #line 25 66 "configure"2515 #line 2516 "configure" 2566 2516 #include "confdefs.h" 2567 2517 /* System header to define __stub macros and hopefully few prototypes, … … 2586 2536 ; return 0; } 2587 2537 EOF 2588 if { (eval echo configure:25 89: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2538 if { (eval echo configure:2539: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2589 2539 rm -rf conftest* 2590 2540 eval "ac_cv_func_getopt_long=yes" … … 2613 2563 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2614 2564 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2615 echo "configure:2 616: checking for $ac_hdr" >&52565 echo "configure:2566: checking for $ac_hdr" >&5 2616 2566 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2617 2567 echo $ac_n "(cached) $ac_c" 1>&6 2618 2568 else 2619 2569 cat > conftest.$ac_ext <<EOF 2620 #line 2 621 "configure"2570 #line 2571 "configure" 2621 2571 #include "confdefs.h" 2622 2572 #include <$ac_hdr> 2623 2573 EOF 2624 2574 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2625 { (eval echo configure:2 626: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2575 { (eval echo configure:2576: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2626 2576 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2627 2577 if test -z "$ac_err"; then … … 2653 2603 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2654 2604 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2655 echo "configure:26 56: checking for $ac_hdr" >&52605 echo "configure:2606: checking for $ac_hdr" >&5 2656 2606 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2657 2607 echo $ac_n "(cached) $ac_c" 1>&6 2658 2608 else 2659 2609 cat > conftest.$ac_ext <<EOF 2660 #line 26 61 "configure"2610 #line 2611 "configure" 2661 2611 #include "confdefs.h" 2662 2612 #include <$ac_hdr> 2663 2613 EOF 2664 2614 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2665 { (eval echo configure:26 66: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2615 { (eval echo configure:2616: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2666 2616 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2667 2617 if test -z "$ac_err"; then … … 2693 2643 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2694 2644 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2695 echo "configure:26 96: checking for $ac_hdr" >&52645 echo "configure:2646: checking for $ac_hdr" >&5 2696 2646 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2697 2647 echo $ac_n "(cached) $ac_c" 1>&6 2698 2648 else 2699 2649 cat > conftest.$ac_ext <<EOF 2700 #line 2 701 "configure"2650 #line 2651 "configure" 2701 2651 #include "confdefs.h" 2702 2652 #include <$ac_hdr> 2703 2653 EOF 2704 2654 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2705 { (eval echo configure:2 706: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2655 { (eval echo configure:2656: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2706 2656 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2707 2657 if test -z "$ac_err"; then … … 2733 2683 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2734 2684 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2735 echo "configure:2 736: checking for $ac_hdr" >&52685 echo "configure:2686: checking for $ac_hdr" >&5 2736 2686 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2737 2687 echo $ac_n "(cached) $ac_c" 1>&6 2738 2688 else 2739 2689 cat > conftest.$ac_ext <<EOF 2740 #line 2 741 "configure"2690 #line 2691 "configure" 2741 2691 #include "confdefs.h" 2742 2692 #include <$ac_hdr> 2743 2693 EOF 2744 2694 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2745 { (eval echo configure:2 746: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2695 { (eval echo configure:2696: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2746 2696 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2747 2697 if test -z "$ac_err"; then … … 2773 2723 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2774 2724 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2775 echo "configure:27 76: checking for $ac_hdr" >&52725 echo "configure:2726: checking for $ac_hdr" >&5 2776 2726 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2777 2727 echo $ac_n "(cached) $ac_c" 1>&6 2778 2728 else 2779 2729 cat > conftest.$ac_ext <<EOF 2780 #line 27 81 "configure"2730 #line 2731 "configure" 2781 2731 #include "confdefs.h" 2782 2732 #include <$ac_hdr> 2783 2733 EOF 2784 2734 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2785 { (eval echo configure:27 86: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2735 { (eval echo configure:2736: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2786 2736 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2787 2737 if test -z "$ac_err"; then … … 2813 2763 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2814 2764 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2815 echo "configure:2 816: checking for $ac_hdr" >&52765 echo "configure:2766: checking for $ac_hdr" >&5 2816 2766 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2817 2767 echo $ac_n "(cached) $ac_c" 1>&6 2818 2768 else 2819 2769 cat > conftest.$ac_ext <<EOF 2820 #line 2 821 "configure"2770 #line 2771 "configure" 2821 2771 #include "confdefs.h" 2822 2772 #include <$ac_hdr> 2823 2773 EOF 2824 2774 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2825 { (eval echo configure:2 826: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2775 { (eval echo configure:2776: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2826 2776 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2827 2777 if test -z "$ac_err"; then … … 2853 2803 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2854 2804 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2855 echo "configure:28 56: checking for $ac_hdr" >&52805 echo "configure:2806: checking for $ac_hdr" >&5 2856 2806 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2857 2807 echo $ac_n "(cached) $ac_c" 1>&6 2858 2808 else 2859 2809 cat > conftest.$ac_ext <<EOF 2860 #line 28 61 "configure"2810 #line 2811 "configure" 2861 2811 #include "confdefs.h" 2862 2812 #include <$ac_hdr> 2863 2813 EOF 2864 2814 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2865 { (eval echo configure:28 66: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2815 { (eval echo configure:2816: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2866 2816 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2867 2817 if test -z "$ac_err"; then … … 2893 2843 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2894 2844 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2895 echo "configure:28 96: checking for $ac_hdr" >&52845 echo "configure:2846: checking for $ac_hdr" >&5 2896 2846 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2897 2847 echo $ac_n "(cached) $ac_c" 1>&6 2898 2848 else 2899 2849 cat > conftest.$ac_ext <<EOF 2900 #line 2 901 "configure"2850 #line 2851 "configure" 2901 2851 #include "confdefs.h" 2902 2852 #include <$ac_hdr> 2903 2853 EOF 2904 2854 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2905 { (eval echo configure:2 906: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2855 { (eval echo configure:2856: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2906 2856 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2907 2857 if test -z "$ac_err"; then … … 2934 2884 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2935 2885 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2936 echo "configure:2 937: checking for $ac_hdr" >&52886 echo "configure:2887: checking for $ac_hdr" >&5 2937 2887 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2938 2888 echo $ac_n "(cached) $ac_c" 1>&6 2939 2889 else 2940 2890 cat > conftest.$ac_ext <<EOF 2941 #line 2 942 "configure"2891 #line 2892 "configure" 2942 2892 #include "confdefs.h" 2943 2893 #include <$ac_hdr> 2944 2894 EOF 2945 2895 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2946 { (eval echo configure:2 947: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2896 { (eval echo configure:2897: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2947 2897 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2948 2898 if test -z "$ac_err"; then … … 2972 2922 2973 2923 save_CFLAGS=$CFLAGS 2924 2974 2925 CFLAGS="${CFLAGS} -Wall -Werror" 2975 2926 echo $ac_n "checking for ntohl in sys/param.h""... $ac_c" 1>&6 2976 echo "configure:29 77: checking for ntohl in sys/param.h" >&52927 echo "configure:2928: checking for ntohl in sys/param.h" >&5 2977 2928 cat > conftest.$ac_ext <<EOF 2978 #line 29 79"configure"2929 #line 2930 "configure" 2979 2930 #include "confdefs.h" 2980 2931 #include <sys/param.h> … … 2984 2935 ; return 0; } 2985 2936 EOF 2986 if { (eval echo configure:29 87: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2937 if { (eval echo configure:2938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2987 2938 rm -rf conftest* 2988 2939 cat >> confdefs.h <<\EOF … … 2998 2949 fi 2999 2950 rm -f conftest* 2951 2952 CFLAGS="${CFLAGS} -fargument-noalias-global -fstrict-aliasing" 2953 echo $ac_n "checking if \$CC accepts -fargument-noalias-global -fstrict-aliasing""... $ac_c" 1>&6 2954 echo "configure:2955: checking if \$CC accepts -fargument-noalias-global -fstrict-aliasing" >&5 2955 cat > conftest.$ac_ext <<EOF 2956 #line 2957 "configure" 2957 #include "confdefs.h" 2958 2959 int main() { 2960 2961 ; return 0; } 2962 EOF 2963 if { (eval echo configure:2964: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2964 rm -rf conftest* 2965 BIZARRE_OPTIMS="-fargument-noalias-global -fstrict-aliasing" 2966 echo "$ac_t""yes" 1>&6 2967 else 2968 echo "configure: failed program was:" >&5 2969 cat conftest.$ac_ext >&5 2970 rm -rf conftest* 2971 echo "$ac_t""no" 1>&6 2972 fi 2973 rm -f conftest* 2974 2975 CFLAGS="${CFLAGS} -rdynamic" 2976 echo $ac_n "checking if \$CC accepts -rdynamic""... $ac_c" 1>&6 2977 echo "configure:2978: checking if \$CC accepts -rdynamic" >&5 2978 cat > conftest.$ac_ext <<EOF 2979 #line 2980 "configure" 2980 #include "confdefs.h" 2981 2982 int main() { 2983 2984 ; return 0; } 2985 EOF 2986 if { (eval echo configure:2987: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2987 rm -rf conftest* 2988 DYNAMIC_FLAG="-rdynamic" 2989 echo "$ac_t""yes" 1>&6 2990 else 2991 echo "configure: failed program was:" >&5 2992 cat conftest.$ac_ext >&5 2993 rm -rf conftest* 2994 echo "$ac_t""no" 1>&6 2995 fi 2996 rm -f conftest* 2997 3000 2998 CFLAGS=$save_CFLAGS 3001 2999 3000 echo $ac_n "checking for boolean_t in sys/types.h""... $ac_c" 1>&6 3001 echo "configure:3002: checking for boolean_t in sys/types.h" >&5 3002 cat > conftest.$ac_ext <<EOF 3003 #line 3004 "configure" 3004 #include "confdefs.h" 3005 #include <sys/types.h> 3006 void quux() { boolean_t foo; } 3007 int main() { 3008 3009 ; return 0; } 3010 EOF 3011 if { (eval echo configure:3012: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3012 rm -rf conftest* 3013 cat >> confdefs.h <<\EOF 3014 #define BOOLEAN_T_IN_SYS_TYPES_H 1 3015 EOF 3016 3017 echo "$ac_t""yes" 1>&6 3018 else 3019 echo "configure: failed program was:" >&5 3020 cat conftest.$ac_ext >&5 3021 rm -rf conftest* 3022 echo "$ac_t""no" 1>&6 3023 fi 3024 rm -f conftest* 3025 3002 3026 echo $ac_n "checking for working const""... $ac_c" 1>&6 3003 echo "configure:30 04: checking for working const" >&53027 echo "configure:3028: checking for working const" >&5 3004 3028 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 3005 3029 echo $ac_n "(cached) $ac_c" 1>&6 3006 3030 else 3007 3031 cat > conftest.$ac_ext <<EOF 3008 #line 30 09"configure"3032 #line 3033 "configure" 3009 3033 #include "confdefs.h" 3010 3034 … … 3055 3079 ; return 0; } 3056 3080 EOF 3057 if { (eval echo configure:30 58: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3081 if { (eval echo configure:3082: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3058 3082 rm -rf conftest* 3059 3083 ac_cv_c_const=yes … … 3076 3100 3077 3101 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 3078 echo "configure:3 079: checking for ANSI C header files" >&53102 echo "configure:3103: checking for ANSI C header files" >&5 3079 3103 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 3080 3104 echo $ac_n "(cached) $ac_c" 1>&6 3081 3105 else 3082 3106 cat > conftest.$ac_ext <<EOF 3083 #line 3 084"configure"3107 #line 3108 "configure" 3084 3108 #include "confdefs.h" 3085 3109 #include <stdlib.h> … … 3089 3113 EOF 3090 3114 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3091 { (eval echo configure:3 092: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3115 { (eval echo configure:3116: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3092 3116 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3093 3117 if test -z "$ac_err"; then … … 3106 3130 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 3107 3131 cat > conftest.$ac_ext <<EOF 3108 #line 31 09"configure"3132 #line 3133 "configure" 3109 3133 #include "confdefs.h" 3110 3134 #include <string.h> … … 3124 3148 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 3125 3149 cat > conftest.$ac_ext <<EOF 3126 #line 31 27"configure"3150 #line 3151 "configure" 3127 3151 #include "confdefs.h" 3128 3152 #include <stdlib.h> … … 3145 3169 else 3146 3170 cat > conftest.$ac_ext <<EOF 3147 #line 31 48"configure"3171 #line 3172 "configure" 3148 3172 #include "confdefs.h" 3149 3173 #include <ctype.h> … … 3156 3180 3157 3181 EOF 3158 if { (eval echo configure:31 59: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3182 if { (eval echo configure:3183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3159 3183 then 3160 3184 : … … 3180 3204 3181 3205 echo $ac_n "checking for size_t""... $ac_c" 1>&6 3182 echo "configure:3 183: checking for size_t" >&53206 echo "configure:3207: checking for size_t" >&5 3183 3207 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 3184 3208 echo $ac_n "(cached) $ac_c" 1>&6 3185 3209 else 3186 3210 cat > conftest.$ac_ext <<EOF 3187 #line 3 188"configure"3211 #line 3212 "configure" 3188 3212 #include "confdefs.h" 3189 3213 #include <sys/types.h> … … 3213 3237 3214 3238 echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 3215 echo "configure:32 16: checking whether time.h and sys/time.h may both be included" >&53239 echo "configure:3240: checking whether time.h and sys/time.h may both be included" >&5 3216 3240 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then 3217 3241 echo $ac_n "(cached) $ac_c" 1>&6 3218 3242 else 3219 3243 cat > conftest.$ac_ext <<EOF 3220 #line 32 21"configure"3244 #line 3245 "configure" 3221 3245 #include "confdefs.h" 3222 3246 #include <sys/types.h> … … 3227 3251 ; return 0; } 3228 3252 EOF 3229 if { (eval echo configure:32 30: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3253 if { (eval echo configure:3254: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3230 3254 rm -rf conftest* 3231 3255 ac_cv_header_time=yes … … 3292 3316 # special cases 3293 3317 if test x$host_os = xbeos; then 3294 PLUGINS=${PLUGINS}"dummy beos "3318 PLUGINS=${PLUGINS}"dummy null beos " 3295 3319 3296 3320 else … … 3303 3327 3304 3328 if test x$enable_dummy != xno; then PLUGINS=${PLUGINS}"dummy "; fi 3329 # Check whether --enable-null or --disable-null was given. 3330 if test "${enable_null+set}" = set; then 3331 enableval="$enable_null" 3332 : 3333 fi 3334 3335 if test x$enable_null != xno; then PLUGINS=${PLUGINS}"null "; fi 3305 3336 # Check whether --enable-dsp or --disable-dsp was given. 3306 3337 if test "${enable_dsp+set}" = set; then … … 3358 3389 fi 3359 3390 3360 # Check whether --enable-null or --disable-null was given.3361 if test "${enable_null+set}" = set; then3362 enableval="$enable_null"3363 if test x$enable_null = xyes; then PLUGINS=${PLUGINS}"null "; fi3364 fi3365 3366 3391 # Check whether --enable-gnome or --disable-gnome was given. 3367 3392 if test "${enable_gnome+set}" = set; then … … 3382 3407 if test x$enable_alsa = xyes; then ac_safe=`echo "sys/asoundlib.h" | sed 'y%./+-%__p_%'` 3383 3408 echo $ac_n "checking for sys/asoundlib.h""... $ac_c" 1>&6 3384 echo "configure:3 385: checking for sys/asoundlib.h" >&53409 echo "configure:3410: checking for sys/asoundlib.h" >&5 3385 3410 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3386 3411 echo $ac_n "(cached) $ac_c" 1>&6 3387 3412 else 3388 3413 cat > conftest.$ac_ext <<EOF 3389 #line 3 390"configure"3414 #line 3415 "configure" 3390 3415 #include "confdefs.h" 3391 3416 #include <sys/asoundlib.h> 3392 3417 EOF 3393 3418 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3394 { (eval echo configure:3 395: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3419 { (eval echo configure:3420: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3395 3420 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3396 3421 if test -z "$ac_err"; then … … 3409 3434 echo "$ac_t""yes" 1>&6 3410 3435 echo $ac_n "checking for main in -lasound""... $ac_c" 1>&6 3411 echo "configure:34 12: checking for main in -lasound" >&53436 echo "configure:3437: checking for main in -lasound" >&5 3412 3437 ac_lib_var=`echo asound'_'main | sed 'y%./+-%__p_%'` 3413 3438 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3417 3442 LIBS="-lasound $LIBS" 3418 3443 cat > conftest.$ac_ext <<EOF 3419 #line 34 20"configure"3444 #line 3445 "configure" 3420 3445 #include "confdefs.h" 3421 3446 … … 3424 3449 ; return 0; } 3425 3450 EOF 3426 if { (eval echo configure:34 27: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3451 if { (eval echo configure:3452: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3427 3452 rm -rf conftest* 3428 3453 eval "ac_c
