Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/x11r7/mesa3d
@ 2007-08-11 10:08 ulf at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: ulf at uclibc.org @ 2007-08-11 10:08 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-08-11 03:08:13 -0700 (Sat, 11 Aug 2007)
New Revision: 19426

Log:
Correct mesa3d-source, use correct patch directory

Modified:
   trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk


Changeset:
Modified: trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk
===================================================================
--- trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2007-08-11 00:12:33 UTC (rev 19425)
+++ trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2007-08-11 10:08:13 UTC (rev 19426)
@@ -19,7 +19,7 @@
 
 $(MESA3D_DIR)/.extracted: $(DL_DIR)/$(MESA3D_SOURCE)
 	$(ZCAT) $(DL_DIR)/$(MESA3D_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-	toolchain/patch-kernel.sh $(MESA3D_DIR) package/mesa3d/ mesa3d\*.patch
+	toolchain/patch-kernel.sh $(MESA3D_DIR) package/x11r7/mesa3d/ mesa3d\*.patch
 	touch $@
 
 $(MESA3D_DIR)/.configured: $(MESA3D_DIR)/.extracted
@@ -60,7 +60,7 @@
 	touch $@
 
 mesa3d-depends:   xproto_glproto xproto_xf86vidmodeproto xlib_libXxf86vm xlib_libXmu xlib_libXdamage libdrm
-mesa3d-source:    $(MESA3D_DIR)/.extracted
+mesa3d-source:    $(DL_DIR)/$(MESA3D_SOURCE)
 mesa3d-configure: $(MESA3D_DIR)/.configured
 mesa3d-build:     $(MESA3D_DIR)/.built
 mesa3d:           mesa3d-depends $(MESA3D_DIR)/.installed	

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/x11r7/mesa3d
@ 2009-02-24 13:29 jacmet at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: jacmet at uclibc.org @ 2009-02-24 13:29 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-02-24 13:29:55 +0000 (Tue, 24 Feb 2009)
New Revision: 25441

Log:
mesa3d: use MAKE1 instead of playing around with BR2_JLEVEL

Modified:
   trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk


Changeset:
Modified: trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk
===================================================================
--- trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2009-02-24 13:29:50 UTC (rev 25440)
+++ trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2009-02-24 13:29:55 UTC (rev 25441)
@@ -36,11 +36,10 @@
 	) >> $(MESA_CONFIG_FILE)
 	touch $@
 
-$(MESA3D_DIR)/.built: BR2_JLEVEL=1
 $(MESA3D_DIR)/.built: $(MESA3D_DIR)/.configured
 	gccinc=$$($(TARGET_CC) -print-search-dirs | grep '^install:' | sed 's@^install: @@')include; \
 	rm -f $(MESA3D_DIR)/config/current
-	env $(MESA_BUILD_ENV) $(MAKE) \
+	env $(MESA_BUILD_ENV) $(MAKE1) \
 		MKDEP="makedepend -I$$gccinc" \
 		CC=$(TARGET_CC) CXX=$(TARGET_CXX) CC_FOR_BUILD=/usr/bin/gcc \
 		-C $(MESA3D_DIR) $(MESA_TARGET)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/x11r7/mesa3d
@ 2009-02-24 13:29 jacmet at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: jacmet at uclibc.org @ 2009-02-24 13:29 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-02-24 13:29:59 +0000 (Tue, 24 Feb 2009)
New Revision: 25442

Log:
mesa: use correct config file for arch

Modified:
   trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk


Changeset:
Modified: trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk
===================================================================
--- trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2009-02-24 13:29:55 UTC (rev 25441)
+++ trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2009-02-24 13:29:59 UTC (rev 25442)
@@ -7,9 +7,23 @@
 MESA3D_SOURCE:=MesaLib-$(MESA3D_VERSION).tar.gz
 MESA3D_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/mesa3d
 MESA3D_DIR:=$(BUILD_DIR)/Mesa-$(MESA3D_VERSION)
-MESA_TARGET=linux-dri-x86
+MESA_TARGET:=linux-dri
+
+ifeq ($(BR2_i386),y)
+MESA_TARGET:=linux-dri-x86
+endif
+
+ifeq ($(BR2_x86_64),y)
+MESA_TARGET:=linux-dri-x86-64
+endif
+
+ifeq ($(BR2_ppc),y)
+MESA_TARGET:=linux-dri-ppc
+endif
+
 MESA_BUILD_ENV=$(TARGET_CONFIGURE_OPTS)
 MESA_CONFIG_FILE=$(MESA3D_DIR)/configs/$(MESA_TARGET)
+
 #MESA_DRIVERS= i810 i915 i965 mga mach64 r128 r200 r300 s3v savage sis ffb tdfx trident unichrome
 MESA_DRIVERS=
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/x11r7/mesa3d
@ 2009-02-24 13:30 jacmet at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: jacmet at uclibc.org @ 2009-02-24 13:30 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-02-24 13:30:03 +0000 (Tue, 24 Feb 2009)
New Revision: 25443

Log:
mesa3d: fix makedepend arguments

Make sure makedepends only searches the gcc/staging dir, and not the
host include dirs.

Modified:
   trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk


Changeset:
Modified: trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk
===================================================================
--- trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2009-02-24 13:29:59 UTC (rev 25442)
+++ trunk/buildroot/package/x11r7/mesa3d/mesa3d.mk	2009-02-24 13:30:03 UTC (rev 25443)
@@ -24,6 +24,8 @@
 MESA_BUILD_ENV=$(TARGET_CONFIGURE_OPTS)
 MESA_CONFIG_FILE=$(MESA3D_DIR)/configs/$(MESA_TARGET)
 
+MESA_GCCINCLUDE=$(shell $(TARGET_CC) -print-search-dirs|grep '^install:'|sed 's/^install: //')/include
+
 #MESA_DRIVERS= i810 i915 i965 mga mach64 r128 r200 r300 s3v savage sis ffb tdfx trident unichrome
 MESA_DRIVERS=
 
@@ -46,15 +48,14 @@
 		echo "USING_EGL = 0" && \
 		echo "X11_INCLUDES = " && \
 		echo "EXTRA_LIB_PATH = " && \
-		echo "PROGRAM_DIRS =" \
+		echo "PROGRAM_DIRS =" && \
+		echo "MKDEP_OPTIONS = -fdepend -Y$(STAGING_DIR)/usr/include -I$(MESA_GCCINCLUDE)" \
 	) >> $(MESA_CONFIG_FILE)
 	touch $@
 
 $(MESA3D_DIR)/.built: $(MESA3D_DIR)/.configured
-	gccinc=$$($(TARGET_CC) -print-search-dirs | grep '^install:' | sed 's@^install: @@')include; \
 	rm -f $(MESA3D_DIR)/config/current
 	env $(MESA_BUILD_ENV) $(MAKE1) \
-		MKDEP="makedepend -I$$gccinc" \
 		CC=$(TARGET_CC) CXX=$(TARGET_CXX) CC_FOR_BUILD=/usr/bin/gcc \
 		-C $(MESA3D_DIR) $(MESA_TARGET)
 	touch $@

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-02-24 13:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-11 10:08 [Buildroot] svn commit: trunk/buildroot/package/x11r7/mesa3d ulf at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2009-02-24 13:29 jacmet at uclibc.org
2009-02-24 13:29 jacmet at uclibc.org
2009-02-24 13:30 jacmet at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox