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

Replaced POSIX threads under Windows with stdlib implementations since it is under LGPL license #100

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Apr 26, 2017

  1. The oxygine engine uses POSIX threads under Windows which is a handy …

    …library but sadly under LGPL so we cannot link it statically. Since C++ 11 there are official implementations std::mutex, std::thread and std::conditional_variable. So I put those in which gets rid of POSIX threads under Windows which resolves our licensing issue. There is a define OX_CPP11THREADS that needs to be set in order to enable the use of the stdlib classes.
    holoeye-photonics committed Apr 26, 2017
    Configuration menu
    Copy the full SHA
    2325055 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2017

  1. Configuration menu
    Copy the full SHA
    620d0b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0a02143 View commit details
    Browse the repository at this point in the history