Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a3f08d9e
Commit
a3f08d9e
authored
Jun 19, 2000
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
290c1191
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
30 deletions
+61
-30
ChangeLog
ChangeLog
+5
-0
configure
configure
+56
-30
No files found.
ChangeLog
View file @
a3f08d9e
2000-06-19 Dave Love <fx@gnu.org>
* configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
_XOPEN_SOURCE is defined.
2000-06-16 Gerd Moellmann <gerd@gnu.org>
* Makefile.in (distclean): Also make distclean in lisp/.
...
...
configure
View file @
a3f08d9e
...
...
@@ -2966,7 +2966,7 @@ else
int main() {
/* Ultrix mips cc rejects this. */
typedef int charset[2]; const charset x;
typedef int charset[2]; const charset x
= {0,0}
;
/* SunOS 4.1.1 cc rejects this. */
char const *const *ccp;
char **p;
...
...
@@ -4950,7 +4950,7 @@ else
#include "confdefs.h"
#include <alloca.h>
int main() {
char
*p = alloca(2 * sizeof(int));
void
*p = alloca(2 * sizeof(int));
; return 0; }
EOF
if { (eval echo configure:4957: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
...
...
@@ -5463,7 +5463,7 @@ for ac_func in gettimeofday gethostname getdomainname dup2 \
rename closedir mkdir rmdir sysinfo \
random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \
strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
utimes setrlimit setpgid getcwd shutdown strftime getaddrinfo \
utimes setrlimit setpgid getcwd
getwd
shutdown strftime getaddrinfo \
__fpending getloadavg mblen mbrlen strsignal setitimer ualarm
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
...
...
@@ -7157,16 +7157,40 @@ else
#include <time.h>
#endif
#endif
int main() {
struct timeval time;
struct timezone dummy;
gettimeofday (&time, &dummy);
; return 0; }
EOF
if { (eval echo configure:7167: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
emacs_cv_gettimeofday_two_arguments=yes
else
echo "configure: failed program was:" >&5
cat conftest.$ac_ext >&5
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
#line 7175 "configure"
#include "confdefs.h"
struct timeval time;
struct timezone dummy;
gettimeofday (&time, &dummy);
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
int main() {
struct timeval time;
int dummy;
gettimeofday (&time, &dummy);
; return 0; }
EOF
if { (eval echo configure:71
70
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:71
94
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
emacs_cv_gettimeofday_two_arguments=yes
else
...
...
@@ -7177,6 +7201,8 @@ else
fi
rm -f conftest*
fi
rm -f conftest*
fi
echo "$ac_t""$emacs_cv_gettimeofday_two_arguments" 1>&6
if test $emacs_cv_gettimeofday_two_arguments = no; then
...
...
@@ -7189,12 +7215,12 @@ fi
ok_so_far=yes
echo $ac_n "checking for socket""... $ac_c" 1>&6
echo "configure:719
3
: checking for socket" >&5
echo "configure:7
2
19: checking for socket" >&5
if eval "test \"`echo '$''{'ac_cv_func_socket'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 7
198
"configure"
#line 7
224
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char socket(); below. */
...
...
@@ -7217,7 +7243,7 @@ socket();
; return 0; }
EOF
if { (eval echo configure:72
21
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:72
47
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
eval "ac_cv_func_socket=yes"
else
...
...
@@ -7240,17 +7266,17 @@ fi
if test $ok_so_far = yes; then
ac_safe=`echo "netinet/in.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for netinet/in.h""... $ac_c" 1>&6
echo "configure:72
44
: checking for netinet/in.h" >&5
echo "configure:72
70
: checking for netinet/in.h" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 72
49
"configure"
#line 72
75
"configure"
#include "confdefs.h"
#include <netinet/in.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:72
54
: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
{ (eval echo configure:72
80
: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
rm -rf conftest*
...
...
@@ -7276,17 +7302,17 @@ fi
if test $ok_so_far = yes; then
ac_safe=`echo "arpa/inet.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for arpa/inet.h""... $ac_c" 1>&6
echo "configure:7
280
: checking for arpa/inet.h" >&5
echo "configure:7
306
: checking for arpa/inet.h" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 7
285
"configure"
#line 7
311
"configure"
#include "confdefs.h"
#include <arpa/inet.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:7
290
: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
{ (eval echo configure:7
316
: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
rm -rf conftest*
...
...
@@ -7324,7 +7350,7 @@ EOF
fi
echo $ac_n "checking whether system supports dynamic ptys""... $ac_c" 1>&6
echo "configure:73
28
: checking whether system supports dynamic ptys" >&5
echo "configure:73
54
: checking whether system supports dynamic ptys" >&5
if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
echo "$ac_t""yes" 1>&6
cat >> confdefs.h <<\EOF
...
...
@@ -7336,12 +7362,12 @@ else
fi
echo $ac_n "checking for pid_t""... $ac_c" 1>&6
echo "configure:73
40
: checking for pid_t" >&5
echo "configure:73
66
: checking for pid_t" >&5
if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 73
45
"configure"
#line 73
71
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -7370,17 +7396,17 @@ fi
ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for vfork.h""... $ac_c" 1>&6
echo "configure:7
374
: checking for vfork.h" >&5
echo "configure:7
400
: checking for vfork.h" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 7
379
"configure"
#line 7
405
"configure"
#include "confdefs.h"
#include <vfork.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:7
384
: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
{ (eval echo configure:7
410
: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
rm -rf conftest*
...
...
@@ -7405,18 +7431,18 @@ else
fi
echo $ac_n "checking for working vfork""... $ac_c" 1>&6
echo "configure:74
09
: checking for working vfork" >&5
echo "configure:74
35
: checking for working vfork" >&5
if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
if test "$cross_compiling" = yes; then
echo $ac_n "checking for vfork""... $ac_c" 1>&6
echo "configure:741
5
: checking for vfork" >&5
echo "configure:74
4
1: checking for vfork" >&5
if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 74
20
"configure"
#line 74
46
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char vfork(); below. */
...
...
@@ -7439,7 +7465,7 @@ vfork();
; return 0; }
EOF
if { (eval echo configure:74
43
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:74
69
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
eval "ac_cv_func_vfork=yes"
else
...
...
@@ -7461,7 +7487,7 @@ fi
ac_cv_func_vfork_works=$ac_cv_func_vfork
else
cat > conftest.$ac_ext <<EOF
#line 74
65
"configure"
#line 74
91
"configure"
#include "confdefs.h"
/* Thanks to Paul Eggert for this test. */
#include <stdio.h>
...
...
@@ -7556,7 +7582,7 @@ main() {
}
}
EOF
if { (eval echo configure:756
0
: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:75
8
6: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
then
ac_cv_func_vfork_works=yes
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment