1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 14:17:45 +00:00
serenity/Ports/bdwgc/patches/0006-Add-serenity-to-the-configure-list-of-pthread-unixes.patch
2023-10-12 23:30:22 +02:00

22 lines
1,001 B
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Peter Elliott <pelliott@ualberta.ca>
Date: Mon, 27 Mar 2023 20:18:18 +1100
Subject: [PATCH] Add serenity to the configure list of pthread unixes
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 0a62826167e403d794c517ec590dd3f2ff50a6da..f494dbe013b5ecc0a5b626a48f37b6d87cb0b0c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -214,7 +214,7 @@ case "$THREADS" in
*-*-aix* | *-*-android* | *-*-cygwin* | *-*-darwin* | *-*-dragonfly* | \
*-*-freebsd* | *-*-haiku* | *-*-hpux11* | *-*-irix* | \
*-*-kfreebsd*-gnu | *-*-gnu* | *-*-*linux* | *-*-msys* | *-*-nacl* | \
- *-*-netbsd* | *-*-openbsd* | *-*-osf* | *-*-solaris*)
+ *-*-netbsd* | *-*-openbsd* | *-*-osf* | *-*-solaris* | *-*-serenity* )
AC_DEFINE(GC_THREADS)
AC_DEFINE([_REENTRANT], [1],
[Required define if using POSIX threads.])