1. 13 3月, 2009 7 次提交
  2. 21 1月, 2009 1 次提交
  3. 06 1月, 2009 1 次提交
  4. 03 12月, 2008 2 次提交
  5. 10 11月, 2008 1 次提交
  6. 03 11月, 2008 1 次提交
    • D
      autoconf: Add link tests to each AC_CHECK_FUNC() test · 1689c5de
      David M. Syzdek 提交于
      Update configure.ac to test libraries for getaddrinfo, strcasestr, memmem,
      strlcpy, strtoumax, setenv, unsetenv, and mkdtemp.  The default compilers
      on FreeBSD 4.9-SECURITY and FreeBSD 6.2-RELEASE-p4 do not generate warnings
      for missing prototypes unless `-Wall' is used. This behavior renders the
      results of AC_CHECK_FUNC() void on these platforms. The test AC_SEARCH_LIBS()
      verifies a function is valid by linking to symbol within the system libraries.
      
      Since this pattern needs to be repeated for many functions that are
      checked with AC_CHECK_FUNC(), we add GIT_CHECK_FUNC() to drive the two
      autoconf macros together.
      Signed-off-by: NDavid M. Syzdek <david.syzdek@acsalaska.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      1689c5de
  7. 02 11月, 2008 1 次提交
  8. 18 8月, 2008 1 次提交
  9. 16 6月, 2008 1 次提交
  10. 11 3月, 2008 1 次提交
  11. 06 3月, 2008 1 次提交
  12. 26 1月, 2008 1 次提交
  13. 18 1月, 2008 1 次提交
  14. 11 12月, 2007 1 次提交
  15. 07 12月, 2007 1 次提交
  16. 01 12月, 2007 1 次提交
  17. 21 11月, 2007 1 次提交
  18. 08 11月, 2007 2 次提交
  19. 03 10月, 2007 1 次提交
  20. 01 8月, 2007 1 次提交
  21. 31 7月, 2007 1 次提交
  22. 01 4月, 2007 2 次提交
  23. 19 2月, 2007 1 次提交
    • F
      New autoconf test for iconv · e63ccb84
      Fredrik Kuivinen 提交于
      On a Solaris machine I have access to libc contains the symbol
      "iconv" but, when compiling with gcc and including iconv.h we get
      iconv.h from GNU libiconv. This header file define (among other
      things) "iconv" to "libiconv" and so on.
      
      In order to link with GNU libiconv we need -liconv. Currently we
      test if the symbol "iconv" is in libc (which is true), then we get
      a undefined reference error because we don't have libiconv_open.
      
      The solution this patch implements is to compile and link a
      small test program, instead of just checking if the libraries
      (libc and libiconv) contains the symbol "iconv".
      Signed-off-by: NFredrik Kuivinen <frekui@gmail.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      e63ccb84
  24. 23 12月, 2006 1 次提交
  25. 20 12月, 2006 1 次提交
  26. 22 11月, 2006 1 次提交
  27. 30 9月, 2006 1 次提交
  28. 25 9月, 2006 1 次提交
    • J
      Deprecate merge-recursive.py · a06f678e
      Junio C Hamano 提交于
      This renames merge-recursive written in Python to merge-recursive-old,
      and makes merge-recur as a synonym to merge-recursive.  We do not remove
      merge-recur yet, but we will remove merge-recur and merge-recursive-old
      in a few releases down the road.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      a06f678e
  29. 08 9月, 2006 2 次提交
  30. 06 9月, 2006 1 次提交