pike.git/
src/
post_modules/
Nettle/
nettle.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2003-03-14
2003-03-14 15:30:20 by Marcus Comstedt <marcus@mc.pp.se>
654f1550235eb3175f496de1cff56009ba28c3d8 (
10
lines) (+
8
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Now loads even on systems without Nettle...
Rev: src/post_modules/Nettle/nettle.cmod:1.4
1:
/* nettle.cmod -*- c -*- */ #include "global.h"
-
RCSID("$Id: nettle.cmod,v 1.
3
2003/03/
13
14:
59
:
07
nisse
Exp $");
+
RCSID("$Id: nettle.cmod,v 1.
4
2003/03/
14
15
:
30
:
20
marcus
Exp $");
#include "interpret.h" #include "svalue.h" /* For this_object() */
146:
} }
+
#endif /* HAVE_LIBNETTLE */
+
PIKE_MODULE_INIT { INIT;
-
+
#ifdef HAVE_LIBNETTLE
hash_init();
-
+
#endif /* HAVE_LIBNETTLE */
} PIKE_MODULE_EXIT {
-
+
#ifdef HAVE_LIBNETTLE
hash_exit();
-
+
#endif /* HAVE_LIBNETTLE */
EXIT; }
-
#endif /* HAVE_LIBNETTLE */
+