From: <suc...@us...> - 2006-06-29 17:40:13
|
Revision: 75 Author: sucknblow Date: 2006-06-29 10:39:59 -0700 (Thu, 29 Jun 2006) ViewCVS: http://svn.sourceforge.net/pmplib/?rev=75&view=rev Log Message: ----------- Make compile by applying hdr_template.h change to trunk. Will no doubt conflict when merging branch. No big deal. Reduce number of compile warnings from lack of function prototypes for string.h functions. Modified Paths: -------------- trunk/frontend/easypmp/common/enumerate.c trunk/frontend/easypmp/cui/main.c trunk/frontend/easypmp/cui/util.c trunk/lib/pmp_iriverplus2/dat.c trunk/lib/pmp_iriverplus2/ip2db_idx.c trunk/lib/pmp_portalplayer1/hdr_template.h trunk/lib/pmp_portalplayer1/model_samsung.c trunk/lib/pmp_portalplayer1/pmp_portalplayer1.c Modified: trunk/frontend/easypmp/common/enumerate.c =================================================================== --- trunk/frontend/easypmp/common/enumerate.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/frontend/easypmp/common/enumerate.c 2006-06-29 17:39:59 UTC (rev 75) @@ -25,6 +25,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> Modified: trunk/frontend/easypmp/cui/main.c =================================================================== --- trunk/frontend/easypmp/cui/main.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/frontend/easypmp/cui/main.c 2006-06-29 17:39:59 UTC (rev 75) @@ -25,6 +25,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> Modified: trunk/frontend/easypmp/cui/util.c =================================================================== --- trunk/frontend/easypmp/cui/util.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/frontend/easypmp/cui/util.c 2006-06-29 17:39:59 UTC (rev 75) @@ -25,6 +25,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> Modified: trunk/lib/pmp_iriverplus2/dat.c =================================================================== --- trunk/lib/pmp_iriverplus2/dat.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/lib/pmp_iriverplus2/dat.c 2006-06-29 17:39:59 UTC (rev 75) @@ -24,6 +24,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> Modified: trunk/lib/pmp_iriverplus2/ip2db_idx.c =================================================================== --- trunk/lib/pmp_iriverplus2/ip2db_idx.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/lib/pmp_iriverplus2/ip2db_idx.c 2006-06-29 17:39:59 UTC (rev 75) @@ -24,6 +24,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> Modified: trunk/lib/pmp_portalplayer1/hdr_template.h =================================================================== --- trunk/lib/pmp_portalplayer1/hdr_template.h 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/lib/pmp_portalplayer1/hdr_template.h 2006-06-29 17:39:59 UTC (rev 75) @@ -67,6 +67,7 @@ int hdr_init_medion_mdjuke220(hdr_t* hdr); int hdr_init_medion_mdjuke440(hdr_t* hdr); int hdr_init_samsung_yh820(hdr_t* hdr); +int hdr_init_samsung_yh920(hdr_t* hdr); int hdr_init_samsung_yh925(hdr_t* hdr); int hdr_init_sirius_s50(hdr_t* hdr); Modified: trunk/lib/pmp_portalplayer1/model_samsung.c =================================================================== --- trunk/lib/pmp_portalplayer1/model_samsung.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/lib/pmp_portalplayer1/model_samsung.c 2006-06-29 17:39:59 UTC (rev 75) @@ -24,6 +24,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> Modified: trunk/lib/pmp_portalplayer1/pmp_portalplayer1.c =================================================================== --- trunk/lib/pmp_portalplayer1/pmp_portalplayer1.c 2006-06-29 16:48:46 UTC (rev 74) +++ trunk/lib/pmp_portalplayer1/pmp_portalplayer1.c 2006-06-29 17:39:59 UTC (rev 75) @@ -24,6 +24,9 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif/*HAVE_CONFIG_H*/ +#ifdef HAVE_STRING_H +#include <string.h> +#endif/*HAVE_STRING_H*/ #include <os.h> #include <stdio.h> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |