diff options
| author | 2006-03-19 17:08:59 +0000 | |
|---|---|---|
| committer | 2006-03-19 17:08:59 +0000 | |
| commit | 33701bf0ece871b68cd02df9e5adcf7d2d63df56 (patch) | |
| tree | 9659d56734ea99a6aca5561fff618c3c82410ddd | |
| parent | Test fix for topic loop (diff) | |
| download | inspircd++-33701bf0ece871b68cd02df9e5adcf7d2d63df56.tar.gz inspircd++-33701bf0ece871b68cd02df9e5adcf7d2d63df56.tar.bz2 inspircd++-33701bf0ece871b68cd02df9e5adcf7d2d63df56.zip | |
Check g++ not gcc in configure
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3733 e03df62e-2008-0410-955e-edbf42e46eb7
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,8 +39,8 @@ $config{THREADED_DNS} = "n"; # threaded dns (experimental) $config{STATIC_LINK} = "no"; # are doing static modules? chomp($config{MAX_CLIENT_T} = `sh -c \"ulimit -n\"`); # FD Limit chomp($config{MAX_DESCRIPTORS} = `sh -c \"ulimit -n\"`); # Hard FD Limit -chomp($config{GCCVER} = `gcc -dumpversion | cut -c 1`); # Major GCC Version -chomp($config{GCC34} = `gcc -dumpversion | cut -c 3`); # Minor GCC Version +chomp($config{GCCVER} = `g++ -dumpversion | cut -c 1`); # Major GCC Version +chomp($config{GCC34} = `g++ -dumpversion | cut -c 3`); # Minor GCC Version chomp($config{OSNAME} = `/bin/uname`); # Operating System Name $config{CC} = "g++"; # C++ compiler $config{MAKEORDER} = "ircd mods"; # build order |
