You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
264 B

  1. --- a/configure
  2. +++ b/configure
  3. @@ -892,7 +892,8 @@ cat > $TMPC << EOF
  4. int main(int argc, char **argv)
  5. {
  6. - return vasprintf(NULL, "%s", NULL) == 0;
  7. + va_list ap;
  8. + return vasprintf(NULL, "%s", ap) == 0;
  9. }
  10. EOF
  11. if compile_prog "" "" "have_vasprintf"; then