Projects
Multimedia
gogglesmm
gogglesmm.patch
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File gogglesmm.patch of Package gogglesmm (Revision 17)
Currently displaying revision
17
,
Show latest
--- a/cfox/include/fxmath.h +++ b/cfox/include/fxmath.h @@ -288,6 +288,9 @@ static inline FXlong imax(FXlong x,FXlon static inline FXint iabs(FXint x){ return 0<x?x:-x; } +static inline FXuint iabs(FXuint x){ + return 0<x?x:-x; + } /// Absolute value of long static inline FXlong iabs(FXlong x){ --- a/cfox/lib/CMakeLists.txt +++ b/cfox/lib/CMakeLists.txt @@ -1148,7 +1148,7 @@ if(WITH_OPENJPEG) include_directories(${OPENJPEG_INCLUDE_DIRS}) else() - pkg_check_modules(OPENJPEG libopenjpeg) + pkg_check_modules(OPENJPEG libopenjp2) if(OPENJPEG_FOUND) list(APPEND LIBRARIES ${OPENJPEG_LIBRARIES}) add_definitions(-DHAVE_JP2_H) --- a/cfox/utils/reswrap.cpp +++ b/cfox/utils/reswrap.cpp @@ -223,6 +223,7 @@ static void prologue(OPTIONS* opts){ if(opts->comments){ clock=time(NULL); strftime(date,sizeof(date),"%Y/%m/%d %H:%M:%S",localtime(&clock)); + if (0) fprintf(opts->outfile,"/*********** Generated on %s by reswrap version %s *********/\n\n",date,version); } if(opts->header){
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.