From eb27de43ebbce3ee15e7b2230b86e88ad2539b0e Mon Sep 17 00:00:00 2001 From: sobomax Date: Thu, 22 Feb 2001 10:01:04 +0000 Subject: Use -lgcc_r only if /usr/lib/libgcc_r.a actually exists. Prompted by: Anders Andersson --- www/galeon/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'www/galeon') diff --git a/www/galeon/Makefile b/www/galeon/Makefile index 7763801a343e..b65b50dde7de 100644 --- a/www/galeon/Makefile +++ b/www/galeon/Makefile @@ -40,7 +40,11 @@ CONFIGURE_ARGS= --with-mozilla-includes="${X11BASE}/include/mozilla" \ --with-mozilla-libs="${X11BASE}/lib/${MOZILLA}" CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ -D_REENTRANT -D_THREAD_SAFE -fno-rtti" \ - LIBS="-L${LOCALBASE}/lib -L${WRKSRC} -pthread -lgcc_r" + LIBS="-L${LOCALBASE}/lib -L${WRKSRC} -pthread ${GCC_R_LIB}" + +.if exists(/usr/lib/libgcc_r.a) +GCC_R_LIB= -lgcc_r +.endif post-extract: .if !defined(WITH_FULL_MOZILLA) -- cgit