Package: alpine
Severity: important
Tags: patch

Hi,

currently your package FTBFS on GNU/kFreeBSD with the following error:
> checking for library containing syslog... none required
> configure: error: Unrecognized system: i486-pc-kfreebsd-gnu
> make: *** [config.status] Error 1

Full build logs are available at
<http://experimental.ftbfs.de/build.php?arch=kfreebsd-i386&pkg=alpine>.

Please find attached a tiny patch for configure.ac, so that support for
GNU/kFreeBSD (and that should work for GNU/k*BSD and GNU/Hurd).

Then you'll need to run "autoconf" to complete the update.

Cheers,

-- 
Cyril Brulebois
--- alpine-0.83+dfsg/configure.ac	2007-03-10 04:26:15.099813000 +0100
+++ alpine-0.83+dfsg/configure.ac	2007-03-10 04:27:11.000000000 +0100
@@ -405,7 +405,7 @@
 else
   dnl preload c-client default locations/options
   case $host in
-    *-linux-gnu)
+    *-linux-gnu|*-k*bsd*-gnu|*-gnu*)
       if test -f /etc/fedora-release ; then  
         alpine_SSLTYPE="nopwd"
         alpine_SSLDIR="/usr/share/ssl"
@@ -929,7 +929,7 @@
 dnl build from c-client.  Most of this will go away when c-client
 dnl adopts configure
 case "$host" in
-  *-linux-gnu)
+  *-linux-gnu|*-k*bsd*-gnu|*-gnu*)
     alpine_path_delim="/"
     alpine_mode_readonly="(0600)"
     if test -f /etc/fedora-release ; then  

Reply via email to