On Thu, Jun 02, 2011 at 03:29:04PM +0000, Randy Brandenburg wrote: > I rebuilt git-1.7.5 from source on the Solaris 9 platform with gcc-3.4.6, GNU > make 3.82, and GNU install (from coreutils 8.11). Following these steps > > ---------------------------------------------------------------------------- > # ./configure CC=gcc Hmm, I would have thought configure would set up most of what you needed below, but it's possible our autoconf is not very complete (unlike many projects, it's not necessary to use it to build). > Edit the Makefile - set the path to "ar", "gcc" and GNU "install". > CC = /usr/local/bin/gcc > AR = /usr/ccs/bin/ar > INSTALL = /usr/local/bin/install > Look for ifeq ($(uname_S),SunOS) and set INSTALL to /usr/lcoal/bin/install Rather than edit the Makefile, you can put these in "config.mak" which is sourced automatically by the Makefile (after the defaults are set up, so you can override them). > # gmake NO_TCLTK=1 NO_CURL=1 NO_PTHREADS=YesPlease install prefix=/opt/sfw > # git --version > git version 1.7.5 > ---------------------------------------------------------------------------- > Preliminary testing indicates a working system -- will investigate thourough > today and tomorrow. Great, I'm glad it's working. With NO_PTHREADS set, you will be fork()ing off the sideband process instead of using a thread. So you avoid pthreads altogether and it works, but you can't do multi-threaded delta compression. If you build without NO_PTHREADS set on a Solaris 9 box, does it work on that same box? That would confirm or deny my ABI compatibility theory (and hopefully point us in the right direction for the sunfreeware people to build a binary that works on Solaris 9 and 10). -Peff -- 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