Ingo Feinerer said:
> - Besides C and C++ there is also a Fortran interface (--enable-fortran
>   and --enable-fortran2003). Should it be enabled (considering the extra
>   dependencies)?

I'd rather not enable it until someone needs it.  You could add a
comment that Fortran interface is available but not built.  You could
also add a commented out block of VAR+= entries that would enable
Fortran interface if uncommented.

> - Using gsed in patch-configure is the easiest fix but not necessarily
>   the best one ... (as there is a BUILD_DEPENDS then)

Instead of

| +gsed -e '/^postdeps/ s/-l \(a-zA-Z\)/-l\1/g' -e '/^postdeps/ s/-l //g' -i 
libtool

I'd rather do

  mv libtool{,.orig}
  sed -e '/^postdeps/ s/-l \([a-zA-Z]\)/-l\1/g' -e '/^postdeps/ s/-l //g' 
libtool.orig > libtool

-- 
Dmitrij D. Czarkoff

Reply via email to