Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
fc84cc50
Commit
fc84cc50
authored
26 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Updated FreeBSD threads check.
Rev: src/configure.in:1.256
parent
7ac9c144
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/configure.in
+4
-5
4 additions, 5 deletions
src/configure.in
with
4 additions
and
5 deletions
src/configure.in
+
4
−
5
View file @
fc84cc50
AC_REVISION("$Id: configure.in,v 1.25
5
1998/12/03
03:16:05
grubba Exp $")
AC_REVISION("$Id: configure.in,v 1.25
6
1998/12/03
21:08:47
grubba Exp $")
AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h)
...
...
@@ -889,14 +889,13 @@ else
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 < 22
6
00
1
)
if (__FreeBSD_version < 22
80
00)
return(1);
if (__FreeBSD_version < 300000)
return(0);
if (__FreeBSD_version < 30000
3
)
if (__FreeBSD_version < 30000
6
)
return(1);
return(0);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment