diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-29 21:31:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-29 21:31:53 +0000 |
commit | e3f9679ac7c4e8770602d6d3c04d3bd511cce459 (patch) | |
tree | 7da30e1591100fedafda0396c9924bd57c8813c4 /configure | |
parent | 40b9d63a3c7264e715a37332515680ae3c2f844d (diff) |
Added warning about gcc2
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1560 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -475,6 +475,16 @@ other ircds. FOO } +if ($config{GCCVER} < "3") { + print <<FOO2; +\033[1;32mWARNING!\033[0m You are attempting to compile InspIRCd on GCC 2.x! +GCC 2.x series compilers only had partial (read as broken) C++ support, and +your compile will most likely fail horribly! If you have any problems, do NOT +report them to the bugtracker or forums without first upgrading your compiler +to a newer 3.x or 4.x (or whatever is available currently) version. +FOO2 +} + ################################################################################ # HELPER FUNCTIONS # ################################################################################ |