Skip to content
  • Dmitry Ivankov's avatar
    Reduce parse-options.o dependencies · 06876284
    Dmitry Ivankov authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    Currently parse-options.o pulls quite a big bunch of dependencies.
    his complicates it's usage in contrib/ because it pulls external
    dependencies and it also increases executables size.
    
    Split off less generic and more internal to git part of
    parse-options.c to parse-options-cb.c.
    
    Move prefix_filename function from setup.c to abspath.c. abspath.o
    and wrapper.o pull each other, so it's unlikely to increase the
    dependencies. It was a dependency of parse-options.o that pulled
    many others.
    
    Now parse-options.o pulls just abspath.o, ctype.o, strbuf.o, usage.o,
    wrapper.o, libc directly and strlcpy.o indirectly.
    
    Signed-off-by: default avatarDmitry Ivankov <divanorama@gmail.com>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    06876284