Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 775881 | Differences between
and this patch

Collapse All | Expand All

(-)a/graph/rules.mk (-3 / +3 lines)
Lines 12-18 Link Here
12
12
13
13
14
GRAPH_INCLUDES := $(subst /,$(COMPILER_SEP),$(TOP_DIR_2)/graph)
14
GRAPH_INCLUDES := $(subst /,$(COMPILER_SEP),$(TOP_DIR_2)/graph)
15
GRAPH_LIB      := $(OBJ_DIR_2)/graph.$(SA)
16
15
17
GRAPH := $(TOP_DIR_2)/graph
16
GRAPH := $(TOP_DIR_2)/graph
18
17
Lines 46-54 GRAPH_OBJS := $(OBJ_DIR_2)/gblblit.$(O) \ Link Here
46
# this value can be modified by the system-specific graphics drivers.
45
# this value can be modified by the system-specific graphics drivers.
47
#
46
#
48
ifneq ($(LIBTOOL),)
47
ifneq ($(LIBTOOL),)
49
  COMPILE_GRAPH_LIB = $(LIBTOOL) --mode=link $(CCraw) -static \
48
  GRAPH_LIB        := $(OBJ_DIR_2)/graph.$(A)
49
  COMPILE_GRAPH_LIB = $(LIBTOOL) --mode=link $(CCraw) -module -static \
50
                                 -o $(subst /,$(COMPILER_SEP),$@ $(GRAPH_OBJS))
50
                                 -o $(subst /,$(COMPILER_SEP),$@ $(GRAPH_OBJS))
51
else
51
else
52
  GRAPH_LIB        := $(OBJ_DIR_2)/graph.$(SA)
52
  COMPILE_GRAPH_LIB = ar -r $(subst /,$(COMPILER_SEP),$@ $(GRAPH_OBJS))
53
  COMPILE_GRAPH_LIB = ar -r $(subst /,$(COMPILER_SEP),$@ $(GRAPH_OBJS))
53
endif
54
endif
54
55
55
- 

Return to bug 775881