Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6f979c15
Commit
6f979c15
authored
May 29, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turns out that configure's test for HPUXMATHLIB didn't work
when used with egcs --- now it does.
parent
df9e539e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
107 additions
and
103 deletions
+107
-103
src/configure
src/configure
+98
-96
src/configure.in
src/configure.in
+9
-7
No files found.
src/configure
View file @
6f979c15
...
@@ -5366,13 +5366,21 @@ fi
...
@@ -5366,13 +5366,21 @@ fi
# On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
# On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
# this hackery with HPUXMATHLIB allows us to cope.
# this hackery with HPUXMATHLIB allows us to cope.
HPUXMATHLIB
=
""
HPUXMATHLIB
=
""
case
"
$host_cpu
"
in
hppa1.1
)
if
[
-r
/lib/pa1.1/libm.a
]
;
then
HPUXMATHLIB
=
"-L /lib/pa1.1 -lm"
fi
;;
esac
echo
$ac_n
"checking for rint""...
$ac_c
"
1>&6
echo
$ac_n
"checking for rint""...
$ac_c
"
1>&6
echo
"configure:537
1
: checking for rint"
>
&5
echo
"configure:537
9
: checking for rint"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_rint
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_rint
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 53
76
"configure"
#line 53
84
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char rint(); below. */
which can conflict with char rint(); below. */
...
@@ -5395,7 +5403,7 @@ rint();
...
@@ -5395,7 +5403,7 @@ rint();
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:5
399
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:5
407
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_func_rint=yes"
eval
"ac_cv_func_rint=yes"
else
else
...
@@ -5415,12 +5423,8 @@ EOF
...
@@ -5415,12 +5423,8 @@ EOF
else
else
echo
"
$ac_t
""no"
1>&6
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking for rint in -lm""...
$ac_c
"
1>&6
if
[
-r
/lib/pa1.1/libm.a
]
;
then
echo
"configure:5428: checking for rint in -lm"
>
&5
HPUXMATHLIB
=
"-L /lib/pa1.1 -lm"
fi
echo
$ac_n
"checking for rint in -lm""...
$ac_c
"
1>&6
echo
"configure:5424: checking for rint in -lm"
>
&5
ac_lib_var
=
`
echo
m
'_'
rint |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
m
'_'
rint |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -5428,7 +5432,7 @@ else
...
@@ -5428,7 +5432,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lm
$HPUXMATHLIB
$LIBS
"
LIBS
=
"-lm
$HPUXMATHLIB
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 543
2
"configure"
#line 543
6
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -5439,7 +5443,7 @@ int main() {
...
@@ -5439,7 +5443,7 @@ int main() {
rint()
rint()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:544
3
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:544
7
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -5462,20 +5466,18 @@ else
...
@@ -5462,20 +5466,18 @@ else
echo
"
$ac_t
""no"
1>&6
echo
"
$ac_t
""no"
1>&6
fi
fi
fi
fi
HAVE_LONG_INT_64
=
0
HAVE_LONG_INT_64
=
0
echo
$ac_n
"checking whether 'long int' is 64 bits""...
$ac_c
"
1>&6
echo
$ac_n
"checking whether 'long int' is 64 bits""...
$ac_c
"
1>&6
echo
"configure:547
4
: checking whether 'long int' is 64 bits"
>
&5
echo
"configure:547
6
: checking whether 'long int' is 64 bits"
>
&5
if
test
"
$cross_compiling
"
=
yes
;
then
if
test
"
$cross_compiling
"
=
yes
;
then
echo
"
$ac_t
""assuming not on target machine"
1>&6
echo
"
$ac_t
""assuming not on target machine"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 54
79
"configure"
#line 54
81
"configure"
#include "confdefs.h"
#include "confdefs.h"
typedef long int int64;
typedef long int int64;
...
@@ -5503,7 +5505,7 @@ main() {
...
@@ -5503,7 +5505,7 @@ main() {
exit(! does_int64_work());
exit(! does_int64_work());
}
}
EOF
EOF
if
{
(
eval echo
configure:550
7
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:550
9
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
HAVE_LONG_INT_64
=
1
HAVE_LONG_INT_64
=
1
cat
>>
confdefs.h
<<
\
EOF
cat
>>
confdefs.h
<<
\
EOF
...
@@ -5524,12 +5526,12 @@ fi
...
@@ -5524,12 +5526,12 @@ fi
HAVE_LONG_LONG_INT_64
=
0
HAVE_LONG_LONG_INT_64
=
0
if
[
$HAVE_LONG_INT_64
-eq
0
]
;
then
if
[
$HAVE_LONG_INT_64
-eq
0
]
;
then
echo
$ac_n
"checking whether 'long long int' is 64 bits""...
$ac_c
"
1>&6
echo
$ac_n
"checking whether 'long long int' is 64 bits""...
$ac_c
"
1>&6
echo
"configure:55
28
: checking whether 'long long int' is 64 bits"
>
&5
echo
"configure:55
30
: checking whether 'long long int' is 64 bits"
>
&5
if
test
"
$cross_compiling
"
=
yes
;
then
if
test
"
$cross_compiling
"
=
yes
;
then
echo
"
$ac_t
""assuming not on target machine"
1>&6
echo
"
$ac_t
""assuming not on target machine"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 553
3
"configure"
#line 553
5
"configure"
#include "confdefs.h"
#include "confdefs.h"
typedef long long int int64;
typedef long long int int64;
...
@@ -5557,7 +5559,7 @@ main() {
...
@@ -5557,7 +5559,7 @@ main() {
exit(! does_int64_work());
exit(! does_int64_work());
}
}
EOF
EOF
if
{
(
eval echo
configure:556
1
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:556
3
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
HAVE_LONG_LONG_INT_64
=
1
HAVE_LONG_LONG_INT_64
=
1
cat
>>
confdefs.h
<<
\
EOF
cat
>>
confdefs.h
<<
\
EOF
...
@@ -5580,7 +5582,7 @@ fi
...
@@ -5580,7 +5582,7 @@ fi
if
[
$HAVE_LONG_LONG_INT_64
-eq
1
]
;
then
if
[
$HAVE_LONG_LONG_INT_64
-eq
1
]
;
then
if
[
x
$SNPRINTF
=
x
]
;
then
if
[
x
$SNPRINTF
=
x
]
;
then
echo
$ac_n
"checking whether snprintf handles 'long long int' as %lld""...
$ac_c
"
1>&6
echo
$ac_n
"checking whether snprintf handles 'long long int' as %lld""...
$ac_c
"
1>&6
echo
"configure:558
4
: checking whether snprintf handles 'long long int' as %lld"
>
&5
echo
"configure:558
6
: checking whether snprintf handles 'long long int' as %lld"
>
&5
if
test
"
$cross_compiling
"
=
yes
;
then
if
test
"
$cross_compiling
"
=
yes
;
then
echo
"
$ac_t
""assuming not on target machine"
1>&6
echo
"
$ac_t
""assuming not on target machine"
1>&6
# Force usage of our own snprintf, since we cannot test foreign snprintf
# Force usage of our own snprintf, since we cannot test foreign snprintf
...
@@ -5589,7 +5591,7 @@ echo "configure:5584: checking whether snprintf handles 'long long int' as %lld"
...
@@ -5589,7 +5591,7 @@ echo "configure:5584: checking whether snprintf handles 'long long int' as %lld"
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 559
3
"configure"
#line 559
5
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
typedef long long int int64;
typedef long long int int64;
...
@@ -5616,7 +5618,7 @@ main() {
...
@@ -5616,7 +5618,7 @@ main() {
exit(! does_int64_snprintf_work());
exit(! does_int64_snprintf_work());
}
}
EOF
EOF
if
{
(
eval echo
configure:562
0
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:562
2
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
echo
"
$ac_t
""yes"
1>&6
echo
"
$ac_t
""yes"
1>&6
INT64_FORMAT
=
'"%lld"'
INT64_FORMAT
=
'"%lld"'
...
@@ -5627,7 +5629,7 @@ else
...
@@ -5627,7 +5629,7 @@ else
rm
-fr
conftest
*
rm
-fr
conftest
*
echo
"
$ac_t
""no"
1>&6
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking whether snprintf handles 'long long int' as %qd""...
$ac_c
"
1>&6
echo
$ac_n
"checking whether snprintf handles 'long long int' as %qd""...
$ac_c
"
1>&6
echo
"configure:563
1
: checking whether snprintf handles 'long long int' as %qd"
>
&5
echo
"configure:563
3
: checking whether snprintf handles 'long long int' as %qd"
>
&5
if
test
"
$cross_compiling
"
=
yes
;
then
if
test
"
$cross_compiling
"
=
yes
;
then
echo
"
$ac_t
""assuming not on target machine"
1>&6
echo
"
$ac_t
""assuming not on target machine"
1>&6
# Force usage of our own snprintf, since we cannot test foreign snprintf
# Force usage of our own snprintf, since we cannot test foreign snprintf
...
@@ -5636,7 +5638,7 @@ echo "configure:5631: checking whether snprintf handles 'long long int' as %qd"
...
@@ -5636,7 +5638,7 @@ echo "configure:5631: checking whether snprintf handles 'long long int' as %qd"
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 564
0
"configure"
#line 564
2
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
typedef long long int int64;
typedef long long int int64;
...
@@ -5663,7 +5665,7 @@ main() {
...
@@ -5663,7 +5665,7 @@ main() {
exit(! does_int64_snprintf_work());
exit(! does_int64_snprintf_work());
}
}
EOF
EOF
if
{
(
eval echo
configure:566
7
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:566
9
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
echo
"
$ac_t
""yes"
1>&6
echo
"
$ac_t
""yes"
1>&6
INT64_FORMAT
=
'"%qd"'
INT64_FORMAT
=
'"%qd"'
...
@@ -5705,7 +5707,7 @@ EOF
...
@@ -5705,7 +5707,7 @@ EOF
echo
$ac_n
"checking alignment of short""...
$ac_c
"
1>&6
echo
$ac_n
"checking alignment of short""...
$ac_c
"
1>&6
echo
"configure:57
09
: checking alignment of short"
>
&5
echo
"configure:57
11
: checking alignment of short"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_short
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_short
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -5713,7 +5715,7 @@ else
...
@@ -5713,7 +5715,7 @@ else
ac_cv_alignof_short
=
'sizeof(short)'
ac_cv_alignof_short
=
'sizeof(short)'
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 571
7
"configure"
#line 571
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
struct { char filler; short field; } mystruct;
struct { char filler; short field; } mystruct;
...
@@ -5725,7 +5727,7 @@ main()
...
@@ -5725,7 +5727,7 @@ main()
exit(0);
exit(0);
}
}
EOF
EOF
if
{
(
eval echo
configure:57
29
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:57
31
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
ac_cv_alignof_short
=
`
cat
conftestval
`
ac_cv_alignof_short
=
`
cat
conftestval
`
else
else
...
@@ -5745,7 +5747,7 @@ EOF
...
@@ -5745,7 +5747,7 @@ EOF
echo
$ac_n
"checking alignment of int""...
$ac_c
"
1>&6
echo
$ac_n
"checking alignment of int""...
$ac_c
"
1>&6
echo
"configure:57
49
: checking alignment of int"
>
&5
echo
"configure:57
51
: checking alignment of int"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_int
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_int
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -5753,7 +5755,7 @@ else
...
@@ -5753,7 +5755,7 @@ else
ac_cv_alignof_int
=
'sizeof(int)'
ac_cv_alignof_int
=
'sizeof(int)'
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 575
7
"configure"
#line 575
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
struct { char filler; int field; } mystruct;
struct { char filler; int field; } mystruct;
...
@@ -5765,7 +5767,7 @@ main()
...
@@ -5765,7 +5767,7 @@ main()
exit(0);
exit(0);
}
}
EOF
EOF
if
{
(
eval echo
configure:57
69
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:57
71
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
ac_cv_alignof_int
=
`
cat
conftestval
`
ac_cv_alignof_int
=
`
cat
conftestval
`
else
else
...
@@ -5785,7 +5787,7 @@ EOF
...
@@ -5785,7 +5787,7 @@ EOF
echo
$ac_n
"checking alignment of long""...
$ac_c
"
1>&6
echo
$ac_n
"checking alignment of long""...
$ac_c
"
1>&6
echo
"configure:57
89
: checking alignment of long"
>
&5
echo
"configure:57
91
: checking alignment of long"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_long
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_long
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -5793,7 +5795,7 @@ else
...
@@ -5793,7 +5795,7 @@ else
ac_cv_alignof_long
=
'sizeof(long)'
ac_cv_alignof_long
=
'sizeof(long)'
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 579
7
"configure"
#line 579
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
struct { char filler; long field; } mystruct;
struct { char filler; long field; } mystruct;
...
@@ -5805,7 +5807,7 @@ main()
...
@@ -5805,7 +5807,7 @@ main()
exit(0);
exit(0);
}
}
EOF
EOF
if
{
(
eval echo
configure:58
09
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:58
11
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
ac_cv_alignof_long
=
`
cat
conftestval
`
ac_cv_alignof_long
=
`
cat
conftestval
`
else
else
...
@@ -5826,7 +5828,7 @@ EOF
...
@@ -5826,7 +5828,7 @@ EOF
if
[
$HAVE_LONG_LONG_INT_64
-eq
1
]
;
then
if
[
$HAVE_LONG_LONG_INT_64
-eq
1
]
;
then
echo
$ac_n
"checking alignment of long long int""...
$ac_c
"
1>&6
echo
$ac_n
"checking alignment of long long int""...
$ac_c
"
1>&6
echo
"configure:583
0
: checking alignment of long long int"
>
&5
echo
"configure:583
2
: checking alignment of long long int"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_long_long_int
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_long_long_int
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -5834,7 +5836,7 @@ else
...
@@ -5834,7 +5836,7 @@ else
ac_cv_alignof_long_long_int
=
'sizeof(long long int)'
ac_cv_alignof_long_long_int
=
'sizeof(long long int)'
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 58
38
"configure"
#line 58
40
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
struct { char filler; long long int field; } mystruct;
struct { char filler; long long int field; } mystruct;
...
@@ -5846,7 +5848,7 @@ main()
...
@@ -5846,7 +5848,7 @@ main()
exit(0);
exit(0);
}
}
EOF
EOF
if
{
(
eval echo
configure:585
0
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:585
2
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
ac_cv_alignof_long_long_int
=
`
cat
conftestval
`
ac_cv_alignof_long_long_int
=
`
cat
conftestval
`
else
else
...
@@ -5867,7 +5869,7 @@ EOF
...
@@ -5867,7 +5869,7 @@ EOF
fi
fi
echo
$ac_n
"checking alignment of double""...
$ac_c
"
1>&6
echo
$ac_n
"checking alignment of double""...
$ac_c
"
1>&6
echo
"configure:587
1
: checking alignment of double"
>
&5
echo
"configure:587
3
: checking alignment of double"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_double
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_alignof_double
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -5875,7 +5877,7 @@ else
...
@@ -5875,7 +5877,7 @@ else
ac_cv_alignof_double
=
'sizeof(double)'
ac_cv_alignof_double
=
'sizeof(double)'
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 58
79
"configure"
#line 58
81
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <stdio.h>
#include <stdio.h>
struct { char filler; double field; } mystruct;
struct { char filler; double field; } mystruct;
...
@@ -5887,7 +5889,7 @@ main()
...
@@ -5887,7 +5889,7 @@ main()
exit(0);
exit(0);
}
}
EOF
EOF
if
{
(
eval echo
configure:589
1
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:589
3
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
then
ac_cv_alignof_double
=
`
cat
conftestval
`
ac_cv_alignof_double
=
`
cat
conftestval
`
else
else
...
@@ -5929,9 +5931,9 @@ EOF
...
@@ -5929,9 +5931,9 @@ EOF
echo
$ac_n
"checking for POSIX signal interface""...
$ac_c
"
1>&6
echo
$ac_n
"checking for POSIX signal interface""...
$ac_c
"
1>&6
echo
"configure:593
3
: checking for POSIX signal interface"
>
&5
echo
"configure:593
5
: checking for POSIX signal interface"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 593
5
"configure"
#line 593
7
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <signal.h>
#include <signal.h>
int main() {
int main() {
...
@@ -5941,7 +5943,7 @@ act.sa_flags = SA_RESTART;
...
@@ -5941,7 +5943,7 @@ act.sa_flags = SA_RESTART;
sigaction(0, &act, &oact);
sigaction(0, &act, &oact);
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:594
5
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:594
7
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
cat
>>
confdefs.h
<<
\
EOF
#define USE_POSIX_SIGNALS 1
#define USE_POSIX_SIGNALS 1
...
@@ -5965,7 +5967,7 @@ then
...
@@ -5965,7 +5967,7 @@ then
# Extract the first word of "tclsh", so it can be a program name with args.
# Extract the first word of "tclsh", so it can be a program name with args.
set
dummy tclsh
;
ac_word
=
$2
set
dummy tclsh
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:59
69
: checking for
$ac_word
"
>
&5
echo
"configure:59
71
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_TCLSH
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_TCLSH
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -6002,7 +6004,7 @@ fi
...
@@ -6002,7 +6004,7 @@ fi
# Extract the first word of "tcl", so it can be a program name with args.
# Extract the first word of "tcl", so it can be a program name with args.
set
dummy tcl
;
ac_word
=
$2
set
dummy tcl
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:600
6
: checking for
$ac_word
"
>
&5
echo
"configure:600
8
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_TCLSH
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_TCLSH
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
...
@@ -6045,7 +6047,7 @@ fi
...
@@ -6045,7 +6047,7 @@ fi
if
test
"
$USE_TCL
"
=
true
if
test
"
$USE_TCL
"
=
true
then
then
echo
$ac_n
"checking for tclConfig.sh""...
$ac_c
"
1>&6
echo
$ac_n
"checking for tclConfig.sh""...
$ac_c
"
1>&6
echo
"configure:60
49
: checking for tclConfig.sh"
>
&5
echo
"configure:60
51
: checking for tclConfig.sh"
>
&5
TCL_CONFIG_SH
=
TCL_CONFIG_SH
=
library_dirs
=
library_dirs
=
if
test
-z
"
$TCL_DIRS
"
if
test
-z
"
$TCL_DIRS
"
...
@@ -6074,7 +6076,7 @@ USE_TK=$USE_TCL # If TCL is disabled, disable TK
...
@@ -6074,7 +6076,7 @@ USE_TK=$USE_TCL # If TCL is disabled, disable TK
if
test
"
$USE_TK
"
=
true
if
test
"
$USE_TK
"
=
true
then
then
echo
$ac_n
"checking for tkConfig.sh""...
$ac_c
"
1>&6
echo
$ac_n
"checking for tkConfig.sh""...
$ac_c
"
1>&6
echo
"configure:60
78
: checking for tkConfig.sh"
>
&5
echo
"configure:60
80
: checking for tkConfig.sh"
>
&5
TK_CONFIG_SH
=
TK_CONFIG_SH
=
# library_dirs are set in the check for TCL
# library_dirs are set in the check for TCL
for
dir
in
$library_dirs
for
dir
in
$library_dirs
...
@@ -6111,7 +6113,7 @@ if test "$USE_X" = true; then
...
@@ -6111,7 +6113,7 @@ if test "$USE_X" = true; then
# Uses ac_ vars as temps to allow command line to override cache and checks.
# Uses ac_ vars as temps to allow command line to override cache and checks.
# --without-x overrides everything else, but does not touch the cache.
# --without-x overrides everything else, but does not touch the cache.
echo
$ac_n
"checking for X""...
$ac_c
"
1>&6
echo
$ac_n
"checking for X""...
$ac_c
"
1>&6
echo
"configure:611
5
: checking for X"
>
&5
echo
"configure:611
7
: checking for X"
>
&5
# Check whether --with-x or --without-x was given.
# Check whether --with-x or --without-x was given.
if
test
"
${
with_x
+set
}
"
=
set
;
then
if
test
"
${
with_x
+set
}
"
=
set
;
then
...
@@ -6173,12 +6175,12 @@ if test "$ac_x_includes" = NO; then
...
@@ -6173,12 +6175,12 @@ if test "$ac_x_includes" = NO; then
# First, try using that file with no special directory specified.
# First, try using that file with no special directory specified.
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 617
7
"configure"
#line 617
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <
$x_direct_test_include
>
#include <
$x_direct_test_include
>
EOF
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:618
2
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:618
4
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
...
@@ -6247,14 +6249,14 @@ if test "$ac_x_libraries" = NO; then
...
@@ -6247,14 +6249,14 @@ if test "$ac_x_libraries" = NO; then
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-l
$x_direct_test_library
$LIBS
"
LIBS
=
"-l
$x_direct_test_library
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 625
1
"configure"
#line 625
3
"configure"
#include "confdefs.h"
#include "confdefs.h"
int main() {
int main() {
${
x_direct_test_function
}
()
${
x_direct_test_function
}
()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:62
58
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:62
60
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
LIBS
=
"
$ac_save_LIBS
"
LIBS
=
"
$ac_save_LIBS
"
# We can link X programs with no special library path.
# We can link X programs with no special library path.
...
@@ -6360,17 +6362,17 @@ else
...
@@ -6360,17 +6362,17 @@ else
case
"
`
(
uname
-sr
)
2>/dev/null
`
"
in
case
"
`
(
uname
-sr
)
2>/dev/null
`
"
in
"SunOS 5"
*
)
"SunOS 5"
*
)
echo
$ac_n
"checking whether -R must be followed by a space""...
$ac_c
"
1>&6
echo
$ac_n
"checking whether -R must be followed by a space""...
$ac_c
"
1>&6
echo
"configure:636
4
: checking whether -R must be followed by a space"
>
&5
echo
"configure:636
6
: checking whether -R must be followed by a space"
>
&5
ac_xsave_LIBS
=
"
$LIBS
"
;
LIBS
=
"
$LIBS
-R
$x_libraries
"
ac_xsave_LIBS
=
"
$LIBS
"
;
LIBS
=
"
$LIBS
-R
$x_libraries
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 636
7
"configure"
#line 636
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
int main() {
int main() {
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:637
4
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:637
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
ac_R_nospace
=
yes
ac_R_nospace
=
yes
else
else
...
@@ -6386,14 +6388,14 @@ rm -f conftest*
...
@@ -6386,14 +6388,14 @@ rm -f conftest*
else
else
LIBS
=
"
$ac_xsave_LIBS
-R
$x_libraries
"
LIBS
=
"
$ac_xsave_LIBS
-R
$x_libraries
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 639
0
"configure"
#line 639
2
"configure"
#include "confdefs.h"
#include "confdefs.h"
int main() {
int main() {
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:639
7
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:639
9
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
ac_R_space
=
yes
ac_R_space
=
yes
else
else
...
@@ -6425,7 +6427,7 @@ rm -f conftest*
...
@@ -6425,7 +6427,7 @@ rm -f conftest*
# libraries were built with DECnet support. And karl@cs.umb.edu says
# libraries were built with DECnet support. And karl@cs.umb.edu says
# the Alpha needs dnet_stub (dnet does not exist).
# the Alpha needs dnet_stub (dnet does not exist).
echo
$ac_n
"checking for dnet_ntoa in -ldnet""...
$ac_c
"
1>&6
echo
$ac_n
"checking for dnet_ntoa in -ldnet""...
$ac_c
"
1>&6
echo
"configure:64
29
: checking for dnet_ntoa in -ldnet"
>
&5
echo
"configure:64
31
: checking for dnet_ntoa in -ldnet"
>
&5
ac_lib_var
=
`
echo
dnet
'_'
dnet_ntoa |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
dnet
'_'
dnet_ntoa |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6433,7 +6435,7 @@ else
...
@@ -6433,7 +6435,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-ldnet
$LIBS
"
LIBS
=
"-ldnet
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 643
7
"configure"
#line 643
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6444,7 +6446,7 @@ int main() {
...
@@ -6444,7 +6446,7 @@ int main() {
dnet_ntoa()
dnet_ntoa()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:64
48
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:64
50
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6466,7 +6468,7 @@ fi
...
@@ -6466,7 +6468,7 @@ fi
if
test
$ac_cv_lib_dnet_dnet_ntoa
=
no
;
then
if
test
$ac_cv_lib_dnet_dnet_ntoa
=
no
;
then
echo
$ac_n
"checking for dnet_ntoa in -ldnet_stub""...
$ac_c
"
1>&6
echo
$ac_n
"checking for dnet_ntoa in -ldnet_stub""...
$ac_c
"
1>&6
echo
"configure:647
0
: checking for dnet_ntoa in -ldnet_stub"
>
&5
echo
"configure:647
2
: checking for dnet_ntoa in -ldnet_stub"
>
&5
ac_lib_var
=
`
echo
dnet_stub
'_'
dnet_ntoa |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
dnet_stub
'_'
dnet_ntoa |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6474,7 +6476,7 @@ else
...
@@ -6474,7 +6476,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-ldnet_stub
$LIBS
"
LIBS
=
"-ldnet_stub
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 64
78
"configure"
#line 64
80
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6485,7 +6487,7 @@ int main() {
...
@@ -6485,7 +6487,7 @@ int main() {
dnet_ntoa()
dnet_ntoa()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:64
89
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:64
91
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6514,12 +6516,12 @@ fi
...
@@ -6514,12 +6516,12 @@ fi
# The nsl library prevents programs from opening the X display
# The nsl library prevents programs from opening the X display
# on Irix 5.2, according to dickey@clark.net.
# on Irix 5.2, according to dickey@clark.net.
echo
$ac_n
"checking for gethostbyname""...
$ac_c
"
1>&6
echo
$ac_n
"checking for gethostbyname""...
$ac_c
"
1>&6
echo
"configure:65
18
: checking for gethostbyname"
>
&5
echo
"configure:65
20
: checking for gethostbyname"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_gethostbyname
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_gethostbyname
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 652
3
"configure"
#line 652
5
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gethostbyname(); below. */
which can conflict with char gethostbyname(); below. */
...
@@ -6542,7 +6544,7 @@ gethostbyname();
...
@@ -6542,7 +6544,7 @@ gethostbyname();
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:654
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:654
8
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_func_gethostbyname=yes"
eval
"ac_cv_func_gethostbyname=yes"
else
else
...
@@ -6563,7 +6565,7 @@ fi
...
@@ -6563,7 +6565,7 @@ fi
if
test
$ac_cv_func_gethostbyname
=
no
;
then
if
test
$ac_cv_func_gethostbyname
=
no
;
then
echo
$ac_n
"checking for gethostbyname in -lnsl""...
$ac_c
"
1>&6
echo
$ac_n
"checking for gethostbyname in -lnsl""...
$ac_c
"
1>&6
echo
"configure:656
7
: checking for gethostbyname in -lnsl"
>
&5
echo
"configure:656
9
: checking for gethostbyname in -lnsl"
>
&5
ac_lib_var
=
`
echo
nsl
'_'
gethostbyname |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
nsl
'_'
gethostbyname |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6571,7 +6573,7 @@ else
...
@@ -6571,7 +6573,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lnsl
$LIBS
"
LIBS
=
"-lnsl
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 657
5
"configure"
#line 657
7
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6582,7 +6584,7 @@ int main() {
...
@@ -6582,7 +6584,7 @@ int main() {
gethostbyname()
gethostbyname()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:658
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:658
8
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6612,12 +6614,12 @@ fi
...
@@ -6612,12 +6614,12 @@ fi
# -lsocket must be given before -lnsl if both are needed.
# -lsocket must be given before -lnsl if both are needed.
# We assume that if connect needs -lnsl, so does gethostbyname.
# We assume that if connect needs -lnsl, so does gethostbyname.
echo
$ac_n
"checking for connect""...
$ac_c
"
1>&6
echo
$ac_n
"checking for connect""...
$ac_c
"
1>&6
echo
"configure:661
6
: checking for connect"
>
&5
echo
"configure:661
8
: checking for connect"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_connect
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_connect
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 662
1
"configure"
#line 662
3
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char connect(); below. */
which can conflict with char connect(); below. */
...
@@ -6640,7 +6642,7 @@ connect();
...
@@ -6640,7 +6642,7 @@ connect();
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:664
4
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:664
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_func_connect=yes"
eval
"ac_cv_func_connect=yes"
else
else
...
@@ -6661,7 +6663,7 @@ fi
...
@@ -6661,7 +6663,7 @@ fi
if
test
$ac_cv_func_connect
=
no
;
then
if
test
$ac_cv_func_connect
=
no
;
then
echo
$ac_n
"checking for connect in -lsocket""...
$ac_c
"
1>&6
echo
$ac_n
"checking for connect in -lsocket""...
$ac_c
"
1>&6
echo
"configure:666
5
: checking for connect in -lsocket"
>
&5
echo
"configure:666
7
: checking for connect in -lsocket"
>
&5
ac_lib_var
=
`
echo
socket
'_'
connect |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
socket
'_'
connect |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6669,7 +6671,7 @@ else
...
@@ -6669,7 +6671,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lsocket
$X_EXTRA_LIBS
$LIBS
"
LIBS
=
"-lsocket
$X_EXTRA_LIBS
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 667
3
"configure"
#line 667
5
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6680,7 +6682,7 @@ int main() {
...
@@ -6680,7 +6682,7 @@ int main() {
connect()
connect()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:668
4
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:668
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6704,12 +6706,12 @@ fi
...
@@ -6704,12 +6706,12 @@ fi
# gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX.
# gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX.
echo
$ac_n
"checking for remove""...
$ac_c
"
1>&6
echo
$ac_n
"checking for remove""...
$ac_c
"
1>&6
echo
"configure:67
08
: checking for remove"
>
&5
echo
"configure:67
10
: checking for remove"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_remove
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_remove
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 671
3
"configure"
#line 671
5
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char remove(); below. */
which can conflict with char remove(); below. */
...
@@ -6732,7 +6734,7 @@ remove();
...
@@ -6732,7 +6734,7 @@ remove();
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:673
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:673
8
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_func_remove=yes"
eval
"ac_cv_func_remove=yes"
else
else
...
@@ -6753,7 +6755,7 @@ fi
...
@@ -6753,7 +6755,7 @@ fi
if
test
$ac_cv_func_remove
=
no
;
then
if
test
$ac_cv_func_remove
=
no
;
then
echo
$ac_n
"checking for remove in -lposix""...
$ac_c
"
1>&6
echo
$ac_n
"checking for remove in -lposix""...
$ac_c
"
1>&6
echo
"configure:675
7
: checking for remove in -lposix"
>
&5
echo
"configure:675
9
: checking for remove in -lposix"
>
&5
ac_lib_var
=
`
echo
posix
'_'
remove |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
posix
'_'
remove |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6761,7 +6763,7 @@ else
...
@@ -6761,7 +6763,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lposix
$LIBS
"
LIBS
=
"-lposix
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 676
5
"configure"
#line 676
7
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6772,7 +6774,7 @@ int main() {
...
@@ -6772,7 +6774,7 @@ int main() {
remove()
remove()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:677
6
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:677
8
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6796,12 +6798,12 @@ fi
...
@@ -6796,12 +6798,12 @@ fi
# BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
# BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
echo
$ac_n
"checking for shmat""...
$ac_c
"
1>&6
echo
$ac_n
"checking for shmat""...
$ac_c
"
1>&6
echo
"configure:680
0
: checking for shmat"
>
&5
echo
"configure:680
2
: checking for shmat"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_shmat
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_shmat
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 680
5
"configure"
#line 680
7
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shmat(); below. */
which can conflict with char shmat(); below. */
...
@@ -6824,7 +6826,7 @@ shmat();
...
@@ -6824,7 +6826,7 @@ shmat();
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:68
28
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:68
30
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_func_shmat=yes"
eval
"ac_cv_func_shmat=yes"
else
else
...
@@ -6845,7 +6847,7 @@ fi
...
@@ -6845,7 +6847,7 @@ fi
if
test
$ac_cv_func_shmat
=
no
;
then
if
test
$ac_cv_func_shmat
=
no
;
then
echo
$ac_n
"checking for shmat in -lipc""...
$ac_c
"
1>&6
echo
$ac_n
"checking for shmat in -lipc""...
$ac_c
"
1>&6
echo
"configure:68
49
: checking for shmat in -lipc"
>
&5
echo
"configure:68
51
: checking for shmat in -lipc"
>
&5
ac_lib_var
=
`
echo
ipc
'_'
shmat |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
ipc
'_'
shmat |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6853,7 +6855,7 @@ else
...
@@ -6853,7 +6855,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lipc
$LIBS
"
LIBS
=
"-lipc
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 685
7
"configure"
#line 685
9
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6864,7 +6866,7 @@ int main() {
...
@@ -6864,7 +6866,7 @@ int main() {
shmat()
shmat()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:68
68
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:68
70
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6897,7 +6899,7 @@ fi
...
@@ -6897,7 +6899,7 @@ fi
# libraries we check for below, so use a different variable.
# libraries we check for below, so use a different variable.
# --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
# --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
echo
$ac_n
"checking for IceConnectionNumber in -lICE""...
$ac_c
"
1>&6
echo
$ac_n
"checking for IceConnectionNumber in -lICE""...
$ac_c
"
1>&6
echo
"configure:690
1
: checking for IceConnectionNumber in -lICE"
>
&5
echo
"configure:690
3
: checking for IceConnectionNumber in -lICE"
>
&5
ac_lib_var
=
`
echo
ICE
'_'
IceConnectionNumber |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
ICE
'_'
IceConnectionNumber |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6905,7 +6907,7 @@ else
...
@@ -6905,7 +6907,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lICE
$X_EXTRA_LIBS
$LIBS
"
LIBS
=
"-lICE
$X_EXTRA_LIBS
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 69
09
"configure"
#line 69
11
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6916,7 +6918,7 @@ int main() {
...
@@ -6916,7 +6918,7 @@ int main() {
IceConnectionNumber()
IceConnectionNumber()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:692
0
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:692
2
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -6949,7 +6951,7 @@ fi
...
@@ -6949,7 +6951,7 @@ fi
X11_LIBS
=
""
X11_LIBS
=
""
echo
$ac_n
"checking for XOpenDisplay in -lX11""...
$ac_c
"
1>&6
echo
$ac_n
"checking for XOpenDisplay in -lX11""...
$ac_c
"
1>&6
echo
"configure:695
3
: checking for XOpenDisplay in -lX11"
>
&5
echo
"configure:695
5
: checking for XOpenDisplay in -lX11"
>
&5
ac_lib_var
=
`
echo
X11
'_'
XOpenDisplay |
sed
'y%./+-%__p_%'
`
ac_lib_var
=
`
echo
X11
'_'
XOpenDisplay |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
@@ -6957,7 +6959,7 @@ else
...
@@ -6957,7 +6959,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lX11
${
X_PRE_LIBS
}
$LIBS
"
LIBS
=
"-lX11
${
X_PRE_LIBS
}
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 696
1
"configure"
#line 696
3
"configure"
#include "confdefs.h"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
/* We use char because int might match the return type of a gcc2
...
@@ -6968,7 +6970,7 @@ int main() {
...
@@ -6968,7 +6970,7 @@ int main() {
XOpenDisplay()
XOpenDisplay()
; return 0; }
; return 0; }
EOF
EOF
if
{
(
eval echo
configure:697
2
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:697
4
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
else
...
@@ -7015,17 +7017,17 @@ then
...
@@ -7015,17 +7017,17 @@ then
PWD_INCDIR
=
no
PWD_INCDIR
=
no
ac_safe
=
`
echo
"pwd.h"
|
sed
'y%./+-%__p_%'
`
ac_safe
=
`
echo
"pwd.h"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for pwd.h""...
$ac_c
"
1>&6
echo
$ac_n
"checking for pwd.h""...
$ac_c
"
1>&6
echo
"configure:70
19
: checking for pwd.h"
>
&5
echo
"configure:70
21
: checking for pwd.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
else
cat
>
conftest.
$ac_ext
<<
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 702
4
"configure"
#line 702
6
"configure"
#include "confdefs.h"
#include "confdefs.h"
#include <pwd.h>
#include <pwd.h>
EOF
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:70
29
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:70
31
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
rm
-rf
conftest
*
...
...
src/configure.in
View file @
6f979c15
...
@@ -740,15 +740,17 @@ AC_CHECK_FUNC(cbrt,
...
@@ -740,15 +740,17 @@ AC_CHECK_FUNC(cbrt,
# On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
# On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
# this hackery with HPUXMATHLIB allows us to cope.
# this hackery with HPUXMATHLIB allows us to cope.
HPUXMATHLIB=""
HPUXMATHLIB=""
case "$host_cpu" in
hppa1.1)
if [[ -r /lib/pa1.1/libm.a ]] ; then
HPUXMATHLIB="-L /lib/pa1.1 -lm"
fi ;;
esac
AC_SUBST(HPUXMATHLIB)
AC_CHECK_FUNC(rint,
AC_CHECK_FUNC(rint,
AC_DEFINE(HAVE_RINT),
AC_DEFINE(HAVE_RINT),
[
AC_CHECK_LIB(m, rint, AC_DEFINE(HAVE_RINT), , $HPUXMATHLIB))
if [[ -r /lib/pa1.1/libm.a ]] ; then
HPUXMATHLIB="-L /lib/pa1.1 -lm"
fi
AC_CHECK_LIB(m, rint, AC_DEFINE(HAVE_RINT), , $HPUXMATHLIB)
])
AC_SUBST(HPUXMATHLIB)
dnl Check to see if we have a working 64-bit integer type.
dnl Check to see if we have a working 64-bit integer type.
dnl This breaks down into two steps:
dnl This breaks down into two steps:
...
...
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