Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{libopenjp2,libxml2,sqlite3}: don't link with pthreads on Windows #1197

Merged
merged 3 commits into from
Sep 23, 2023

Commits on Sep 23, 2023

  1. sqlite3: don't link with pthreads on Windows

    SQLite uses the Windows threading primitives directly, so linking with
    -pthread is unnecessary.
    bgilbert committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    474d838 View commit details
    Browse the repository at this point in the history
  2. libxml2: prefer Windows threading primitives over pthreads

    libxml2 can use the Windows threading primitives directly.  Use those if
    available, rather than taking a dependency on winpthreads.
    bgilbert committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    17041fc View commit details
    Browse the repository at this point in the history
  3. libopenjp2: don't link with pthreads on Windows

    OpenJPEG uses the Windows threading primitives directly, so linking with
    -pthread is unnecessary.
    
    Also stop defining both MUTEX_win32 and MUTEX_pthread on Windows.
    bgilbert committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    9c1a563 View commit details
    Browse the repository at this point in the history