1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Add OS detection to support Hurd and kFreeBSD
The patch includes OS detection in the autoconf setup so the
software can be built in Hurd and kFreeBSD
Author: Cyril Brulebois
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=414151
Forwarded: no
Last-Update: 2024-10-05
---
--- a/configure.ac
+++ b/configure.ac
@@ -56,7 +56,7 @@
case "$host_os" in
- *linux*)
+ *linux*|*-gnu*)
sh_use_lcaps="yes"
AC_DEFINE(HOST_IS_LINUX)
AC_DEFINE(HAVE_EXT2_IOCTLS)
|