summaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Expand)Author
2023-02-01fix libfido2 detection without pkg-configDamien Miller
2023-01-07Use autoconf to find openssl binary.Darren Tucker
2023-01-07Check openssl_bin path is executable before using.Darren Tucker
2023-01-06Set OPENSSL_BIN from OpenSSL directory.Darren Tucker
2022-12-06Fix typo in comment. Spotted by tim@Darren Tucker
2022-11-30Use -fzero-call-used-regs=used on clang 15.Darren Tucker
2022-11-23If we haven't found it yet, recheck for sys/stat.h.Darren Tucker
2022-11-07Fix setres*id checks to work with clang-16.Darren Tucker
2022-11-06configure.ac: Fix -Wstrict-prototypesSam James
2022-11-06configure.ac: Add <pty.h> include for openptySam James
2022-11-02Check for sockaddr_in.sin_len.Darren Tucker
2022-10-31OpenSSL dev branch is 302 not 320.Darren Tucker
2022-10-18OpenSSL dev branch now identifies as 3.2.0.Darren Tucker
2022-10-14Fix snprintf configure test for clang 15Harmen Stoppels
2022-08-11Add a timegm implementation from Heimdal via Samba.Darren Tucker
2022-08-05compat code for fido_dev_is_winhello()Corinna Vinschen
2022-08-05Factor out getrnd() and rename to getentropy().Darren Tucker
2022-08-04Include CHANNEL and FIDO2 libs in configure outputDarren Tucker
2022-07-27Move stale-configure check as early as possible.Darren Tucker
2022-07-27Move libcrypto into CHANNELLIBS.Darren Tucker
2022-07-27Group libcrypto and PRNGD checks together.Darren Tucker
2022-07-27Do not link scp, sftp and sftp-server w/ zlib.Darren Tucker
2022-07-25Remove workarounds for OpenSSL missing AES-CTR.Darren Tucker
2022-07-25Remove workarounds for OpenSSL missing AES-GCM.Darren Tucker
2022-07-15Add AUDIT_ARCH_PPC to supported seccomp arches.Darren Tucker
2022-07-13Remove special casing of crypt().Darren Tucker
2022-07-13Only refuse to use OpenSSL 3.0.4 on x86_64.Darren Tucker
2022-07-12Refuse to use OpenSSL 3.0.4 due to potential RCE.Darren Tucker
2022-07-03Skip all rlimit tests when sandboxing disabled.Darren Tucker
2022-07-03Move checks for pollfd.fd and nfds_t.Darren Tucker
2022-07-01Skip select+rlimit check if sandboxing is disabledDarren Tucker
2022-06-25Zero out LIBFIDO2 when SK support not usable.Darren Tucker
2022-06-25Disable SK support if FIDO libs not found.Darren Tucker
2022-06-24fix broken case statement in previousDamien Miller
2022-06-24request 1.1x API compatibility for OpenSSL >=3.xDamien Miller
2022-06-24automatically enable built-in FIDO supportDamien Miller
2022-05-24configure.ac: Add missing AC_DEFINE for caph_cache_tzdata test causingTim Rice
2022-04-23Cache timezone data in capsicum sandbox.Darren Tucker
2022-04-01Use bash or ksh if available for SH in Makefile.Darren Tucker
2022-03-09Provide killpg implementation.Darren Tucker
2022-03-09Check for missing ftruncate prototype.Darren Tucker
2022-03-08Default to not using sandbox when cross compiling.Darren Tucker
2022-02-22Extend select+rlimit sanbox test to include poll.Darren Tucker
2022-02-22Include sys/param.h if present.Darren Tucker
2022-02-17minix needs BROKEN_POLL too; chokes on /dev/nullDamien Miller
2022-02-11Simplify handling of --with-ssl-dir.Darren Tucker
2022-02-07compat code for fido_assert_set_clientdata()Damien Miller
2022-02-07upstream: use libfido2 1.8.0+ fido_assert_set_clientdata() insteaddjm@openbsd.org
2022-01-12OS X poll(2) is broken; use compat replacementDamien Miller
2021-12-10Add minix host tuple.Darren Tucker
> 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661