try fixing tcapabilities
This commit is contained in:
parent
a83ff038f4
commit
650f6eb827
@ -1154,6 +1154,12 @@
|
|||||||
/* name of YAP library */
|
/* name of YAP library */
|
||||||
#undef YAP_YAPLIB
|
#undef YAP_YAPLIB
|
||||||
|
|
||||||
|
/* Define if _FILE_OFFSET_BITS is needed */
|
||||||
|
#undef _FILE_OFFSET_BITS
|
||||||
|
|
||||||
|
/* Define if _ISOC99_SOURCE is needed */
|
||||||
|
#undef _ISOC99_SOURCE
|
||||||
|
|
||||||
/* HP-UX old socket stuff */
|
/* HP-UX old socket stuff */
|
||||||
#undef _XOPEN_SOURCE
|
#undef _XOPEN_SOURCE
|
||||||
|
|
||||||
|
191
configure
vendored
191
configure
vendored
@ -4294,6 +4294,130 @@ test -n "$target_alias" &&
|
|||||||
program_prefix=${target_alias}-
|
program_prefix=${target_alias}-
|
||||||
|
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking _XOPEN_SOURCE" >&5
|
||||||
|
$as_echo_n "checking _XOPEN_SOURCE... " >&6; }
|
||||||
|
|
||||||
|
if ${ac_cv_xopen+:} false; then :
|
||||||
|
$as_echo_n "(cached) " >&6
|
||||||
|
else
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#define _XOPEN_SOURCE 700
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main ()
|
||||||
|
{
|
||||||
|
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
ac_cv_xopen=true
|
||||||
|
else
|
||||||
|
ac_cv_xopen=false
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ac_cv_xopen" = true; then
|
||||||
|
|
||||||
|
$as_echo "#define _XOPEN_SOURCE 700" >>confdefs.h
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking _FILE_OFFSET_BITS" >&5
|
||||||
|
$as_echo_n "checking _FILE_OFFSET_BITS... " >&6; }
|
||||||
|
if ${ac_cv_file_offset_bits+:} false; then :
|
||||||
|
$as_echo_n "(cached) " >&6
|
||||||
|
else
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#define _FILE_OFFSET_BITS
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main ()
|
||||||
|
{
|
||||||
|
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
ac_cv_file_offset_bits=true
|
||||||
|
else
|
||||||
|
ac_cv_file_offset_bits=false
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ac_cv_file_offset_bits" = true; then
|
||||||
|
|
||||||
|
$as_echo "#define _FILE_OFFSET_BITS 64" >>confdefs.h
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking _ISOC99_SOURCE" >&5
|
||||||
|
$as_echo_n "checking _ISOC99_SOURCE... " >&6; }
|
||||||
|
if ${ac_cv_isoc99_source+:} false; then :
|
||||||
|
$as_echo_n "(cached) " >&6
|
||||||
|
else
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#define _ISOC99_SOURCE
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main ()
|
||||||
|
{
|
||||||
|
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
ac_cv_isoc99_source=true
|
||||||
|
else
|
||||||
|
ac_cv_isoc99_source=false
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ac_cv_isoc99_source" = true; then
|
||||||
|
|
||||||
|
$as_echo "#define _ISOC99_SOURCE 1" >>confdefs.h
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test "$yap_cv_minisat" = no -a "$INSTALL_DLLS" = "no"
|
||||||
|
then
|
||||||
|
PKG_MINISAT=""
|
||||||
|
else
|
||||||
|
PKG_MINISAT="packages/swi-minisat2 packages/swi-minisat2/C"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
#define HOST_ALIAS "${target}"
|
#define HOST_ALIAS "${target}"
|
||||||
@ -4915,7 +5039,6 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
|
||||||
$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
|
$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
|
||||||
if ${ac_cv_path_GREP+:} false; then :
|
if ${ac_cv_path_GREP+:} false; then :
|
||||||
@ -10275,42 +10398,6 @@ $as_echo "#define HAVE_STRUCT_TIME_TM_GMTOFF 1" >>confdefs.h
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking _XOPEN_SOURCE" >&5
|
|
||||||
$as_echo_n "checking _XOPEN_SOURCE... " >&6; }
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
#define _XOPEN_SOURCE
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
|
|
||||||
$as_echo "#define DEFINE_XOPEN_SOURCE 1" >>confdefs.h
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
|
||||||
$as_echo "yes" >&6; }
|
|
||||||
else
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
|
||||||
$as_echo "no" >&6; }
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
|
|
||||||
if test "$yap_cv_minisat" = no -a "$INSTALL_DLLS" = "no"
|
|
||||||
then
|
|
||||||
PKG_MINISAT=""
|
|
||||||
else
|
|
||||||
PKG_MINISAT="packages/swi-minisat2 packages/swi-minisat2/C"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "x$PLARCH" = "x"; then
|
if test "x$PLARCH" = "x"; then
|
||||||
case "$host" in
|
case "$host" in
|
||||||
@ -13698,22 +13785,25 @@ fi
|
|||||||
|
|
||||||
if test "$host" != "$build" -a "$yap_cv_R" != "yes"
|
if test "$host" != "$build" -a "$yap_cv_R" != "yes"
|
||||||
then
|
then
|
||||||
|
# cross-compiler
|
||||||
REAL_TARGET="ritf"
|
REAL_TARGET="ritf"
|
||||||
REAL_INCLUDES=-I"$yap_cv_R"/include
|
REAL_INCLUDES=-I"'""$yap_cv_R""'"/include
|
||||||
case "$target_cpu" in
|
case "$target_cpu" in
|
||||||
i*86*)
|
i*86*)
|
||||||
REAL_LIBS="-L"$yap_cv_R"/bin/i386 -lR"
|
REAL_LIBS="-L"'""$yap_cv_R""'"/bin/i386 -lR"
|
||||||
;;
|
;;
|
||||||
x86*)
|
x86*)
|
||||||
REAL_LIBS="-L"$yap_cv_R"/bin/x64 -lR"
|
REAL_LIBS="-L"'""$yap_cv_R""'"/bin/x64 -lR"
|
||||||
;;
|
;;
|
||||||
**)
|
**)
|
||||||
REAL_TARGET="dummy"
|
REAL_TARGET="dummy"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
|
# default instalation
|
||||||
if test "$yap_cv_R" = "yes"
|
if test "$yap_cv_R" = "yes"
|
||||||
then
|
then
|
||||||
|
#assumes we have r on path
|
||||||
for ac_prog in R.exe R r
|
for ac_prog in R.exe R r
|
||||||
do
|
do
|
||||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||||
@ -13803,20 +13893,23 @@ done
|
|||||||
test -n "$REXE" || REXE=""none""
|
test -n "$REXE" || REXE=""none""
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
#it worked?
|
||||||
if test "$REXE" = none -o x"$REXE" = "x"; then
|
if test "$REXE" = none -o x"$REXE" = "x"; then
|
||||||
REAL_TARGET="dummy"
|
REAL_TARGET="dummy"
|
||||||
|
#give up on installing R, we couldn't find it.
|
||||||
else
|
else
|
||||||
REAL_TARGET="ritf"
|
REAL_TARGET="ritf"
|
||||||
REAL_INCLUDES="$($REXE CMD config --cppflags | grep -v ^WARNING)"
|
REAL_INCLUDES="$( $REXE CMD config --cppflags | grep -v ^WARNING)"
|
||||||
REAL_LIBS="$($REXE CMD config --ldflags | grep -v ^WARNING)"
|
REAL_LIBS="$($REXE CMD config --ldflags | grep -v ^WARNING)"
|
||||||
|
# if non-nil we're done
|
||||||
if test x"$REAL_INCLUDES" = x; then
|
if test x"$REAL_INCLUDES" = x; then
|
||||||
REAL_INCLUDES=-I"$yap_cv_R"/include
|
REAL_INCLUDES=-I\"$yap_cv_R\"/include
|
||||||
case "$target_cpu" in
|
case "$target_cpu" in
|
||||||
i*86*)
|
i*86*)
|
||||||
REAL_LIBS="-L$yap_cv_R/bin/i386 -lR"
|
REAL_LIBS="-L\"$yap_cv_R/bin/i386\" -lR"
|
||||||
;;
|
;;
|
||||||
x86*)
|
x86*)
|
||||||
REAL_LIBS="-L$yap_cv_R/bin/x64 -lR"
|
REAL_LIBS="-L\"$yap_cv_R/bin/x64\" -lR"
|
||||||
;;
|
;;
|
||||||
**)
|
**)
|
||||||
REAL_TARGET="dummy"
|
REAL_TARGET="dummy"
|
||||||
@ -14109,7 +14202,7 @@ else
|
|||||||
JAVA_TEST=Test.java
|
JAVA_TEST=Test.java
|
||||||
CLASS_TEST=Test.class
|
CLASS_TEST=Test.class
|
||||||
cat << \EOF > $JAVA_TEST
|
cat << \EOF > $JAVA_TEST
|
||||||
/* #line 14112 "configure" */
|
/* #line 14205 "configure" */
|
||||||
public class Test {
|
public class Test {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
@ -14285,7 +14378,7 @@ EOF
|
|||||||
if uudecode$EXEEXT Test.uue; then
|
if uudecode$EXEEXT Test.uue; then
|
||||||
ac_cv_prog_uudecode_base64=yes
|
ac_cv_prog_uudecode_base64=yes
|
||||||
else
|
else
|
||||||
echo "configure: 14288: uudecode had trouble decoding base 64 file 'Test.uue'" >&5
|
echo "configure: 14381: uudecode had trouble decoding base 64 file 'Test.uue'" >&5
|
||||||
echo "configure: failed file was:" >&5
|
echo "configure: failed file was:" >&5
|
||||||
cat Test.uue >&5
|
cat Test.uue >&5
|
||||||
ac_cv_prog_uudecode_base64=no
|
ac_cv_prog_uudecode_base64=no
|
||||||
@ -14416,7 +14509,7 @@ else
|
|||||||
JAVA_TEST=Test.java
|
JAVA_TEST=Test.java
|
||||||
CLASS_TEST=Test.class
|
CLASS_TEST=Test.class
|
||||||
cat << \EOF > $JAVA_TEST
|
cat << \EOF > $JAVA_TEST
|
||||||
/* #line 14419 "configure" */
|
/* #line 14512 "configure" */
|
||||||
public class Test {
|
public class Test {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
@ -14451,7 +14544,7 @@ JAVA_TEST=Test.java
|
|||||||
CLASS_TEST=Test.class
|
CLASS_TEST=Test.class
|
||||||
TEST=Test
|
TEST=Test
|
||||||
cat << \EOF > $JAVA_TEST
|
cat << \EOF > $JAVA_TEST
|
||||||
/* [#]line 14454 "configure" */
|
/* [#]line 14547 "configure" */
|
||||||
public class Test {
|
public class Test {
|
||||||
public static void main (String args[]) {
|
public static void main (String args[]) {
|
||||||
System.exit (0);
|
System.exit (0);
|
||||||
@ -16979,7 +17072,7 @@ test -n "$PYTHON" || PYTHON=""none""
|
|||||||
if test -d "$PYTHONHOME/libs"; then
|
if test -d "$PYTHONHOME/libs"; then
|
||||||
#mingw
|
#mingw
|
||||||
PYTHON_DIR="$PYTHONHOME"
|
PYTHON_DIR="$PYTHONHOME"
|
||||||
PYTHON_DLL=`echo "$PYTHON_DIR"/python*.dll`
|
PYTHON_DLL=`echo "$PYTHON_DIR"/DLLs/python*.dll`
|
||||||
PYTHON_LIBS="\"$PYTHON_DLL\""
|
PYTHON_LIBS="\"$PYTHON_DLL\""
|
||||||
PYTHON_INCLUDES="-I \"$PYTHON_DIR\"/include"
|
PYTHON_INCLUDES="-I \"$PYTHON_DIR\"/include"
|
||||||
elif test -d "$PYTHONHOME/lib"; then
|
elif test -d "$PYTHONHOME/lib"; then
|
||||||
|
92
configure.in
92
configure.in
@ -77,6 +77,79 @@ AC_LANG(C)
|
|||||||
|
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
||||||
|
dnl includes _POSIX_C_SOURCE=200809
|
||||||
|
AC_MSG_CHECKING(_XOPEN_SOURCE)
|
||||||
|
AC_CACHE_VAL(ac_cv_xopen,
|
||||||
|
[AC_TRY_COMPILE([
|
||||||
|
#define _XOPEN_SOURCE 700
|
||||||
|
#include <unistd.h>
|
||||||
|
],
|
||||||
|
[],
|
||||||
|
[ac_cv_xopen=true],
|
||||||
|
[ac_cv_xopen=false])])
|
||||||
|
if test "$ac_cv_xopen" = true; then
|
||||||
|
AC_DEFINE(_XOPEN_SOURCE, 700, [Define if _XOPEN_SOURCE is needed])
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(_FILE_OFFSET_BITS)
|
||||||
|
AC_CACHE_VAL(ac_cv_file_offset_bits,
|
||||||
|
[AC_TRY_COMPILE([
|
||||||
|
#define _FILE_OFFSET_BITS
|
||||||
|
#include <unistd.h>
|
||||||
|
],
|
||||||
|
[],
|
||||||
|
[ac_cv_file_offset_bits=true],
|
||||||
|
[ac_cv_file_offset_bits=false])])
|
||||||
|
if test "$ac_cv_file_offset_bits" = true; then
|
||||||
|
AC_DEFINE(_FILE_OFFSET_BITS, 64, [Define if _FILE_OFFSET_BITS is needed])
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(_ISOC99_SOURCE)
|
||||||
|
AC_CACHE_VAL(ac_cv_isoc99_source,
|
||||||
|
[AC_TRY_COMPILE([
|
||||||
|
#define _ISOC99_SOURCE
|
||||||
|
#include <unistd.h>
|
||||||
|
],
|
||||||
|
[],
|
||||||
|
[ac_cv_isoc99_source=true],
|
||||||
|
[ac_cv_isoc99_source=false])])
|
||||||
|
if test "$ac_cv_isoc99_source" = true; then
|
||||||
|
AC_DEFINE(_ISOC99_SOURCE, 1, [Define if _ISOC99_SOURCE is needed])
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
|
||||||
|
dnl AC_MSG_CHECKING(_ISOC11_SOURCE)
|
||||||
|
dnl AC_CACHE_VAL(ac_cv_isoc11_source,
|
||||||
|
dnl [AC_TRY_COMPILE([
|
||||||
|
dnl #define _ISOC11_SOURCE
|
||||||
|
dnl #include <unistd.h>
|
||||||
|
dnl ],
|
||||||
|
dnl [],
|
||||||
|
dnl [ac_cv_isoc11_source=true],
|
||||||
|
dnl [ac_cv_isoc11_source=false])])
|
||||||
|
dnl if test "$ac_cv_isoc11_source" = true; then
|
||||||
|
dnl AC_DEFINE(_ISOC11_SOURCE, 1, [Define if _ISOC11_SOURCE is needed])
|
||||||
|
dnl AC_MSG_RESULT(yes)
|
||||||
|
dnl else
|
||||||
|
dnl AC_MSG_RESULT(no)
|
||||||
|
dnl fi
|
||||||
|
|
||||||
|
if test "$yap_cv_minisat" = no -a "$INSTALL_DLLS" = "no"
|
||||||
|
then
|
||||||
|
PKG_MINISAT=""
|
||||||
|
else
|
||||||
|
PKG_MINISAT="packages/swi-minisat2 packages/swi-minisat2/C"
|
||||||
|
fi
|
||||||
|
|
||||||
AC_DEFINE_UNQUOTED(HOST_ALIAS,"${target}",[what is the configure host name])
|
AC_DEFINE_UNQUOTED(HOST_ALIAS,"${target}",[what is the configure host name])
|
||||||
|
|
||||||
m4_define([HAS_TOP])
|
m4_define([HAS_TOP])
|
||||||
@ -1891,25 +1964,6 @@ AC_CHECK_MEMBER(struct tm.tm_gmtoff,
|
|||||||
[],
|
[],
|
||||||
[#include <time.h>])
|
[#include <time.h>])
|
||||||
|
|
||||||
AC_MSG_CHECKING(_XOPEN_SOURCE)
|
|
||||||
AC_TRY_COMPILE(
|
|
||||||
[
|
|
||||||
#define _XOPEN_SOURCE
|
|
||||||
#include <unistd.h>
|
|
||||||
],
|
|
||||||
[
|
|
||||||
], AC_DEFINE(DEFINE_XOPEN_SOURCE, 1,
|
|
||||||
"Define if _XOPEN_SOURCE is needed")
|
|
||||||
AC_MSG_RESULT(yes),
|
|
||||||
AC_MSG_RESULT(no))
|
|
||||||
|
|
||||||
if test "$yap_cv_minisat" = no -a "$INSTALL_DLLS" = "no"
|
|
||||||
then
|
|
||||||
PKG_MINISAT=""
|
|
||||||
else
|
|
||||||
PKG_MINISAT="packages/swi-minisat2 packages/swi-minisat2/C"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "x$PLARCH" = "x"; then
|
if test "x$PLARCH" = "x"; then
|
||||||
case "$host" in
|
case "$host" in
|
||||||
|
Reference in New Issue
Block a user