Skip to content

Commit f1b5a56

Browse files
authored
Merge pull request #211 from Libvisual/fix-sdl-header-location
libvisual: Fix SDL header location with regard to pkg-config, e.g. for macOS
2 parents f648947 + f626e3e commit f1b5a56

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

libvisual/examples/simple/simple_example.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define _LV_EXAMPLES_SIMPLE_EXAMPLE
2525

2626
#include <libvisual.h>
27-
#include <SDL/SDL.h>
27+
#include <SDL.h>
2828

2929
class SimpleExample
3030
{

libvisual/tools/lv-tool/display/sdl_driver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "display_driver.hpp"
2828
#include <libvisual/libvisual.h>
2929

30-
#include <SDL/SDL.h>
30+
#include <SDL.h>
3131
#include <array>
3232

3333
namespace {

libvisual/tools/lv-tool/display/stdout_sdl_driver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "gettext.h"
2929
#include <libvisual/libvisual.h>
3030

31-
#include <SDL/SDL.h>
31+
#include <SDL.h>
3232
#include <GL/gl.h>
3333
#include <GL/glext.h> // For GL_BGR in systems where it's not defined in GL/gl.h
3434
#include <array>

0 commit comments

Comments
 (0)