search for: stricmp

Displaying 16 results from an estimated 16 matches for "stricmp".

Did you mean: strcmp
2020 Mar 27
0
Wine release 5.5
...upport rate control. Paul Gofman (20): d3d9/tests: Add tests for allowed StrecthRect() filters. wined3d: Validate the filter in wined3d_texture_blt(). ucrtbase: Add test for _strnicmp() count parameter. d3dx9: Validate state operation in d3dx_parse_state(). d3d11: Use stricmp() instead of _strnicmp(..., -1). ddraw: Factor out ddraw_surface_is_lost() function. ddraw: Factor out ddraw_surface_lock_ddsd() function. ddraw: Deny locking lost surfaces. ddraw/tests: Test locking lost surface for ddraw4. ddraw/tests: Test locking lost surface for d...
2007 Mar 06
1
Errors compiling flac in Visual Studio Express 2005
...Debug Win32 ------ 6>Deleting intermediate and output files for project 'libFLAC_dynamic', configuration 'Debug|Win32' 6>Performing Custom Build Step 5>c:\greenhouse\workspace\soundio\tool\flac_1.1.3\main\flac-1.1.3\src\share\grabbag\cuesheet.c(231) : warning C4996: 'stricmp' was declared deprecated 5> c:\program files\microsoft visual studio 8\vc\include\string.h(213) : see declaration of 'stricmp' 5> Message: 'The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _stricmp. See online help for detai...
2008 Oct 23
2
[LLVMdev] Windows build broken?
...T/StringExtras.h" +#include "llvm/Config/config.h" #include <ios> using namespace llvm; Index: win32/config.h =================================================================== --- win32/config.h (revision 58037) +++ win32/config.h (working copy) @@ -27,3 +27,4 @@ #define stricmp _stricmp #define strdup _strdup +#define INT64_C(val) val##i64
2012 Feb 07
2
[PATCH] Remove even more CPP hackery
...n.c index e673a78..d35c960 100644 --- a/src/flac/main.c +++ b/src/flac/main.c @@ -43,7 +43,7 @@ #include "utils.h" #include "vorbiscomment.h" -#if defined _MSC_VER || defined __MINGW32__ || defined __EMX__ +#if defined _MSC_VER || defined __MINGW32__ #define FLAC__STRCASECMP stricmp #else #define FLAC__STRCASECMP strcasecmp diff --git a/src/libFLAC/metadata_iterators.c b/src/libFLAC/metadata_iterators.c index e9d5275..32e8ed3 100644 --- a/src/libFLAC/metadata_iterators.c +++ b/src/libFLAC/metadata_iterators.c @@ -3312,7 +3312,7 @@ void set_file_stats_(const char *filename, s...
2008 Oct 23
0
[LLVMdev] Windows build broken?
steve naroff <snaroff at apple.com> writes: > Folks, > > It appears the Windows build has regressed over the past week. > > The build fails quite early (during the "Performing TableGenStep" > phase). > > Any help/pointers would be appreciated. It breaks for me because the usage of INT64_C, which was introduced on r57663 and 57668. Some googling around
2008 Oct 23
0
[LLVMdev] Windows build broken?
...onfig/config.h" > #include <ios> > > using namespace llvm; > Index: win32/config.h > =================================================================== > --- win32/config.h (revision 58037) > +++ win32/config.h (working copy) > @@ -27,3 +27,4 @@ > #define stricmp _stricmp > #define strdup _strdup > > +#define INT64_C(val) val##i64 > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > >
2019 Aug 14
0
A small build fix for some MinGW toolchains
Hello! Many years ago I have found some bugs are prevented build of libFLAC on some MinGW toolchains and I made my own patch to fix that. - The `_wutime64()` call may absent. For this case I using the `_wutime()` call as a fallback when _wutime64() is unavailable. - `_stricmp` and `_strnicmp` are also may fail. Therefore it's prefer to use `stricmp` and `strnicmp` (without `_` prefix) on MinGW toolchains. I have added a small check into CMake build, however, I didn't touched Automake and MSVC builds yet. Anyway, for MSVC builds you can simply define the `HAV...
2010 May 26
1
gethostname was not declared in this scope
...please let me know which header to include and which library to link in order to resolve the above error?? Here I am compiling with -mno-cygwin option so even though I include unistd.h it will not work. The purpose of using this option is I am using windows runtime library functions in my code (ex stricmp...). Please enlighten me!!!!!!!
2008 Oct 23
4
[LLVMdev] Windows build broken?
Folks, It appears the Windows build has regressed over the past week. The build fails quite early (during the "Performing TableGenStep" phase). Any help/pointers would be appreciated. Thanks, snaroff (a clang developer)
2006 Mar 17
1
[PATCH] OpenSSL RNG initialization
...vs/dovecot/configure.in,v retrieving revision 1.266 diff -u -r1.266 configure.in --- configure.in 28 Feb 2006 08:36:41 -0000 1.266 +++ configure.in 10 Mar 2006 17:15:01 -0000 @@ -358,7 +358,8 @@ AC_CHECK_FUNCS(fcntl flock lockf inet_aton sigaction getpagesize madvise \ strcasecmp stricmp vsnprintf vsyslog writev pread \ setrlimit setproctitle seteuid setreuid setegid setresgid \ - strtoull strtouq setpriority quotactl getmntent kqueue kevent) + strtoull strtouq setpriority quotactl getmntent kqueue kevent \ + getrusage) dnl * I/O loop function have_i...
2005 Dec 15
2
Patch: More of kqueue() support.
...tify, inotify, kqueue, none; default dnotify if compilable, otherwise none)], notify=$withval, notify=) @@ -312,7 +312,7 @@ dnl * after -lsocket and -lnsl tests, in AC_CHECK_FUNCS(fcntl flock lockf inet_aton sigaction getpagesize madvise \ strcasecmp stricmp vsnprintf vsyslog writev pread \ setrlimit setproctitle seteuid setreuid setegid setresgid \ - strtoull strtouq setpriority quotactl getmntent) + strtoull strtouq setpriority quotactl getmntent kqueue kevent) dnl * I/O loop function have_ioloop=no @@ -329,12 +329,17 @@ if...
2020 Aug 07
0
Wine release 5.0.2
...n. dxgi: Translate DXGI_USAGE_UNORDERED_ACCESS to corresponding wined3d bind flag. Owen Rudge (2): winecfg: Add support for '/v' parameter allowing Windows version to be changed. winecfg: Return 0 on success when setting Windows version. Paul Gofman (1): d3d11: Use stricmp() instead of _strnicmp(..., -1). Piotr Caban (1): msvcp90: Add std:_XLgamma implementation. Roman Pi?l (5): wininet: Add stub for INTERNET_OPTION_IGNORE_OFFLINE. user32/edit: Avoid division by zero during initialization. wineconsole: Don't activate window when computin...
2011 Jul 28
3
efilinux release 0.8
Hi, I'm pleased to announce release 0.8 of efilinux, a reference implementation of a minimal UEFI bootloader. This bootloader has no bells or whistles, it is simply a prototype with the minimum amount of smarts required to load a linux kernel (though loaders for other formats could be added). Currently it only supports booting x86-64 bzImages but i386 support is planned for release 0.9, with
2020 Apr 10
0
Wine release 5.6
...wrappers. mountmgr.sys: Use standard dlopen() instead of the libwine wrappers. msgsm32.acm: Use standard dlopen() instead of the libwine wrappers. msxml3: Use standard dlopen() instead of the libwine wrappers. dbghelp: Make qsort callback explicitly cdecl. dbghelp: Use stricmp() instead of _strnicmp(..., -1). krnl386: Use stricmp() instead of _strnicmp(..., -1). netapi32: Use standard dlopen() instead of the libwine wrappers. ntdll: Use standard dlopen() instead of the libwine wrappers. odbc32: Use standard dlopen() instead of the libwine wrappers...
2008 Mar 07
0
Wine release 0.9.57
...libwpp: Include wine/port.h in ppl.l as strcasecmp is used, which isn't available on all platforms. Add configure check for strtoll and strtoull. include: Remove superfluous semi-colon from d3d9.h. libport: Undefine strcasecmp and strncasecmp in case they are defined to stricmp and strnicmp respectively. makefiles: Simplify the use of the IMPORTLIB variable in the DLL makefiles. makefiles: Split AR into AR and ARFLAGS. rpcrt4: Use closesocket to close sockets and define it to close on Unix platforms to make the code more portable. mshtml: Move some...
2006 Nov 05
1
RC11 Build Failure on FreeBSD 6.1
...for fdatasync... no checking for fdatasync in -lrt... no checking for fcntl... yes checking for flock... yes checking for lockf... yes checking for inet_aton... yes checking for sigaction... yes checking for getpagesize... yes checking for madvise... yes checking for strcasecmp... yes checking for stricmp... no checking for vsnprintf... yes checking for vsyslog... yes checking for writev... yes checking for pread... yes checking for setrlimit... yes checking for setproctitle... yes checking for seteuid... yes checking for setreuid... yes checking for setegid... yes checking for setresgid... yes chec...