Add 2.0 version attributes
[mono.git] / configure.in
index f326e42d8ff044261f6c45350e69f8dc4a66f4d3..12626cccf579888022e084726f165f2f4b94f4a9 100644 (file)
@@ -854,6 +854,19 @@ if test x$platform_win32 = xno; then
        dnl *********************
        AC_CHECK_HEADERS(aio.h sys/aio.h)
        AC_CHECK_LIB(rt, aio_read, [ LIBS="$LIBS -lrt" ],)
+       SIGVAL_PTR="undefined"
+       if test "$ac_cv_header_aio_h" = "yes" -o "$ac_cv_header_sys_aio_h" = "yes" ; then
+               AC_CHECK_MEMBER(union sigval.sigval_ptr,SIGVAL_PTR="sigval_ptr",, [
+                               #include <sys/signal.h>
+                               ])
+               AC_CHECK_MEMBER(union sigval.sival_ptr,SIGVAL_PTR="sival_ptr",, [
+                               #include <sys/signal.h>
+                               ])
+               if test "$SIGVAL_PTR" = "undefined" ; then
+                       AC_MSG_ERROR([Unable to detect field name in 'union sigval'])
+               fi
+       fi
+       AC_DEFINE_UNQUOTED(SIGVAL_PTR,$SIGVAL_PTR,[Pointer field name in 'union sigval'])
 else
        AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
        AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
@@ -949,7 +962,8 @@ if test "x$ac_cv_have_dev_random" = "xno" \
 *** entropy collection in place, please contact <crichton@gimp.org> and
 *** provide information about the system and how to access the random device.
 ***
-*** For those systems who lack a random device, EGD support is forthcoming.
+*** Otherwise you can install either egd or prngd and set the environment
+*** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
 ***]])
 fi
  
@@ -1158,6 +1172,8 @@ mono/mini/Makefile
 mono/profiler/Makefile
 ikvm-jni/Makefile
 runtime/Makefile
+runtime/net_1_1/Makefile
+runtime/net_2_0/Makefile
 scripts/Makefile
 man/Makefile
 web/Makefile