mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
24 lines
864 B
Plaintext
24 lines
864 B
Plaintext
$NetBSD: patch-configure.in,v 1.5 2012/07/09 05:52:14 marino Exp $
|
|
|
|
--- configure.in.orig 2009-02-17 19:15:53.000000000 +0000
|
|
+++ configure.in
|
|
@@ -113,10 +113,18 @@ case ${UNAME_SYSTEM} in
|
|
echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
|
|
cp ./configs/pconfig.LynxOS ./pconfig.h.in;
|
|
;;
|
|
+ DragonFly)
|
|
+ echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
|
|
+ cp ./configs/pconfig.DragonFly ./pconfig.h.in;
|
|
+ ;;
|
|
FreeBSD)
|
|
echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
|
|
cp ./configs/pconfig.FreeBSD ./pconfig.h.in;
|
|
;;
|
|
+ NetBSD)
|
|
+ echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
|
|
+ cp ./configs/pconfig.NetBSD ./pconfig.h.in;
|
|
+ ;;
|
|
Darwin)
|
|
echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
|
|
cp ./configs/pconfig.Darwin ./pconfig.h.in;
|