Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Source/CFUUID.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ static void CFsrandomdev (void)
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>
#define INITRANDOM() CFsrandomdev()
#if defined(__linux__)
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
static void CFsrandomdev(void)
{
int fd;
Expand Down Expand Up @@ -351,4 +351,3 @@ CFUUIDGetTypeID (void)
{
return _kCFUUIDTypeID;
}

2 changes: 1 addition & 1 deletion Source/GSPrivate.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
#define GSMutexInitialize(x) pthread_mutex_init(x, NULL)
#define GSMutexLock(x) pthread_mutex_lock(x)
#define GSMutexUnlock(x) pthread_mutex_unlock(x)
#define GSMutexDestroy(x) pthraed_mutex_destroy(x)
#define GSMutexDestroy(x) pthread_mutex_destroy(x)

#if defined(__llvm__) \
|| (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1))
Expand Down
3 changes: 1 addition & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -5304,7 +5304,7 @@ $as_echo "no" >&6; }
PKG_CONFIG=""
fi
fi
if test x"with_icu" != xno; then :
if test x"$with_icu" != xno; then :
found_icu=no
case $target_os in #(
mingw*|windows) :
Expand Down Expand Up @@ -7024,4 +7024,3 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ AC_ARG_ENABLE(cfrunloop,
AC_ARG_WITH([icu],
AS_HELP_STRING([--without-icu],
[Disable Internation Components for Unicode. WARNING: Many components will stop working without ICU support!]), [], [with_icu=yes])
AS_IF([test x"with_icu" != xno],
AS_IF([test x"$with_icu" != xno],
[found_icu=no
AS_CASE([$target_os],
[mingw*|windows], [ # check for ICU bundled with Windows 10
Expand Down
Loading