Update of /cvsroot/plib/plib/demos/exposer
In directory usw-pr-cvs1:/tmp/cvs-serv19113/demos/exposer
Modified Files:
configure.in
Log Message:
Don't need the check for socklen_t here
Index: configure.in
===================================================================
RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- configure.in 1 Jul 2002 01:09:28 -0000 1.10
+++ configure.in 1 Jul 2002 01:14:35 -0000 1.11
@@ -140,26 +140,6 @@
LIBS="$LIBS -laudio"
fi
-dnl Checks for typedefs, structures, and compiler characteristics.
-
-dnl check for socklen_t (in Unix98)
-AC_MSG_CHECKING(for socklen_t)
-AC_TRY_COMPILE([
-#include <sys/types.h>
-#include <sys/socket.h>
-socklen_t x;
-],[],[
-AC_MSG_RESULT(yes)],[
-AC_TRY_COMPILE([
-#include <sys/types.h>
-#include <sys/socket.h>
-int accept (int, struct sockaddr *, size_t *);
-],[],[
-AC_MSG_RESULT(size_t)
-AC_DEFINE(socklen_t,size_t)], [
-AC_MSG_RESULT(int)
-AC_DEFINE(socklen_t,int)])])
-
AC_OUTPUT( Makefile \
data/Makefile \
doc/Makefile \
|