mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
From 382d51023f5e54b5c380ec7edb44cc7ea402c403 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Zolt=C3=A1n=20Mizsei?= <zmizsei@extrowerk.com>
|
|
Date: Sun, 28 May 2017 12:53:20 +0200
|
|
Subject: Introduce Haiku as supported platform
|
|
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 5853cbb..f816111 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -710,6 +710,7 @@ case "${canonical}" in
|
|
*-sysv4.2uw* ) opsys=unixware ;;
|
|
*-sysv5uw* ) opsys=unixware ;;
|
|
*-sysv5OpenUNIX* ) opsys=unixware ;;
|
|
+ *-haiku* ) opsys=haiku ;;
|
|
## Otherwise, we'll fall through to the generic opsys code at the bottom.
|
|
esac
|
|
;;
|
|
@@ -722,6 +723,7 @@ case "${canonical}" in
|
|
# MinGW overrides and adds some system headers in nt/inc.
|
|
GCC_TEST_OPTIONS="-I $srcdir/nt/inc"
|
|
;;
|
|
+ *-haiku* ) opsys=haiku ;;
|
|
## Otherwise, we'll fall through to the generic opsys code at the bottom.
|
|
esac
|
|
;;
|
|
@@ -4465,7 +4467,7 @@ case $opsys in
|
|
AC_DEFINE(PTY_TTY_NAME_SPRINTF, [])
|
|
;;
|
|
|
|
- gnu | openbsd )
|
|
+ gnu | openbsd | haiku )
|
|
AC_DEFINE(FIRST_PTY_LETTER, ['p'])
|
|
;;
|
|
|
|
--
|
|
2.12.2
|
|
|