Changeset ffa693e8bdac429c229fa679e64a8bd6cd6af15f

Show
Ignore:
Timestamp:
01/06/01 08:23:32 (8 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 978765812 +0000
git-parent:

[4542979c0fecaf06caebec3abd6b0060ede2f1d9]

git-author:
Sam Hocevar <sam@videolan.org> 978765812 +0000
Message:

. should compile & run on Solaris with ./configure --disable-dsp

(tested on puma)

. removed most SYS_SOLARIS #ifdef's in favour of more generic tests
. updated example ./configure line in INSTALL file
. now we only load modules that end with ".so"
. null module is compiled by default

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • INSTALL

    rabcabca rffa693e  
    77A typical way to configure the vlc is : 
    88 
    9    ./configure --prefix=/usr --enable-mmx --enable-gnome 
     9   ./configure --prefix=/usr --enable-gnome --with-sdl 
    1010 
    1111For a full compilation, you may try : 
    1212 
    13    ./configure --prefix=/usr --enable-mmx --enable-gnome --enable-fb \ 
    14            --enable-glide --enable-ggi --enable-sdl --enable-esd --enable-alsa 
     13   ./configure --prefix=/usr --enable-gnome --enable-fb \ 
     14           --with-glide --with-ggi --with-sdl --enable-esd --enable-alsa 
    1515 
    1616See `./configure --help' for more information. 
  • Makefile.in

    r454454b rffa693e  
    8383 
    8484ifneq (,$(findstring solaris,$(SYS))) 
    85 LIB += -ldl -lsocket -lnsl -lposix4 -lpthread 
     85LIB += -ldl -lsocket -lnsl -lposix4 -lpthread -lresolv 
    8686endif 
    8787 
     
    108108ifeq ($(OPTIMS),1) 
    109109CFLAGS += -O6 
    110 CFLAGS += -ffast-math -funroll-loops -fargument-noalias-global 
    111 CFLAGS += -funroll-all-loops -fstrict-aliasing 
     110CFLAGS += -ffast-math -funroll-loops -funroll-all-loops 
    112111CFLAGS += -fomit-frame-pointer 
     112CFLAGS += @BIZARRE_OPTIMS@ 
    113113 
    114114# Optimizations for x86 familiy 
     
    439439    @echo "Sources are in ../${SNAPSHOTDIR}.tar.[gz,bz2]" 
    440440 
    441 plugins: $(PLUGINS:%=lib/%.so) 
     441plugins: lib $(PLUGINS:%=lib/%.so) 
     442 
     443lib: 
     444    mkdir -p lib 
    442445 
    443446FORCE: 
     
    491494    ln -s ../vlc ./plugins/_APP_ 
    492495else 
    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)    
    494497endif 
    495498 
  • configure

    r454454b rffa693e  
    2525  --disable-dummy         dummy audio and video support (default enabled)" 
    2626ac_help="$ac_help 
     27  --disable-null          Null module (default enabled)" 
     28ac_help="$ac_help 
    2729  --disable-dsp           Linux /dev/dsp support (default enabled)" 
    2830ac_help="$ac_help 
     
    3638ac_help="$ac_help 
    3739  --with-glide[=name]     Glide (3dfx) support (default disabled)" 
    38 ac_help="$ac_help 
    39   --enable-null           Null plugin (default disabled)" 
    4040ac_help="$ac_help 
    4141  --enable-gnome          Gnome support (default disabled)" 
     
    17651765fi 
    17661766 
    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 
     1767for ac_func in vasprintf 
    18081768do 
    18091769echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    1810 echo "configure:1811: checking for $ac_func" >&5 
     1770echo "configure:1771: checking for $ac_func" >&5 
    18111771if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    18121772  echo $ac_n "(cached) $ac_c" 1>&6 
    18131773else 
    18141774  cat > conftest.$ac_ext <<EOF 
    1815 #line 1816 "configure" 
     1775#line 1776 "configure" 
    18161776#include "confdefs.h" 
    18171777/* System header to define __stub macros and hopefully few prototypes, 
     
    18361796; return 0; } 
    18371797EOF 
    1838 if { (eval echo configure:1839: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     1798if { (eval echo configure:1799: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    18391799  rm -rf conftest* 
    18401800  eval "ac_cv_func_$ac_func=yes" 
     
    18601820done 
    18611821 
     1822for ac_hdr in unistd.h 
     1823do 
     1824ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
     1825echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
     1826echo "configure:1827: checking for $ac_hdr" >&5 
     1827if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
     1828  echo $ac_n "(cached) $ac_c" 1>&6 
     1829else 
     1830  cat > conftest.$ac_ext <<EOF 
     1831#line 1832 "configure" 
     1832#include "confdefs.h" 
     1833#include <$ac_hdr> 
     1834EOF 
     1835ac_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; } 
     1837ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
     1838if test -z "$ac_err"; then 
     1839  rm -rf conftest* 
     1840  eval "ac_cv_header_$ac_safe=yes" 
     1841else 
     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" 
     1847fi 
     1848rm -f conftest* 
     1849fi 
     1850if 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 
     1855EOF 
     1856  
     1857else 
     1858  echo "$ac_t""no" 1>&6 
     1859fi 
     1860done 
     1861 
     1862for ac_func in getpagesize 
     1863do 
     1864echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
     1865echo "configure:1866: checking for $ac_func" >&5 
     1866if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
     1867  echo $ac_n "(cached) $ac_c" 1>&6 
     1868else 
     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.  */ 
     1878char $ac_func(); 
     1879 
     1880int 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) 
     1886choke me 
     1887#else 
     1888$ac_func(); 
     1889#endif 
     1890 
     1891; return 0; } 
     1892EOF 
     1893if { (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" 
     1896else 
     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" 
     1901fi 
     1902rm -f conftest* 
     1903fi 
     1904 
     1905if 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 
     1910EOF 
     1911  
     1912else 
     1913  echo "$ac_t""no" 1>&6 
     1914fi 
     1915done 
     1916 
    18621917echo $ac_n "checking for working mmap""... $ac_c" 1>&6 
    1863 echo "configure:1864: checking for working mmap" >&5 
     1918echo "configure:1919: checking for working mmap" >&5 
    18641919if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 
    18651920  echo $ac_n "(cached) $ac_c" 1>&6 
     
    18691924else 
    18701925  cat > conftest.$ac_ext <<EOF 
    1871 #line 1872 "configure" 
     1926#line 1927 "configure" 
    18721927#include "confdefs.h" 
    18731928 
     
    20122067 
    20132068EOF 
    2014 if { (eval echo configure:2015: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     2069if { (eval echo configure:2070: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    20152070then 
    20162071  ac_cv_func_mmap_fixed_mapped=yes 
     
    20342089fi 
    20352090 
    2036 echo $ac_n "checking for vprintf""... $ac_c" 1>&6 
    2037 echo "configure:2038: checking for vprintf" >&5 
    2038 if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then 
     2091echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 
     2092echo "configure:2093: checking return type of signal handlers" >&5 
     2093if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then 
    20392094  echo $ac_n "(cached) $ac_c" 1>&6 
    20402095else 
    20412096  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" 
    21482098#include "confdefs.h" 
    21492099#include <sys/types.h> 
     
    21622112; return 0; } 
    21632113EOF 
    2164 if { (eval echo configure:2165: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     2114if { (eval echo configure:2115: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    21652115  rm -rf conftest* 
    21662116  ac_cv_type_signal=void 
     
    21812131 
    21822132echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 
    2183 echo "configure:2184: checking for dlopen in -ldl" >&5 
     2133echo "configure:2134: checking for dlopen in -ldl" >&5 
    21842134ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 
    21852135if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    21892139LIBS="-ldl  $LIBS" 
    21902140cat > conftest.$ac_ext <<EOF 
    2191 #line 2192 "configure" 
     2141#line 2142 "configure" 
    21922142#include "confdefs.h" 
    21932143/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    22002150; return 0; } 
    22012151EOF 
    2202 if { (eval echo configure:2203: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2152if { (eval echo configure:2153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    22032153  rm -rf conftest* 
    22042154  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    22282178 
    22292179echo $ac_n "checking for optarg in -lgnugetopt""... $ac_c" 1>&6 
    2230 echo "configure:2231: checking for optarg in -lgnugetopt" >&5 
     2180echo "configure:2181: checking for optarg in -lgnugetopt" >&5 
    22312181ac_lib_var=`echo gnugetopt'_'optarg | sed 'y%./+-%__p_%'` 
    22322182if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    22362186LIBS="-lgnugetopt  $LIBS" 
    22372187cat > conftest.$ac_ext <<EOF 
    2238 #line 2239 "configure" 
     2188#line 2189 "configure" 
    22392189#include "confdefs.h" 
    22402190/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    22472197; return 0; } 
    22482198EOF 
    2249 if { (eval echo configure:2250: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2199if { (eval echo configure:2200: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    22502200  rm -rf conftest* 
    22512201  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    22752225 
    22762226echo $ac_n "checking for _ in -lbe""... $ac_c" 1>&6 
    2277 echo "configure:2278: checking for _ in -lbe" >&5 
     2227echo "configure:2228: checking for _ in -lbe" >&5 
    22782228ac_lib_var=`echo be'_'_ | sed 'y%./+-%__p_%'` 
    22792229if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    22832233LIBS="-lbe  $LIBS" 
    22842234cat > conftest.$ac_ext <<EOF 
    2285 #line 2286 "configure" 
     2235#line 2236 "configure" 
    22862236#include "confdefs.h" 
    22872237/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    22942244; return 0; } 
    22952245EOF 
    2296 if { (eval echo configure:2297: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2246if { (eval echo configure:2247: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    22972247  rm -rf conftest* 
    22982248  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    23222272 
    23232273echo $ac_n "checking for _ in -lgame""... $ac_c" 1>&6 
    2324 echo "configure:2325: checking for _ in -lgame" >&5 
     2274echo "configure:2275: checking for _ in -lgame" >&5 
    23252275ac_lib_var=`echo game'_'_ | sed 'y%./+-%__p_%'` 
    23262276if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    23302280LIBS="-lgame  $LIBS" 
    23312281cat > conftest.$ac_ext <<EOF 
    2332 #line 2333 "configure" 
     2282#line 2283 "configure" 
    23332283#include "confdefs.h" 
    23342284/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    23412291; return 0; } 
    23422292EOF 
    2343 if { (eval echo configure:2344: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2293if { (eval echo configure:2294: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    23442294  rm -rf conftest* 
    23452295  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    23692319 
    23702320echo $ac_n "checking for _ in -lroot""... $ac_c" 1>&6 
    2371 echo "configure:2372: checking for _ in -lroot" >&5 
     2321echo "configure:2322: checking for _ in -lroot" >&5 
    23722322ac_lib_var=`echo root'_'_ | sed 'y%./+-%__p_%'` 
    23732323if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    23772327LIBS="-lroot  $LIBS" 
    23782328cat > conftest.$ac_ext <<EOF 
    2379 #line 2380 "configure" 
     2329#line 2330 "configure" 
    23802330#include "confdefs.h" 
    23812331/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    23882338; return 0; } 
    23892339EOF 
    2390 if { (eval echo configure:2391: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2340if { (eval echo configure:2341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    23912341  rm -rf conftest* 
    23922342  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    24162366 
    24172367echo $ac_n "checking for powl in -lm""... $ac_c" 1>&6 
    2418 echo "configure:2419: checking for powl in -lm" >&5 
     2368echo "configure:2369: checking for powl in -lm" >&5 
    24192369ac_lib_var=`echo m'_'powl | sed 'y%./+-%__p_%'` 
    24202370if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    24242374LIBS="-lm  $LIBS" 
    24252375cat > conftest.$ac_ext <<EOF 
    2426 #line 2427 "configure" 
     2376#line 2377 "configure" 
    24272377#include "confdefs.h" 
    24282378/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    24352385; return 0; } 
    24362386EOF 
    2437 if { (eval echo configure:2438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2387if { (eval echo configure:2388: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    24382388  rm -rf conftest* 
    24392389  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    24632413 
    24642414echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 
    2465 echo "configure:2466: checking for pthread_create in -lpthread" >&5 
     2415echo "configure:2416: checking for pthread_create in -lpthread" >&5 
    24662416ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'` 
    24672417if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    24712421LIBS="-lpthread  $LIBS" 
    24722422cat > conftest.$ac_ext <<EOF 
    2473 #line 2474 "configure" 
     2423#line 2424 "configure" 
    24742424#include "confdefs.h" 
    24752425/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    24822432; return 0; } 
    24832433EOF 
    2484 if { (eval echo configure:2485: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2434if { (eval echo configure:2435: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    24852435  rm -rf conftest* 
    24862436  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    25102460 
    25112461echo $ac_n "checking for thread_create in -lthreads""... $ac_c" 1>&6 
    2512 echo "configure:2513: checking for thread_create in -lthreads" >&5 
     2462echo "configure:2463: checking for thread_create in -lthreads" >&5 
    25132463ac_lib_var=`echo threads'_'thread_create | sed 'y%./+-%__p_%'` 
    25142464if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    25182468LIBS="-lthreads  $LIBS" 
    25192469cat > conftest.$ac_ext <<EOF 
    2520 #line 2521 "configure" 
     2470#line 2471 "configure" 
    25212471#include "confdefs.h" 
    25222472/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    25292479; return 0; } 
    25302480EOF 
    2531 if { (eval echo configure:2532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2481if { (eval echo configure:2482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    25322482  rm -rf conftest* 
    25332483  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    25582508 
    25592509echo $ac_n "checking for getopt_long""... $ac_c" 1>&6 
    2560 echo "configure:2561: checking for getopt_long" >&5 
     2510echo "configure:2511: checking for getopt_long" >&5 
    25612511if eval "test \"`echo '$''{'ac_cv_func_getopt_long'+set}'`\" = set"; then 
    25622512  echo $ac_n "(cached) $ac_c" 1>&6 
    25632513else 
    25642514  cat > conftest.$ac_ext <<EOF 
    2565 #line 2566 "configure" 
     2515#line 2516 "configure" 
    25662516#include "confdefs.h" 
    25672517/* System header to define __stub macros and hopefully few prototypes, 
     
    25862536; return 0; } 
    25872537EOF 
    2588 if { (eval echo configure:2589: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2538if { (eval echo configure:2539: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    25892539  rm -rf conftest* 
    25902540  eval "ac_cv_func_getopt_long=yes" 
     
    26132563ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    26142564echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2615 echo "configure:2616: checking for $ac_hdr" >&5 
     2565echo "configure:2566: checking for $ac_hdr" >&5 
    26162566if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    26172567  echo $ac_n "(cached) $ac_c" 1>&6 
    26182568else 
    26192569  cat > conftest.$ac_ext <<EOF 
    2620 #line 2621 "configure" 
     2570#line 2571 "configure" 
    26212571#include "confdefs.h" 
    26222572#include <$ac_hdr> 
    26232573EOF 
    26242574ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2625 { (eval echo configure:2626: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2575{ (eval echo configure:2576: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    26262576ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    26272577if test -z "$ac_err"; then 
     
    26532603ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    26542604echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2655 echo "configure:2656: checking for $ac_hdr" >&5 
     2605echo "configure:2606: checking for $ac_hdr" >&5 
    26562606if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    26572607  echo $ac_n "(cached) $ac_c" 1>&6 
    26582608else 
    26592609  cat > conftest.$ac_ext <<EOF 
    2660 #line 2661 "configure" 
     2610#line 2611 "configure" 
    26612611#include "confdefs.h" 
    26622612#include <$ac_hdr> 
    26632613EOF 
    26642614ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2665 { (eval echo configure:2666: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2615{ (eval echo configure:2616: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    26662616ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    26672617if test -z "$ac_err"; then 
     
    26932643ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    26942644echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2695 echo "configure:2696: checking for $ac_hdr" >&5 
     2645echo "configure:2646: checking for $ac_hdr" >&5 
    26962646if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    26972647  echo $ac_n "(cached) $ac_c" 1>&6 
    26982648else 
    26992649  cat > conftest.$ac_ext <<EOF 
    2700 #line 2701 "configure" 
     2650#line 2651 "configure" 
    27012651#include "confdefs.h" 
    27022652#include <$ac_hdr> 
    27032653EOF 
    27042654ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2705 { (eval echo configure:2706: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2655{ (eval echo configure:2656: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    27062656ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    27072657if test -z "$ac_err"; then 
     
    27332683ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    27342684echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2735 echo "configure:2736: checking for $ac_hdr" >&5 
     2685echo "configure:2686: checking for $ac_hdr" >&5 
    27362686if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    27372687  echo $ac_n "(cached) $ac_c" 1>&6 
    27382688else 
    27392689  cat > conftest.$ac_ext <<EOF 
    2740 #line 2741 "configure" 
     2690#line 2691 "configure" 
    27412691#include "confdefs.h" 
    27422692#include <$ac_hdr> 
    27432693EOF 
    27442694ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2745 { (eval echo configure:2746: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2695{ (eval echo configure:2696: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    27462696ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    27472697if test -z "$ac_err"; then 
     
    27732723ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    27742724echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2775 echo "configure:2776: checking for $ac_hdr" >&5 
     2725echo "configure:2726: checking for $ac_hdr" >&5 
    27762726if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    27772727  echo $ac_n "(cached) $ac_c" 1>&6 
    27782728else 
    27792729  cat > conftest.$ac_ext <<EOF 
    2780 #line 2781 "configure" 
     2730#line 2731 "configure" 
    27812731#include "confdefs.h" 
    27822732#include <$ac_hdr> 
    27832733EOF 
    27842734ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2785 { (eval echo configure:2786: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2735{ (eval echo configure:2736: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    27862736ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    27872737if test -z "$ac_err"; then 
     
    28132763ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    28142764echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2815 echo "configure:2816: checking for $ac_hdr" >&5 
     2765echo "configure:2766: checking for $ac_hdr" >&5 
    28162766if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    28172767  echo $ac_n "(cached) $ac_c" 1>&6 
    28182768else 
    28192769  cat > conftest.$ac_ext <<EOF 
    2820 #line 2821 "configure" 
     2770#line 2771 "configure" 
    28212771#include "confdefs.h" 
    28222772#include <$ac_hdr> 
    28232773EOF 
    28242774ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2825 { (eval echo configure:2826: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2775{ (eval echo configure:2776: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    28262776ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    28272777if test -z "$ac_err"; then 
     
    28532803ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    28542804echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2855 echo "configure:2856: checking for $ac_hdr" >&5 
     2805echo "configure:2806: checking for $ac_hdr" >&5 
    28562806if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    28572807  echo $ac_n "(cached) $ac_c" 1>&6 
    28582808else 
    28592809  cat > conftest.$ac_ext <<EOF 
    2860 #line 2861 "configure" 
     2810#line 2811 "configure" 
    28612811#include "confdefs.h" 
    28622812#include <$ac_hdr> 
    28632813EOF 
    28642814ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2865 { (eval echo configure:2866: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2815{ (eval echo configure:2816: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    28662816ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    28672817if test -z "$ac_err"; then 
     
    28932843ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    28942844echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2895 echo "configure:2896: checking for $ac_hdr" >&5 
     2845echo "configure:2846: checking for $ac_hdr" >&5 
    28962846if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    28972847  echo $ac_n "(cached) $ac_c" 1>&6 
    28982848else 
    28992849  cat > conftest.$ac_ext <<EOF 
    2900 #line 2901 "configure" 
     2850#line 2851 "configure" 
    29012851#include "confdefs.h" 
    29022852#include <$ac_hdr> 
    29032853EOF 
    29042854ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2905 { (eval echo configure:2906: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2855{ (eval echo configure:2856: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    29062856ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    29072857if test -z "$ac_err"; then 
     
    29342884ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    29352885echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    2936 echo "configure:2937: checking for $ac_hdr" >&5 
     2886echo "configure:2887: checking for $ac_hdr" >&5 
    29372887if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    29382888  echo $ac_n "(cached) $ac_c" 1>&6 
    29392889else 
    29402890  cat > conftest.$ac_ext <<EOF 
    2941 #line 2942 "configure" 
     2891#line 2892 "configure" 
    29422892#include "confdefs.h" 
    29432893#include <$ac_hdr> 
    29442894EOF 
    29452895ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    2946 { (eval echo configure:2947: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     2896{ (eval echo configure:2897: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    29472897ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    29482898if test -z "$ac_err"; then 
     
    29722922 
    29732923save_CFLAGS=$CFLAGS 
     2924 
    29742925CFLAGS="${CFLAGS} -Wall -Werror" 
    29752926echo $ac_n "checking for ntohl in sys/param.h""... $ac_c" 1>&6 
    2976 echo "configure:2977: checking for ntohl in sys/param.h" >&5 
     2927echo "configure:2928: checking for ntohl in sys/param.h" >&5 
    29772928cat > conftest.$ac_ext <<EOF 
    2978 #line 2979 "configure" 
     2929#line 2930 "configure" 
    29792930#include "confdefs.h" 
    29802931#include <sys/param.h> 
     
    29842935; return 0; } 
    29852936EOF 
    2986 if { (eval echo configure:2987: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     2937if { (eval echo configure:2938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    29872938  rm -rf conftest* 
    29882939  cat >> confdefs.h <<\EOF 
     
    29982949fi 
    29992950rm -f conftest* 
     2951 
     2952CFLAGS="${CFLAGS} -fargument-noalias-global -fstrict-aliasing" 
     2953echo $ac_n "checking if \$CC accepts -fargument-noalias-global -fstrict-aliasing""... $ac_c" 1>&6 
     2954echo "configure:2955: checking if \$CC accepts -fargument-noalias-global -fstrict-aliasing" >&5 
     2955cat > conftest.$ac_ext <<EOF 
     2956#line 2957 "configure" 
     2957#include "confdefs.h" 
     2958 
     2959int main() { 
     2960 
     2961; return 0; } 
     2962EOF 
     2963if { (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 
     2967else 
     2968  echo "configure: failed program was:" >&5 
     2969  cat conftest.$ac_ext >&5 
     2970  rm -rf conftest* 
     2971  echo "$ac_t""no" 1>&6 
     2972fi 
     2973rm -f conftest* 
     2974 
     2975CFLAGS="${CFLAGS} -rdynamic" 
     2976echo $ac_n "checking if \$CC accepts -rdynamic""... $ac_c" 1>&6 
     2977echo "configure:2978: checking if \$CC accepts -rdynamic" >&5 
     2978cat > conftest.$ac_ext <<EOF 
     2979#line 2980 "configure" 
     2980#include "confdefs.h" 
     2981 
     2982int main() { 
     2983 
     2984; return 0; } 
     2985EOF 
     2986if { (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 
     2990else 
     2991  echo "configure: failed program was:" >&5 
     2992  cat conftest.$ac_ext >&5 
     2993  rm -rf conftest* 
     2994  echo "$ac_t""no" 1>&6 
     2995fi 
     2996rm -f conftest* 
     2997 
    30002998CFLAGS=$save_CFLAGS 
    30012999 
     3000echo $ac_n "checking for boolean_t in sys/types.h""... $ac_c" 1>&6 
     3001echo "configure:3002: checking for boolean_t in sys/types.h" >&5 
     3002cat > conftest.$ac_ext <<EOF 
     3003#line 3004 "configure" 
     3004#include "confdefs.h" 
     3005#include <sys/types.h> 
     3006void quux() { boolean_t foo; } 
     3007int main() { 
     3008 
     3009; return 0; } 
     3010EOF 
     3011if { (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 
     3015EOF 
     3016 
     3017 echo "$ac_t""yes" 1>&6 
     3018else 
     3019  echo "configure: failed program was:" >&5 
     3020  cat conftest.$ac_ext >&5 
     3021  rm -rf conftest* 
     3022  echo "$ac_t""no" 1>&6 
     3023fi 
     3024rm -f conftest* 
     3025 
    30023026echo $ac_n "checking for working const""... $ac_c" 1>&6 
    3003 echo "configure:3004: checking for working const" >&5 
     3027echo "configure:3028: checking for working const" >&5 
    30043028if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 
    30053029  echo $ac_n "(cached) $ac_c" 1>&6 
    30063030else 
    30073031  cat > conftest.$ac_ext <<EOF 
    3008 #line 3009 "configure" 
     3032#line 3033 "configure" 
    30093033#include "confdefs.h" 
    30103034 
     
    30553079; return 0; } 
    30563080EOF 
    3057 if { (eval echo configure:3058: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     3081if { (eval echo configure:3082: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    30583082  rm -rf conftest* 
    30593083  ac_cv_c_const=yes 
     
    30763100 
    30773101echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 
    3078 echo "configure:3079: checking for ANSI C header files" >&5 
     3102echo "configure:3103: checking for ANSI C header files" >&5 
    30793103if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 
    30803104  echo $ac_n "(cached) $ac_c" 1>&6 
    30813105else 
    30823106  cat > conftest.$ac_ext <<EOF 
    3083 #line 3084 "configure" 
     3107#line 3108 "configure" 
    30843108#include "confdefs.h" 
    30853109#include <stdlib.h> 
     
    30893113EOF 
    30903114ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3091 { (eval echo configure:3092: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3115{ (eval echo configure:3116: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    30923116ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    30933117if test -z "$ac_err"; then 
     
    31063130  # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 
    31073131cat > conftest.$ac_ext <<EOF 
    3108 #line 3109 "configure" 
     3132#line 3133 "configure" 
    31093133#include "confdefs.h" 
    31103134#include <string.h> 
     
    31243148  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 
    31253149cat > conftest.$ac_ext <<EOF 
    3126 #line 3127 "configure" 
     3150#line 3151 "configure" 
    31273151#include "confdefs.h" 
    31283152#include <stdlib.h> 
     
    31453169else 
    31463170  cat > conftest.$ac_ext <<EOF 
    3147 #line 3148 "configure" 
     3171#line 3172 "configure" 
    31483172#include "confdefs.h" 
    31493173#include <ctype.h> 
     
    31563180 
    31573181EOF 
    3158 if { (eval echo configure:3159: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     3182if { (eval echo configure:3183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    31593183then 
    31603184  : 
     
    31803204 
    31813205echo $ac_n "checking for size_t""... $ac_c" 1>&6 
    3182 echo "configure:3183: checking for size_t" >&5 
     3206echo "configure:3207: checking for size_t" >&5 
    31833207if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 
    31843208  echo $ac_n "(cached) $ac_c" 1>&6 
    31853209else 
    31863210  cat > conftest.$ac_ext <<EOF 
    3187 #line 3188 "configure" 
     3211#line 3212 "configure" 
    31883212#include "confdefs.h" 
    31893213#include <sys/types.h> 
     
    32133237 
    32143238echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 
    3215 echo "configure:3216: checking whether time.h and sys/time.h may both be included" >&5 
     3239echo "configure:3240: checking whether time.h and sys/time.h may both be included" >&5 
    32163240if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then 
    32173241  echo $ac_n "(cached) $ac_c" 1>&6 
    32183242else 
    32193243  cat > conftest.$ac_ext <<EOF 
    3220 #line 3221 "configure" 
     3244#line 3245 "configure" 
    32213245#include "confdefs.h" 
    32223246#include <sys/types.h> 
     
    32273251; return 0; } 
    32283252EOF 
    3229 if { (eval echo configure:3230: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     3253if { (eval echo configure:3254: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    32303254  rm -rf conftest* 
    32313255  ac_cv_header_time=yes 
     
    32923316# special cases 
    32933317if test x$host_os = xbeos; then 
    3294     PLUGINS=${PLUGINS}"dummy beos " 
     3318    PLUGINS=${PLUGINS}"dummy null beos " 
    32953319 
    32963320else 
     
    33033327 
    33043328if test x$enable_dummy != xno; then PLUGINS=${PLUGINS}"dummy "; fi 
     3329# Check whether --enable-null or --disable-null was given. 
     3330if test "${enable_null+set}" = set; then 
     3331  enableval="$enable_null" 
     3332  : 
     3333fi 
     3334 
     3335if test x$enable_null != xno; then PLUGINS=${PLUGINS}"null "; fi 
    33053336# Check whether --enable-dsp or --disable-dsp was given. 
    33063337if test "${enable_dsp+set}" = set; then 
     
    33583389fi 
    33593390 
    3360 # Check whether --enable-null or --disable-null was given. 
    3361 if test "${enable_null+set}" = set; then 
    3362   enableval="$enable_null" 
    3363   if test x$enable_null = xyes; then PLUGINS=${PLUGINS}"null "; fi 
    3364 fi 
    3365  
    33663391# Check whether --enable-gnome or --disable-gnome was given. 
    33673392if test "${enable_gnome+set}" = set; then 
     
    33823407  if test x$enable_alsa = xyes; then ac_safe=`echo "sys/asoundlib.h" | sed 'y%./+-%__p_%'` 
    33833408echo $ac_n "checking for sys/asoundlib.h""... $ac_c" 1>&6 
    3384 echo "configure:3385: checking for sys/asoundlib.h" >&5 
     3409echo "configure:3410: checking for sys/asoundlib.h" >&5 
    33853410if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    33863411  echo $ac_n "(cached) $ac_c" 1>&6 
    33873412else 
    33883413  cat > conftest.$ac_ext <<EOF 
    3389 #line 3390 "configure" 
     3414#line 3415 "configure" 
    33903415#include "confdefs.h" 
    33913416#include <sys/asoundlib.h> 
    33923417EOF 
    33933418ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3394 { (eval echo configure:3395: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3419{ (eval echo configure:3420: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    33953420ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    33963421if test -z "$ac_err"; then 
     
    34093434  echo "$ac_t""yes" 1>&6 
    34103435  echo $ac_n "checking for main in -lasound""... $ac_c" 1>&6 
    3411 echo "configure:3412: checking for main in -lasound" >&5 
     3436echo "configure:3437: checking for main in -lasound" >&5 
    34123437ac_lib_var=`echo asound'_'main | sed 'y%./+-%__p_%'` 
    34133438if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    34173442LIBS="-lasound  $LIBS" 
    34183443cat > conftest.$ac_ext <<EOF 
    3419 #line 3420 "configure" 
     3444#line 3445 "configure" 
    34203445#include "confdefs.h" 
    34213446 
     
    34243449; return 0; } 
    34253450EOF 
    3426 if { (eval echo configure:3427: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3451if { (eval echo configure:3452: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    34273452  rm -rf conftest* 
    34283453  eval "ac_c