Skip to content
Snippets Groups Projects
Commit 2bf5563e authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added some cross-compilation defaults.

Rev: src/modules/files/configure.in:1.52
parent fc5b32a7
No related branches found
No related tags found
No related merge requests found
# $Id: configure.in,v 1.51 1998/06/28 16:16:17 grubba Exp $ # $Id: configure.in,v 1.52 1998/06/28 16:21:46 grubba Exp $
AC_INIT(file.c) AC_INIT(file.c)
AC_CONFIG_HEADER(file_machine.h) AC_CONFIG_HEADER(file_machine.h)
...@@ -444,7 +444,8 @@ int main() ...@@ -444,7 +444,8 @@ int main()
for(e=0;e<256;e++) if(strerror(e)) if(strerror(e)[0]=='\b') exit(1); for(e=0;e<256;e++) if(strerror(e)) if(strerror(e)[0]=='\b') exit(1);
exit(0); exit(0);
} }
],pike_cv_func_failsafe_strerror=yes,pike_cv_func_failsafe_strerror=no) ],pike_cv_func_failsafe_strerror=yes,pike_cv_func_failsafe_strerror=no,
pike_cv_func_failsafe_strerror=no)
]) ])
if test "$pike_cv_func_failsafe_strerror" = yes; then if test "$pike_cv_func_failsafe_strerror" = yes; then
...@@ -593,7 +594,8 @@ int main() ...@@ -593,7 +594,8 @@ int main()
} }
],pike_cv_select_on_unix_sockets=yes,pike_cv_select_on_unix_sockets=no) ],pike_cv_select_on_unix_sockets=yes,pike_cv_select_on_unix_sockets=no,
pike_cv_select_on_unix_sockets=no)
]) ])
AC_MSG_RESULT($pike_cv_select_on_unix_sockets) AC_MSG_RESULT($pike_cv_select_on_unix_sockets)
...@@ -650,6 +652,7 @@ int main() ...@@ -650,6 +652,7 @@ int main()
}], }],
pike_cv_socket_buffer_max=`cat conftest.out.2` pike_cv_socket_buffer_max=`cat conftest.out.2`
, ,
pike_cv_socket_buffer_max=0,
pike_cv_socket_buffer_max=0 pike_cv_socket_buffer_max=0
)]) )])
...@@ -707,7 +710,8 @@ int main() ...@@ -707,7 +710,8 @@ int main()
if(tmp && strlen(tmp) <10000) exit(0); if(tmp && strlen(tmp) <10000) exit(0);
exit(1); exit(1);
} }
],pike_cv_func_working_getcwd=yes,pike_cv_func_working_getcwd=no)]) ],pike_cv_func_working_getcwd=yes,pike_cv_func_working_getcwd=no,
pike_cv_func_working_getcwd=yes)])
if test "$pike_cv_func_working_getcwd" = yes; then if test "$pike_cv_func_working_getcwd" = yes; then
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment