mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
27 lines
691 B
Plaintext
27 lines
691 B
Plaintext
From cbc92847fcba8b6e1455bfba24dfa020618c9506 Mon Sep 17 00:00:00 2001
|
|
From: Kacper Kasper <kacperkasper@gmail.com>
|
|
Date: Fri, 4 Aug 2017 10:06:42 +0300
|
|
Subject: Fix linker errors.
|
|
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 844ea46..6528d57 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -366,6 +366,12 @@ AS_CASE(["$host_os"],
|
|
mhd_host_os='GNU Hurd'
|
|
AC_MSG_RESULT([[$mhd_host_os]])
|
|
],
|
|
+ [haiku*],
|
|
+ [AC_DEFINE_UNQUOTED(HAIKU,1,[This is a Haiku system])
|
|
+ mhd_host_os='Haiku'
|
|
+ AC_MSG_RESULT([[$mhd_host_os]])
|
|
+ AC_SEARCH_LIBS(gethostbyname, network)
|
|
+ ],
|
|
[
|
|
mhd_host_os='unrecognised OS'
|
|
AC_MSG_RESULT([[$mhd_host_os]])
|
|
--
|
|
2.37.3
|
|
|