On Wed, 30 Jul 2008, Aidan Van Dyk wrote: > > I came about this because SCO OpenServer doesnt' have mkdtemp. But I never use > rsync, so making it optional was an easy fix. Hmm. Without mkdtemp(), maybe you could just do a trivial compat function somethin glike char *git_mkdtemp(char *template) { char *n = mktemp(template); if (mkdir(n)) n = NULL; return n; } instead? Linus -- 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