[haiku-commits] haiku: hrev43848 - src/apps/3dmov

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 13 Mar 2012 01:50:24 +0100 (CET)

hrev43848 adds 1 changeset to branch 'master'
old head: 58747586538efd1fb8e9da3a80ff365703b7352c
new head: f1b3e74461d81f55f046392343fac6ccef750a3f

----------------------------------------------------------------------------

f1b3e74: 3dmov: Add missing GL headers

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev43848
Commit:      f1b3e74461d81f55f046392343fac6ccef750a3f
URL:         http://cgit.haiku-os.org/haiku/commit/?id=f1b3e74
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Tue Mar 13 00:49:19 2012 UTC

----------------------------------------------------------------------------

1 files changed, 7 insertions(+), 0 deletions(-)
src/apps/3dmov/Jamfile |    7 +++++++

----------------------------------------------------------------------------

diff --git a/src/apps/3dmov/Jamfile b/src/apps/3dmov/Jamfile
index 135ae0a..d114814 100644
--- a/src/apps/3dmov/Jamfile
+++ b/src/apps/3dmov/Jamfile
@@ -1,7 +1,14 @@
 SubDir HAIKU_TOP src apps 3dmov ;
+SubDirSysHdrs $(HAIKU_MESA_HEADERS) ;
 
 SetSubDirSupportedPlatformsBeOSCompatible ;
 
+# For GCC2
+if $(HAIKU_GCC_VERSION[1]) < 3 {
+       SubDirC++Flags --no-warnings ;
+}
+
+
 Application 3DMov :
        Application.cpp
        MainWindow.cpp


Other related posts:

  • » [haiku-commits] haiku: hrev43848 - src/apps/3dmov - kallisti5