Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8521ebe7
Commit
8521ebe7
authored
Jun 13, 2011
by
Austin English
Committed by
Alexandre Julliard
Jun 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Remove some unused but set variables (LLVM/Clang).
parent
5cb45138
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
configure
configure
+6
-6
configure.ac
configure.ac
+6
-6
No files found.
configure
View file @
8521ebe7
...
...
@@ -10918,7 +10918,7 @@ if test "x$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" = xyes; then :
int
main ()
{
int ret =
snd_pcm_hw_params_get_access_mask(NULL, NULL)
snd_pcm_hw_params_get_access_mask(NULL, NULL)
;
return 0;
}
...
...
@@ -13700,12 +13700,12 @@ main ()
struct hostent *result;
char *buf=0;
int bufsize=0;
int
res,
errnr;
int errnr;
char *addr=0;
int addrlen=0;
int addrtype=0;
res=
gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
res=
gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
;
return 0;
...
...
@@ -14281,7 +14281,7 @@ else
int
main ()
{
float f = 0.0;
int i=
isinf(f)
float f = 0.0;
return
isinf(f)
;
return 0;
}
...
...
@@ -14314,7 +14314,7 @@ else
int
main ()
{
float f = 0.0;
int i=
isnan(f)
float f = 0.0;
return
isnan(f)
;
return 0;
}
...
...
configure.ac
View file @
8521ebe7
...
...
@@ -1515,7 +1515,7 @@ then
#include <alsa/asoundlib.h>
#elif defined(HAVE_SYS_ASOUNDLIB_H)
#include <sys/asoundlib.h>
#endif]], [[
int ret =
snd_pcm_hw_params_get_access_mask(NULL, NULL)]])],
#endif]], [[snd_pcm_hw_params_get_access_mask(NULL, NULL)]])],
[ALSALIBS="-lasound"])])
fi
...
...
@@ -2150,12 +2150,12 @@ AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
struct hostent *result;
char *buf=0;
int bufsize=0;
int
res,
errnr;
int errnr;
char *addr=0;
int addrlen=0;
int addrtype=0;
res=
gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
res=
gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
]])],[wine_cv_linux_gethostbyname_r_6=yes],[wine_cv_linux_gethostbyname_r_6=no
])
)
...
...
@@ -2328,7 +2328,7 @@ fi
dnl Check for isinf
AC_CACHE_CHECK([for isinf], ac_cv_have_isinf,
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], [[float f = 0.0;
int i=
isinf(f)]])],[ac_cv_have_isinf="yes"],[ac_cv_have_isinf="no"]))
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], [[float f = 0.0;
return
isinf(f)]])],[ac_cv_have_isinf="yes"],[ac_cv_have_isinf="no"]))
if test "$ac_cv_have_isinf" = "yes"
then
AC_DEFINE(HAVE_ISINF, 1, [Define to 1 if you have the `isinf' function.])
...
...
@@ -2336,7 +2336,7 @@ fi
dnl Check for isnan
AC_CACHE_CHECK([for isnan], ac_cv_have_isnan,
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], [[float f = 0.0;
int i=
isnan(f)]])],[ac_cv_have_isnan="yes"],[ac_cv_have_isnan="no"]))
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], [[float f = 0.0;
return
isnan(f)]])],[ac_cv_have_isnan="yes"],[ac_cv_have_isnan="no"]))
if test "$ac_cv_have_isnan" = "yes"
then
AC_DEFINE(HAVE_ISNAN, 1, [Define to 1 if you have the `isnan' function.])
...
...
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