On Sun, Nov 14, 2010 at 22:27, Jonathan Nieder <jrnieder@xxxxxxxxx> wrote: > Ãvar ArnfjÃrà Bjarmason wrote: > >> Thanks for the suggestion. I'll put it in envsubst/ then. >> >> Any idea about the issue of it being linked to too many things? > > Maybe http://thread.gmane.org/gmane.comp.version-control.git/160842 > is related? > >> tried to add another entry to this section: >> >>   git-%$X: %.o $(GITLIBS) >>     $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter >> %.o,$^) $(LIBS) >> >>   git-imap-send$X: imap-send.o $(GITLIBS) >>     $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ >>       $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL) >> >> But it wasn't actually used. But then again I don't know Makefile >> hacking that much. > > If you send output from "make envsubst" from your attempt with V=1, > I can try to debug it. This is how it currently gets compiled: $ rm git-sh-i18n--envsubst sh-i18n--envsubst.o; make -j 5 all V=1 gcc -o sh-i18n--envsubst.o -c -g -O2 -Wall -I. -DHAVE_PATHS_H -DSHA1_HEADER='<openssl/sha.h>' -DNO_STRLCPY -DNO_MKSTEMPS sh-i18n--envsubst.c gcc -g -O2 -Wall -I. -DHAVE_PATHS_H -DSHA1_HEADER='<openssl/sha.h>' -DNO_STRLCPY -DNO_MKSTEMPS -o git-sh-i18n--envsubst sh-i18n--envsubst.o libgit.a xdiff/lib.a -lz -lcrypto -lpthread I tried to remove some of those library includes. But it'll complain. However if I do: diff --git a/sh-i18n--envsubst.c b/sh-i18n--envsubst.c index 8db71b1..7d4c870 100644 --- a/sh-i18n--envsubst.c +++ b/sh-i18n--envsubst.c @@ -215 +215 @@ string_list_append (string_list_ty *slp, const char *s) - slp->item = (const char **) xrealloc (slp->item, nbytes); + slp->item = (const char **) realloc (slp->item, nbytes); @@ -293 +293 @@ note_variable (const char *var_ptr, size_t var_len) - char *string = xmalloc (var_len + 1); + char *string = malloc (var_len + 1); @@ -368 +368 @@ subst_from_stdin () - buffer = xrealloc (buffer, bufmax); + buffer = realloc (buffer, bufmax); @@ -402 +402 @@ subst_from_stdin () - buffer = xrealloc (buffer, bufmax); + buffer = realloc (buffer, bufmax); It'll compile stand-alone with no library includes at all. Maybe I should just modify it to have basic versions of those two x* functions so we can compile it completely stand-alone. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html