Package: gaby Severity: important Tags: patch Hi,
currently your package FTBFS on GNU/kFreeBSD with the following errors: > checking for bison... no > checking for catalogs to be installed... da de es fi fr ja nl no pl pt_BR sv > configure: error: Gaby needs shared library support to build correctly. > make: *** [configure-stamp] Error 1 Full build logs are available at <http://experimental.ftbfs.de/build.php?arch=kfreebsd-i386&pkg=gaby>. The attached patch makes the configure script detect GNU/kFreeBSD as GNU/Linux (same userland) and allows the package to build fine. Cheers, -- Cyril Brulebois
--- gaby-2.0.2/configure 2007-03-08 18:16:58.364310000 +0100 +++ gaby-2.0.2/configure 2007-03-08 18:17:10.000000000 +0100 @@ -1822,7 +1822,7 @@ ;; # This must be Linux ELF. -linux-gnu*) +linux-gnu*|kfreebsd*-gnu*) lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so` ;; @@ -4037,7 +4037,7 @@ ;; # This must be Linux ELF. -linux-gnu*) +linux-gnu*|kfreebsd*-gnu*) version_type=linux need_lib_prefix=no need_version=no

