diff options
author | tmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2008-03-29 17:34:57 +0000 |
---|---|---|
committer | tmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2008-03-29 17:34:57 +0000 |
commit | 388de53f300cfbd30de20603034bf2487ce96554 (patch) | |
tree | 58838deb56718a7868b753cd379cd933ee8b34a6 | |
parent | a058248f2a0b521098173dc8ba51f51fe54d1856 (diff) | |
download | libgpod-388de53f300cfbd30de20603034bf2487ce96554.tar.gz libgpod-388de53f300cfbd30de20603034bf2487ce96554.tar.xz libgpod-388de53f300cfbd30de20603034bf2487ce96554.zip |
include string.h to fix builds with gcc 4.3 (fixes SF tracker #1928618)
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1952 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/test-rebuild-db.cc | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-03-29 Todd Zullinger <tmzullinger at users.sourceforge.net> + + * tests/test-rebuild-db.cc: include string.h to fix builds + with gcc 4.3 (fixes SF tracker #1928618) + 2008-03-02 Todd Zullinger <tmzullinger at users.sourceforge.net> * configure.ac diff --git a/tests/test-rebuild-db.cc b/tests/test-rebuild-db.cc index 334c376..fbcaf1e 100644 --- a/tests/test-rebuild-db.cc +++ b/tests/test-rebuild-db.cc @@ -25,6 +25,7 @@ #endif #include <stdlib.h> +#include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <typeinfo> |