Skip to content
Snippets Groups Projects
Commit d0bb21a8 authored by Jorrit Fahlke's avatar Jorrit Fahlke
Browse files

Try to make it work on opensolaris:

* SunOS basic regexps are very /basic/: no support for character classes like
  [:alnum:], no '+' (not even '\+') and the greediness of stuff like '\{m,n\}'
  is not well defined, which is a problem in sed 's/.../.../' (according to
  the man page, it should work only with regular expressions matching a single
  character, i.e. not with '\(...\)').  Therefore, a lot of parsers had to be
  rewritten, especially the one for (versioned) dependencies.
* Don't use grep's -q option, it's not portable.  Use >/dev/null instead.
* Awk on SunOS is very basic as well.

Currently it still fails in configure, but at least it gets there...


[[Imported from SVN: r5400]]
parent 2d63694f
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment