Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: External libraries' versions  (Read 2775 times)

0 Members and 1 Guest are viewing this topic.

Unknown

  • Newbie
  • *
  • Posts: 1
    • View Profile
External libraries' versions
« on: April 11, 2019, 05:00:46 pm »
Where can I find information regarding the versions of external libraries used in a certain version of SFML? I'm especially interested in those of freetype, OpenAL Soft, libogg, libvorbis and libflac. My research was inconclusive so far.

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: External libraries' versions
« Reply #1 on: April 11, 2019, 05:52:49 pm »
For Windows for some it says in commit messages of related files: https://github.com/SFML/SFML/tree/master/extlibs

For Linux I assume it's whatever you happen to have installed since they are API compatible and aren't bundled but you're told by tutorial to install them yourself.
« Last Edit: April 11, 2019, 05:54:28 pm by FRex »
Back to C++ gamedev with SFML in May 2023

Jonny

  • Full Member
  • ***
  • Posts: 114
    • View Profile
    • Email
Re: External libraries' versions
« Reply #2 on: April 26, 2019, 12:11:38 am »
The versions of the pre-built libraries varies by platform (All the more reason to get them build as part of the source tree: https://en.sfml-dev.org/forums/index.php?topic=25053.0)

This repository contains the revisions of each of the dependencies which is known to work with SFML on all platforms: https://github.com/eXpl0it3r/SFML-dependencies

 

anything