Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 554330
Collapse All | Expand All

(-)src/node.cc.orig (+4 lines)
Lines 2934-2941 Link Here
2934
         "                       present.\n"
2934
         "                       present.\n"
2935
#endif
2935
#endif
2936
#endif
2936
#endif
2937
#if HAVE_OPENSSL
2937
         "  --enable-ssl2        enable ssl2\n"
2938
         "  --enable-ssl2        enable ssl2\n"
2938
         "  --enable-ssl3        enable ssl3\n"
2939
         "  --enable-ssl3        enable ssl3\n"
2940
#endif // HAVE_OPENSSL
2939
         "\n"
2941
         "\n"
2940
         "Environment variables:\n"
2942
         "Environment variables:\n"
2941
#ifdef _WIN32
2943
#ifdef _WIN32
Lines 3003-3012 Link Here
3003
    } else if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) {
3005
    } else if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) {
3004
      printf("%s\n", NODE_VERSION);
3006
      printf("%s\n", NODE_VERSION);
3005
      exit(0);
3007
      exit(0);
3008
#if HAVE_OPENSSL
3006
    } else if (strcmp(arg, "--enable-ssl2") == 0) {
3009
    } else if (strcmp(arg, "--enable-ssl2") == 0) {
3007
      SSL2_ENABLE = true;
3010
      SSL2_ENABLE = true;
3008
    } else if (strcmp(arg, "--enable-ssl3") == 0) {
3011
    } else if (strcmp(arg, "--enable-ssl3") == 0) {
3009
      SSL3_ENABLE = true;
3012
      SSL3_ENABLE = true;
3013
#endif // HAVE_OPENSSL
3010
    } else if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
3014
    } else if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
3011
      PrintHelp();
3015
      PrintHelp();
3012
      exit(0);
3016
      exit(0);

Return to bug 554330