forked from Lainports/freebsd-ports
Any strip on any FreeBSD version should be able to handle stripping requested by libtool PR: 198611 Reviewed by: emaste Exp-run: self
15 lines
577 B
Text
15 lines
577 B
Text
--- configure.orig
|
|
+++ configure
|
|
@@ -18418,10 +18418,10 @@
|
|
if test x$FLTK_CONFIG != xno ; then
|
|
if test x$STATIC_FLTK != xtrue ; then
|
|
FLTK_CXXFLAGS="`$FLTK_CONFIG --use-gl --cxxflags`"
|
|
- FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldstaticflags`"
|
|
+ FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldstaticflags | sed 's/ -R.* / /g'`"
|
|
else
|
|
FLTK_CXXFLAGS="`$FLTK_CONFIG --use-gl --cxxflags`"
|
|
- FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldflags`"
|
|
+ FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldflags | sed 's/ -R.* / /g'`"
|
|
fi
|
|
else
|
|
FLTK_CXXFLAGS=""
|