mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 04:01:17 +00:00
Compile fixes.
This commit is contained in:
parent
b72492afd3
commit
9fcea8629e
2 changed files with 7 additions and 0 deletions
|
@ -82,6 +82,9 @@
|
|||
/* Define if you have the dlopen function. */
|
||||
#undef HAVE_DLOPEN
|
||||
|
||||
/* Define if you have pthread support. */
|
||||
#undef HAVE_LIBPTHREAD
|
||||
|
||||
/* Define this to something sane if you don't have stricmp */
|
||||
#undef stricmp
|
||||
|
||||
|
|
|
@ -505,6 +505,10 @@ AC_SUBST(TDFXGL_CFLAGS)
|
|||
AC_SUBST(TDFXGL_LIBS)
|
||||
|
||||
|
||||
if test "x$ac_cv_lib_pthread_pthread_exit" = "xyes"; then
|
||||
SND_LIBS="$SND_LIBS -lpthread"
|
||||
AC_DEFINE(HAVE_LIBPTHREAD)
|
||||
fi
|
||||
|
||||
dnl ==================================================================
|
||||
dnl Checks for system type
|
||||
|
|
Loading…
Reference in a new issue