mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-16 01:43:42 +02:00
Merge branch 'pu/cc' into next-cc
Conflicts: acinclude.m4 data/locale/deutsch.locale data/locale/english.locale src/driver/volume.cpp src/eitd/SIlanguage.cpp src/gui/bedit/bouqueteditor_channels.cpp src/gui/bedit/bouqueteditor_chanselect.cpp src/gui/bouquetlist.cpp src/gui/channellist.cpp src/gui/eventlist.cpp src/gui/osd_setup.cpp src/gui/scan.cpp src/gui/scan.h src/gui/test_menu.cpp src/gui/timeosd.cpp src/gui/widget/progressbar.cpp src/gui/widget/progressbar.h src/neutrino.cpp src/nhttpd/yconfig.h
This commit is contained in:
@@ -59,8 +59,13 @@ int fh_gif_load(const char *name,unsigned char **buffer,int* /*xp*/,int* /*yp*/)
|
||||
GifRecordType rt;
|
||||
ColorMapObject *cmap;
|
||||
int cmaps;
|
||||
#if GIFLIB_MAJOR >= 5
|
||||
int error;
|
||||
|
||||
gft=DGifOpenFileName(name, &error);
|
||||
#else
|
||||
gft=DGifOpenFileName(name);
|
||||
#endif
|
||||
if(gft==NULL) gflush;
|
||||
do
|
||||
{
|
||||
@@ -128,8 +133,13 @@ int fh_gif_getsize(const char *name,int *x,int *y, int /*wanted_width*/, int /*w
|
||||
GifByteType *extension;
|
||||
int extcode;
|
||||
GifRecordType rt;
|
||||
#if GIFLIB_MAJOR >= 5
|
||||
int error;
|
||||
|
||||
gft=DGifOpenFileName(name, &error);
|
||||
#else
|
||||
gft=DGifOpenFileName(name);
|
||||
#endif
|
||||
if(gft==NULL) gflush;
|
||||
do
|
||||
{
|
||||
|
Reference in New Issue
Block a user