Re: add shared lib target to devel/libowfat

2016-10-07 Thread Jan Klemkow
Hi, After the update to 0.31, this diff adds a shared library build target to this port. The upstream makefile builds just a static library. I tested this diff with portcheck tools and build shared and static linked programs with this this library. Bye, Jan Index: Makefile

Re: add shared lib target to devel/libowfat

2016-10-05 Thread Alexander Bluhm
On Wed, Oct 05, 2016 at 08:28:14PM +0200, Jan Klemkow wrote: > On Wed, Oct 05, 2016 at 02:18:00AM +0200, Alexander Bluhm wrote: > > On Wed, Oct 05, 2016 at 02:10:15AM +0200, Jan Klemkow wrote: > > > + install-lib: libowfat.a > > > + install -d $(LIBDIR) > > > + install -m 644 libowf

Re: add shared lib target to devel/libowfat

2016-10-05 Thread Jan Klemkow
On Wed, Oct 05, 2016 at 02:18:00AM +0200, Alexander Bluhm wrote: > On Wed, Oct 05, 2016 at 02:10:15AM +0200, Jan Klemkow wrote: > > + install-lib: libowfat.a > > + install -d $(LIBDIR) > > + install -m 644 libowfat.a $(LIBDIR) > > ++ install -m 644 libowfat.so.$(SO_VERSION) $(LIBDIR) > > inst

Re: add shared lib target to devel/libowfat

2016-10-04 Thread Alexander Bluhm
On Wed, Oct 05, 2016 at 02:10:15AM +0200, Jan Klemkow wrote: > + install-lib: libowfat.a > + install -d $(LIBDIR) > + install -m 644 libowfat.a $(LIBDIR) > ++install -m 644 libowfat.so.$(SO_VERSION) $(LIBDIR) install-lib: also depends on libowfat.so.$(SO_VERSION) now otherwise OK bluh

Re: add shared lib target to devel/libowfat

2016-10-04 Thread Jan Klemkow
On Wed, Oct 05, 2016 at 01:40:10AM +0200, Jan Klemkow wrote: > Hi, > > This diff adds a shared library build target to this port. The upstream > makefile builds only a static library. I tested this diff with > portcheck tools and build shared and static linked programs with this > this library.

add shared lib target to devel/libowfat

2016-10-04 Thread Jan Klemkow
Hi, This diff adds a shared library build target to this port. The upstream makefile builds only a static library. I tested this diff with portcheck tools and build shared and static linked programs with this this library. Bye, Jan Index: Makefile ==