pike.git / src / post_modules / Nettle / nettle.cmod

version» Context lines:

pike.git/src/post_modules/Nettle/nettle.cmod:1130:    cipher_init();   #endif /* HAVE_LIBNETTLE */   #ifdef __NT__    start_new_program();    nt_init();    nt_program = end_program();    add_object_constant("NT", nt_object=clone_object(nt_program,0), 0);    free_object(nt_object);    free_program(nt_program);   #endif /* __NT__ */ + #ifdef HAVE_LIBHOGWEED +  hogweed_init(); + #endif   }      PIKE_MODULE_EXIT   {   #ifdef HAVE_LIBNETTLE    cipher_exit();    hash_exit();   #endif /* HAVE_LIBNETTLE */   #ifdef __NT__    nt_exit();   #endif /* __NT__ */ -  + #ifdef HAVE_LIBHOGWEED +  hogweed_exit(); + #endif    EXIT;   }