Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 305411
Collapse All | Expand All

(-)a/buildsys.module.mk (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
.c$(PLUGIN_SUFFIX):
8
.c$(PLUGIN_SUFFIX):
9
	${COMPILE_STATUS}
9
	${COMPILE_STATUS}
10
	if ${CC} ${PLUGIN_CFLAGS} ${PLUGIN_LDFLAGS} ${CFLAGS} ${CPPFLAGS} ${LIBS} -o $@ $<; then \
10
	if ${CC} ${CFLAGS} ${PLUGIN_CFLAGS} ${CPPFLAGS} ${PLUGIN_LDFLAGS} ${LDFLAGS} -o $@ $< ${LIBS}; then \
11
		${COMPILE_OK}; \
11
		${COMPILE_OK}; \
12
	else \
12
	else \
13
		${COMPILE_FAILED}; \
13
		${COMPILE_FAILED}; \
(-)a/configure.ac (-1 / +1 lines)
Lines 339-345 Link Here
339
	if test "$Tru" = yes -a "$CC" != gcc; then
339
	if test "$Tru" = yes -a "$CC" != gcc; then
340
		AC_MSG_RESULT([Tru64: -shared -expect_unresolved '*'])
340
		AC_MSG_RESULT([Tru64: -shared -expect_unresolved '*'])
341
		PICFLAGS="-shared -expect_unresolved '*' "
341
		PICFLAGS="-shared -expect_unresolved '*' "
342
		LDFLAGS="-call_shared"
342
		LDFLAGS="${hold_ldflags} -call_shared"
343
	fi
343
	fi
344
344
345
	if test "$CC" = tcc -a "$TenDRA" = no; then
345
	if test "$CC" = tcc -a "$TenDRA" = no; then

Return to bug 305411