summaryrefslogtreecommitdiffstats
path: root/ktalkd/SNPRINTF_MISSING
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbcb704366cb5e333a626c18c308c7e0448a8e69f (patch)
treef0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ktalkd/SNPRINTF_MISSING
downloadtdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz
tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktalkd/SNPRINTF_MISSING')
-rw-r--r--ktalkd/SNPRINTF_MISSING21
1 files changed, 21 insertions, 0 deletions
diff --git a/ktalkd/SNPRINTF_MISSING b/ktalkd/SNPRINTF_MISSING
new file mode 100644
index 00000000..95e85366
--- /dev/null
+++ b/ktalkd/SNPRINTF_MISSING
@@ -0,0 +1,21 @@
+ktalkd needs the snprintf function, but some system don't have it (some
+Solaris versions, for instance).
+
+If snprintf is missing on your system, you can do the following :
+
+* compile ktalkd/kotalkd/vsnprintf.c, by entering 'make vsnprintf.o' in this
+directory. (there might be warnings, don't be afraid of them...)
+* if it compiles
+ - add vsnprintf.o to the kotalkd_OBJECTS line in ktalkd/kotalkd/Makefile
+ - copy vsnprintf.o to ktalkd/ktalkd
+ - add vsnprintf.o to the cond0ktalkd_OBJECTS line in ktalkd/ktalkd/Makefile
+ then run make from the toplevel directory again.
+
+Many thanks to Olof S Kylander <olof@frozenriver.com> for providing vsnprintf.c
+and to Bert Haverkamp <b.r.j.haverkamp@its.tudelft.nl> for reporting bugs in this readme.
+
+I know, the really good approach would be to include the missing
+automatically, which can be done. But for this I need to know if
+vsnprintf.c compiles on all architectures where snprintf is missing.
+If yes, I'll make the code in vsnprintf included automatically (in kdecore/fakes.cpp)
+