From 94a1fdc2ae47c29661d9de92a5828b2f0c68d2b7 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Tue, 1 Sep 2015 23:15:26 +0200 Subject: Updated some comments --- src/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/makefile') diff --git a/src/makefile b/src/makefile index 67123a9a..fea965ee 100644 --- a/src/makefile +++ b/src/makefile @@ -2,7 +2,7 @@ # # raylib makefile for desktop platforms, Raspberry Pi and HTML5 (emscripten) # -# Copyright (c) 2014 Ramon Santamaria (Ray San - raysan@raysanweb.com) +# Copyright (c) 2014 Ramon Santamaria (@raysan5) # # This software is provided "as-is", without any express or implied warranty. In no event # will the authors be held liable for any damages arising from the use of this software. -- cgit v1.2.3 From 4879106096c868e5c8f16ca3796dcb9c85c0dac6 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 2 Sep 2015 01:08:41 +0200 Subject: Reviewed to work on Raspberry Pi [rlgl] Extensions strings loading was redone to avoid a Segmentation Fault on Raspberry Pi --- src/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/makefile') diff --git a/src/makefile b/src/makefile index fea965ee..da57c2d2 100644 --- a/src/makefile +++ b/src/makefile @@ -80,7 +80,7 @@ endif # define any directories containing required header files ifeq ($(PLATFORM),PLATFORM_RPI) - INCLUDES = -I. -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads + INCLUDES = -I. -I/opt/vc/include -I/opt/vc/include/interface/vmcs_host/linux -I/opt/vc/include/interface/vcos/pthreads else INCLUDES = -I. -I../src # external libraries headers -- cgit v1.2.3