mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
66305fcb50
Now, only meson was changed. -Dnls=true -Dgettext=true
24 lines
441 B
C
24 lines
441 B
C
/* Ruby module */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "elinks.h"
|
|
|
|
#include "intl/libintl.h"
|
|
#include "main/module.h"
|
|
#include "scripting/ruby/core.h"
|
|
#include "scripting/ruby/hooks.h"
|
|
|
|
|
|
struct module ruby_scripting_module = struct_module(
|
|
/* name: */ N_("Ruby"),
|
|
/* options: */ NULL,
|
|
/* events: */ ruby_scripting_hooks,
|
|
/* submodules: */ NULL,
|
|
/* data: */ NULL,
|
|
/* init: */ init_ruby,
|
|
/* done: */ NULL
|
|
);
|