On Fri, Mar 28, 2014 at 11:09:14AM -0000, Gerhard Grimm wrote:

> So I examined the git source package and found that the author of the
> HP-UX port forgot to set
> 
> PTHREAD_CFLAGS=-mt
> 
> in config.mak.autogen to enable threading.

You probably want to place such manual settings in config.mak. If you
use the "./configure" script, it will overwrite config.mak.autogen.

> git submodule init
> 
> fails with the output
> 
>     Assertion failed: err == REG_ESPACE, file compat/regex/regexec.c, line 
> 1096
>     No submodule mapping found in .gitmodules for path 'module'
> 
> and the stacktrace of the resulting core dump is
> 
> #0  0xc020ced0 in kill+0x10 () from /usr/lib/libc.2
> #1  0xc01a7f84 in raise+0x24 () from /usr/lib/libc.2
> #2  0xc01e9308 in abort_C+0x160 () from /usr/lib/libc.2
> #3  0xc01e9364 in abort+0x1c () from /usr/lib/libc.2
> #4  0xc0176998 in _assert+0x178 () from /usr/lib/libc.2
> #5  0x205fa0 in check_matching+0x290 ()
> #6  0x2053b8 in re_search_internal+0x128 ()
> #7  0x204ac0 in regexec+0xc8 ()
> #8  0x4da40 in collect_config+0x60 ()
> #9  0x108b30 in get_value+0xd8 ()
> [...]

The regexes we use here are not particularly complicated. So either
there is a bug (but nobody else has reported anything on any other
platform) or your system regex library has some problem with what we are
feeding it. The simplest solution may be to compile with:

  NO_REGEX=YesPlease

which will build and use the glibc implementation in compat/regex
instead.

-Peff
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to