pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1998-12-03
1998-12-03 21:08:47 by Henrik Grubbström (Grubba) <grubba@grubba.org>
fc84cc507e565edcc915e494bd51e5911ac9b124 (
10
lines) (+
5
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Updated FreeBSD threads check.
Rev: src/configure.in:1.256
1:
-
AC_REVISION("$Id: configure.in,v 1.
255
1998/12/03
03
:
16
:
05
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
256
1998/12/03
21
:
08
:
47
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
889:
int main(int argc, char **argv) {
-
/* FreeBSD before
226001
and 300000 -
300002
have broken threads.
-
* Some instances of 300003 may have broken threads too.
+
/* FreeBSD before
228000
and 300000 -
300005
have broken threads.
*/
-
if (__FreeBSD_version <
226001
)
+
if (__FreeBSD_version <
228000
)
return(1); if (__FreeBSD_version < 300000) return(0);
-
if (__FreeBSD_version <
300003
)
+
if (__FreeBSD_version <
300006
)
return(1); return(0); }