1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
This patch from Cyril Brulebois allows building Florist on
GNU/kFreeBSD and, hopefully, GNU/HURD as well. Thanks, Cyril.
--
Ludovic Brenta.
Index: libflorist-2008/configure.in
===================================================================
--- libflorist-2008.orig/configure.in
+++ libflorist-2008/configure.in
@@ -74,7 +74,7 @@
*) cp ./configs/pconfig.SunOS5.6 ./pconfig.h.in ;;
esac
;;
- Linux)
+ Linux|GNU/kFreeBSD|GNU)
# .... need to add cases here for different thread and C libraries
echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
cp ./configs/pconfig.Linux ./pconfig.h.in;
Index: libflorist-2008/configure
===================================================================
--- libflorist-2008.orig/configure
+++ libflorist-2008/configure
@@ -2239,7 +2239,7 @@
*) cp ./configs/pconfig.SunOS5.6 ./pconfig.h.in ;;
esac
;;
- Linux)
+ Linux|GNU/kFreeBSD|GNU)
# .... need to add cases here for different thread and C libraries
echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
cp ./configs/pconfig.Linux ./pconfig.h.in;
|