Skip to content

Commit

Permalink
Fix MingW threading support.
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4731 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Jan 2, 2006
1 parent 67bc851 commit 72b136d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions configure.in
Expand Up @@ -581,10 +581,13 @@ case $uname in
GLDEMOS=""
fi

if test x$have_pthread = xyes; then
AC_DEFINE(HAVE_PTHREAD)
if test "x$enable_threads" = xyes; then
if test x$have_pthread = xyes; then
AC_DEFINE(HAVE_PTHREAD)
fi

THREADS="threads.exe"
fi
fi

# Don't make symlinks since Windows is not case sensitive.
if test "x$with_links" != xyes; then
Expand Down

0 comments on commit 72b136d

Please sign in to comment.