diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-09-21 16:58:35 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-09-21 16:58:35 -0500 |
commit | a901a1232ab8f8432c63dc97e0efd9fed051d2c7 (patch) | |
tree | cb9e22e49e320406b337c95a8c1da9e6c94505e8 /korundum | |
parent | 10fc891a7e282d2cbab27ab53d9b980147fadb9a (diff) | |
download | tdebindings-a901a1232ab8f8432c63dc97e0efd9fed051d2c7.tar.gz tdebindings-a901a1232ab8f8432c63dc97e0efd9fed051d2c7.zip |
Fix FTBFS on x86 systems
Diffstat (limited to 'korundum')
-rw-r--r-- | korundum/bin/krubyinit.cpp | 2 | ||||
-rw-r--r-- | korundum/rubylib/korundum/Korundum.cpp | 2 | ||||
-rw-r--r-- | korundum/rubylib/korundum/kdehandlers.cpp | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/korundum/bin/krubyinit.cpp b/korundum/bin/krubyinit.cpp index 12b0f6e0..2a7f6c50 100644 --- a/korundum/bin/krubyinit.cpp +++ b/korundum/bin/krubyinit.cpp @@ -1,5 +1,7 @@ #include <ruby.h> +#define HAVE_STRLCAT_PROTO 1 +#define HAVE_STRLCPY_PROTO 1 #include "config.h" #ifndef HAVE_RUBY_1_9 diff --git a/korundum/rubylib/korundum/Korundum.cpp b/korundum/rubylib/korundum/Korundum.cpp index 124e2a16..da9f0997 100644 --- a/korundum/rubylib/korundum/Korundum.cpp +++ b/korundum/rubylib/korundum/Korundum.cpp @@ -40,6 +40,8 @@ #include <smokeruby.h> #include <smoke.h> +#define HAVE_STRLCAT_PROTO 1 +#define HAVE_STRLCPY_PROTO 1 #include "config.h" #ifndef HAVE_RUBY_1_9 diff --git a/korundum/rubylib/korundum/kdehandlers.cpp b/korundum/rubylib/korundum/kdehandlers.cpp index 6961301f..11b97b52 100644 --- a/korundum/rubylib/korundum/kdehandlers.cpp +++ b/korundum/rubylib/korundum/kdehandlers.cpp @@ -52,6 +52,8 @@ #include <dom/dom_string.h> #include <dom/html_element.h> +#define HAVE_STRLCAT_PROTO 1 +#define HAVE_STRLCPY_PROTO 1 #include "config.h" #ifndef HAVE_RUBY_1_9 |