version 1.147, 2016/03/01 08:57:16
|
version 1.152, 2016/03/15 16:31:14
|
Line 1
|
Line 1
|
dnl Process this file with autoconf to produce a configure script. |
dnl Process this file with autoconf to produce a configure script. |
AC_INIT([rpl],[4.1.24]) |
AC_INIT([rpl],[4.1.25]) |
AC_CANONICAL_TARGET |
AC_CANONICAL_TARGET |
AC_CANONICAL_TARGET |
AC_CANONICAL_TARGET |
AM_INIT_AUTOMAKE(silent-rules) |
AM_INIT_AUTOMAKE(silent-rules) |
Line 17 GNUPLOT=gnuplot-5.0.1
|
Line 17 GNUPLOT=gnuplot-5.0.1
|
FILE=file-5.25 |
FILE=file-5.25 |
ICONV=libiconv-1.14 |
ICONV=libiconv-1.14 |
SQLITE=sqlite-3.11.0 |
SQLITE=sqlite-3.11.0 |
OPENSSL=openssl-1.0.2f |
OPENSSL=openssl-1.0.2g |
OPENMOTIF=openmotif-2.3.4 |
OPENMOTIF=openmotif-2.3.4 |
LIBXPM=libXpm-3.5.9 |
LIBXPM=libXpm-3.5.11 |
SIGSEGV=libsigsegv-2.11 |
SIGSEGV=libsigsegv-2.11 |
ZLIB=zlib-1.2.8 |
ZLIB=zlib-1.2.8 |
|
|
Line 249 if test "$ac_cv_c_inline" != no ; then
|
Line 249 if test "$ac_cv_c_inline" != no ; then
|
AC_SUBST(HAVE_INLINE) |
AC_SUBST(HAVE_INLINE) |
fi |
fi |
|
|
AC_MSG_CHECKING([for pselect]) |
|
AC_COMPILE_IFELSE( |
|
[AC_LANG_PROGRAM([#include <sys/select.h> |
|
#include <unistd.h> |
|
#include <sys/time.h> |
|
#include <sys/types.h> |
|
], |
|
[ |
|
struct timespec tv; |
|
fd_set s1, s2, s3; |
|
tv.tv_sec=1; |
|
tv.tv_nsec=0; |
|
FD_SET(1, &s1); FD_SET(2, &s2); FD_SET(3, &s3); |
|
pselect(5, &s1, &s2, &s3, &tv, NULL); |
|
return(0); |
|
])], |
|
[PSELECT=-DPSELECT; AC_MSG_RESULT(yes)], |
|
[PSELECT=-UPSELECT; AC_MSG_RESULT(no)] |
|
) |
|
AC_SUBST(PSELECT) |
|
|
|
AC_ARG_ENABLE(sysv-ipcs, |
AC_ARG_ENABLE(sysv-ipcs, |
[ --enable-sysv-ipcs use SystemV IPC functions [[default=guessed]]], [ |
[ --enable-sysv-ipcs use SystemV IPC functions [[default=guessed]]], [ |
if test "$enableval" = "no"; then |
if test "$enableval" = "no"; then |