Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

CC check inconsistency between source and bindist configure scripts
The bindist configure script has: ``` AC_PROG_CC([gcc clang]) AC_PROG_CXX([g++ clang++ c++]) ``` whereas the source configure script has: ``` AC_PROG_CC([cc gcc clang]) AC_PROG_CXX([g++ clang++ c++]) ``` There are two issues here: * the binary distribution check won't use `cc` * both checks favor concrete C++ compilers rather than the generic `c++` executable
issue