diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-10-17 21:25:16 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-10-17 21:25:16 +0000 |
commit | 706c469cf6b427560ac125155f0a19311389ec4f (patch) | |
tree | 8172fcb9d2db8a5c31815011a194e0aab04cb3bb /install.js | |
parent | 9bf8366451b60148699657ed966c0913fbae9465 (diff) |
BUILD : 1.7.17 (1186) BUGS : N/A NOTES : Encryption fixes for win32
git-svn-id: svn://svn.anope.org/anope/trunk@1186 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@906 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'install.js')
-rw-r--r-- | install.js | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/install.js b/install.js index 8e5b1557d..652916f2a 100644 --- a/install.js +++ b/install.js @@ -72,34 +72,7 @@ var installerQuestions = [ } } }, - - { - 'question' : [ - 'Do you want to compile Anope with Encrypted Passwords?', - 'NOTE: Once passwords are encrypted, they CANNOT be recovered!', - 'NOTE: Enabling Encrypted Passwords will also disable GETPASS/SENDPASS' - ], - 'short' : 'Enable Encrypted Passwords?', - 'options' : [ - 'yes', - 'no' - ], - 'default_answer' : 'no', - 'store_answer' : function (answer) { - installerResponses['Encrypted Passwords'] = answer; - return true; - }, - 'commit_config' : function() { - if (installerResponses['Encrypted Passwords'] == 'yes') { - f.WriteLine("DB_ENCRYPTION=1"); - f.WriteLine("BASE_CFLAGS=/D USE_ENCRYPTION /D ENCRYPT_MD5 $(BASE_CFLAGS)"); - } - else { - f.WriteLine("DB_ENCRYPTION=0"); - } - } - } - + ]; var buildPackages = [ |