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

Fix building with mingw-w64-gcc #389

Merged
merged 7 commits into from
Jul 19, 2024
Merged

Commits on Jul 9, 2024

  1. Generate pkgconfig files on Windows

    pkgconfig files could be used on Windows by both MSVC and MinGW compilers
    MehdiChinoune committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    764126a View commit details
    Browse the repository at this point in the history
  2. Replace WIN32 with _WIN32

    WIN32 is not defined by default on MinGW. While _WIN32 is known be always defined on Windows
    
    reported before: https://issues.apache.org/jira/browse/LOGCXX-5
    MehdiChinoune committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    b267fed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    780f16e View commit details
    Browse the repository at this point in the history
  4. Fix FindAPR.cmake on MinGW

    WIN32 compile definition is required.
    MehdiChinoune committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    4d8a9fc View commit details
    Browse the repository at this point in the history
  5. Fix building with mingw-w64-gcc+winpthreads

    `!(defined(_WIN32) && defined(_LIBCPP_VERSION))` was added because In some platforms winpthreads exist but It's not used by libc++.
    MehdiChinoune committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    23e7ad7 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    1df252b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    64e31c6 View commit details
    Browse the repository at this point in the history