Package: xsim
Severity: important
Tags: patch
Hi,
The current version of xsim fails to build on GNU/kFreeBSD. Please
find attached a small patch to fix that. It would be nice if you can
include it in your next upload.
Thanks for your cooperation,
Aurelien
-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.4-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
--- xsim-0.3.9.4.orig/configure
+++ xsim-0.3.9.4/configure
@@ -1400,6 +1400,11 @@
dllib="-ldl"
pthreadlib="-lpthread"
;;
+ XGNU/kFreeBSD)
+ os_type="LINUX"
+ dllib="-ldl"
+ pthreadlib="-lpthread"
+ ;;
XFreeBSD)
os_type="FREEBSD"
dllib="-lc"
only in patch2:
unchanged:
--- xsim-0.3.9.4.orig/configure.in
+++ xsim-0.3.9.4/configure.in
@@ -36,6 +36,11 @@
dllib="-ldl"
pthreadlib="-lpthread"
;;
+ XGNU/kFreeBSD)
+ os_type="LINUX"
+ dllib="-ldl"
+ pthreadlib="-lpthread"
+ ;;
XFreeBSD)
os_type="FREEBSD"
dllib="-lc"