15 lines
379 B
Text
15 lines
379 B
Text
Index: apertium/apertium_transfer.cc
|
|
--- apertium/apertium_transfer.cc.orig
|
|
+++ apertium/apertium_transfer.cc
|
|
@@ -97,6 +97,11 @@ FILE * open_output(string const &filename)
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
+ if (pledge("stdio rpath wpath cpath", NULL) == -1) {
|
|
+ wcerr << "pledge" << endl;
|
|
+ exit(EXIT_FAILURE);
|
|
+ }
|
|
+
|
|
LtLocale::tryToSetLocale();
|
|
|
|
Transfer t;
|