Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/premake/files: archless.patch
Date: Sun, 01 May 2011 21:57:34
Message-Id: 20110501215724.6397B20054@flycatcher.gentoo.org
1 hwoarang 11/05/01 21:57:24
2
3 Added: archless.patch
4 Log:
5 Version bump. Thanks to Aaron W. Swenson <titanofold@g.o> for the ebuild and the patch. Bug #364017
6
7 (Portage version: 2.1.9.44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-util/premake/files/archless.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/premake/files/archless.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/premake/files/archless.patch?rev=1.1&content-type=text/plain
14
15 Index: archless.patch
16 ===================================================================
17 diff -Naur premake-4.3.orig/build/gmake.unix/Premake4.make premake-4.3/build/gmake.unix/Premake4.make
18 --- premake-4.3.orig/build/gmake.unix/Premake4.make 2010-11-16 06:29:14.000000000 -0500
19 +++ premake-4.3/build/gmake.unix/Premake4.make 2011-04-18 07:24:59.374986001 -0400
20 @@ -26,13 +26,12 @@
21 DEFINES += -DNDEBUG -DLUA_USE_POSIX -DLUA_USE_DLOPEN
22 INCLUDES += -I../../src/host/lua-5.1.4/src
23 CPPFLAGS += -MMD -MP $(DEFINES) $(INCLUDES)
24 - CFLAGS += $(CPPFLAGS) $(ARCH) -Wall -Os
25 - CXXFLAGS += $(CFLAGS)
26 - LDFLAGS += -s -rdynamic
27 + CFLAGS += $(CPPFLAGS) -Wall
28 + LDFLAGS += -rdynamic
29 LIBS += -lm -ldl
30 RESFLAGS += $(DEFINES) $(INCLUDES)
31 LDDEPS +=
32 - LINKCMD = $(CC) -o $(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(ARCH) $(LIBS)
33 + LINKCMD = $(CC) -o $(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(LIBS)
34 define PREBUILDCMDS
35 endef
36 define PRELINKCMDS
37 @@ -48,13 +47,12 @@
38 DEFINES += -D_DEBUG -DLUA_USE_POSIX -DLUA_USE_DLOPEN
39 INCLUDES += -I../../src/host/lua-5.1.4/src
40 CPPFLAGS += -MMD -MP $(DEFINES) $(INCLUDES)
41 - CFLAGS += $(CPPFLAGS) $(ARCH) -Wall -g
42 - CXXFLAGS += $(CFLAGS)
43 + CFLAGS += $(CPPFLAGS) -Wall -g
44 LDFLAGS += -rdynamic
45 LIBS += -lm -ldl
46 RESFLAGS += $(DEFINES) $(INCLUDES)
47 LDDEPS +=
48 - LINKCMD = $(CC) -o $(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(ARCH) $(LIBS)
49 + LINKCMD = $(CC) -o $(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(LIBS)
50 define PREBUILDCMDS
51 endef
52 define PRELINKCMDS