> The Makefile made libutil.a and libutf.a identical. Here is a patch to fix 
> this.
>  
>  -$(LIB): $(LIBUTFOBJ) $(LIBUTILOBJ)
>  +$(LIBUTF): $(LIBUTFOBJ)
>  +    $(AR) -r -c $@ $?
>  +    $(RANLIB) $@
>  +
>  +$(LIBUTIL): $(LIBUTILOBJ)
>       $(AR) -r -c $@ $?
>       $(RANLIB) $@
>   

In fact, POSIX says that it could be only:


        $(LIB): libutf($(LIBUTFOBJ)) libutil($(LIBUTILOBJ))

but my experience is that it doesn't work in BSD systems :(

Regards,


Reply via email to