mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-03 08:11:03 +02:00
23575: AIX needs features_() and enables_()
This commit is contained in:
parent
84fa9b4af1
commit
266233eb95
2 changed files with 17 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
2007-06-19 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* 23575: Src/Modules/newuser.c: yet another problem on AIX:
|
||||
need features_ and enables_ functions.
|
||||
|
||||
* unposted, c.f. 23572: Src/modentry.c: bad prototype.
|
||||
|
||||
* 23571: Src/module.c: AIX definitions weren't right.
|
||||
|
|
|
@ -39,6 +39,20 @@ setup_(UNUSED(Module m))
|
|||
return 0;
|
||||
}
|
||||
|
||||
/**/
|
||||
int
|
||||
features_(Module m, char ***features)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**/
|
||||
int
|
||||
enables_(Module m, int **enables)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**/
|
||||
static int
|
||||
check_dotfile(const char *dotdir, const char *fname)
|
||||
|
|
Loading…
Reference in a new issue