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

Collapse All | Expand All

(-)Firebird-3.0.7.33374-0/builds/posix/Makefile.in (-4 / +4 lines)
Lines 127-134 Link Here
127
endif
127
endif
128
128
129
extern:
129
extern:
130
	$(MAKE) -C $(ROOT)/extern/btyacc
130
	$(MAKE) -C $(ROOT)/extern/btyacc CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
131
	$(MAKE) -C $(ROOT)/extern/cloop TARGET=release WITH_FPC=0 BUILD_DIR=$(TMP_ROOT)/cloop OUT_DIR=$(GEN_ROOT)/$(TARGET)/cloop
131
	$(MAKE) -C $(ROOT)/extern/cloop TARGET=release WITH_FPC=0 BUILD_DIR=$(TMP_ROOT)/cloop OUT_DIR=$(GEN_ROOT)/$(TARGET)/cloop CXX="$(CXX)" CXXFLAGS="$(OPTIMIZE_FLAGS)" CFLAGS="${CFLAGS}" CC="${CC}" LDFLAGS="$(LDDFLAGS)"
132
132
133
ifeq ($(TOMBUILD_FLG),Y)
133
ifeq ($(TOMBUILD_FLG),Y)
134
	$(MAKE) -C $(ROOT)/extern/libtommath -f makefile.shared LIBTOOL=$(LIBTOOL)
134
	$(MAKE) -C $(ROOT)/extern/libtommath -f makefile.shared LIBTOOL=$(LIBTOOL)
Lines 592-599 Link Here
592
	$(EXE_LINK) $(EXE_LINK_OPTIONS) $^ -o $@ $(FIREBIRD_LIBRARY_LINK) $(LINK_LIBS) $(call LINK_DARWIN_RPATH,..)
592
	$(EXE_LINK) $(EXE_LINK_OPTIONS) $^ -o $@ $(FIREBIRD_LIBRARY_LINK) $(LINK_LIBS) $(call LINK_DARWIN_RPATH,..)
593
593
594
examples: include_generic
594
examples: include_generic
595
	$(MAKE) -f Makefile.examples -C $(GEN_ROOT)/examples/
595
	$(MAKE) -f Makefile.examples -C $(GEN_ROOT)/examples/ CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
596
	$(MAKE) -f Makefile.plugins_examples
596
	$(MAKE) -f Makefile.plugins_examples CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
597
597
598
message_file:	$(FIREBIRD_MSG)
598
message_file:	$(FIREBIRD_MSG)
599
599
(-)Firebird-3.0.7.33374-0/extern/cloop/Makefile (-2 / +2 lines)
Lines 44-53 Link Here
44
44
45
define compile
45
define compile
46
$1/%.o: %.c
46
$1/%.o: %.c
47
	$(CC) -c $$(C_FLAGS) $$< -o $$@
47
	$(CC) -c $$(CFLAGS) -fPIC $$< -o $$@
48
48
49
$1/%.o: %.cpp
49
$1/%.o: %.cpp
50
	$(CXX) -c $$(CXX_FLAGS) $$< -o $$@
50
	$(CXX) -c $$(CXXFLAGS) -fPIC $$< -o $$@
51
endef
51
endef
52
52
53
.PHONY: all mkdirs clean
53
.PHONY: all mkdirs clean

Return to bug 757282