diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-29 18:29:05 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-29 18:29:05 +0000 |
commit | eb0d83719b0e43b198d18af2885a378f90822c83 (patch) | |
tree | 0389dc835f0befcd0f31e2eb09aee1b06dc1901a | |
parent | 4305c6e2e90ccbf19a59dae271f42556a850bb5e (diff) |
Fixed unreal 3.1 support in the configure.in script, as it was left out :)
git-svn-id: svn://svn.anope.org/anope/trunk@339 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@215 5417fbe8-f217-4b02-8779-1006273d7864
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -8365,7 +8365,7 @@ cat >>confdefs.h <<\_ACEOF #define IRC_BAHAMUT 1 _ACEOF - elif test "$withval" = "IRC_UNREAL"; then + elif test "$withval" = "IRC_UNREAL31"; then cat >>confdefs.h <<\_ACEOF #define IRC_UNREAL31 1 diff --git a/configure.in b/configure.in index 9a1cf41e8..ef14a18b7 100644 --- a/configure.in +++ b/configure.in @@ -190,7 +190,7 @@ AC_ARG_WITH(ircd, [ --with-ircd=ircd Specify the first ircd type], [ AC_DEFINE(IRC_DREAMFORGE,1,"Frist IRCD type") elif test "$withval" = "IRC_BAHAMUT"; then AC_DEFINE(IRC_BAHAMUT,1,"First IRCD type") - elif test "$withval" = "IRC_UNREAL"; then + elif test "$withval" = "IRC_UNREAL31"; then AC_DEFINE(IRC_UNREAL31,1,"First IRCD type") elif test "$withval" = "IRC_ULTIMATE"; then AC_DEFINE(IRC_ULTIMATE,1,"First IRCD type") |