[Glibc-bsd-commits] r5097 - in trunk/freebsd-glue: debian include

Robert Millan rmh at alioth.debian.org
Sat Oct 26 15:48:42 UTC 2013


Author: rmh
Date: 2013-10-26 15:48:41 +0000 (Sat, 26 Oct 2013)
New Revision: 5097

Modified:
   trunk/freebsd-glue/debian/changelog
   trunk/freebsd-glue/include/paths.h
Log:
Disable kernel-specific paths on non-kFreeBSD.

Modified: trunk/freebsd-glue/debian/changelog
===================================================================
--- trunk/freebsd-glue/debian/changelog	2013-10-26 15:47:44 UTC (rev 5096)
+++ trunk/freebsd-glue/debian/changelog	2013-10-26 15:48:41 UTC (rev 5097)
@@ -1,3 +1,9 @@
+freebsd-glue (0.1.13) UNRELEASED; urgency=low
+
+  * Disable kernel-specific paths on non-kFreeBSD.
+
+ -- Robert Millan <rmh at debian.org>  Sat, 26 Oct 2013 17:48:31 +0200
+
 freebsd-glue (0.1.12) unstable; urgency=low
 
   * Fix improper allocation in funopen(). (Closes: #726970)

Modified: trunk/freebsd-glue/include/paths.h
===================================================================
--- trunk/freebsd-glue/include/paths.h	2013-10-26 15:47:44 UTC (rev 5096)
+++ trunk/freebsd-glue/include/paths.h	2013-10-26 15:48:41 UTC (rev 5097)
@@ -7,9 +7,12 @@
 
 #define _PATH_ETC	"/etc"
 #define	_PATH_SYSPATH	"/sbin:/usr/sbin"
-#define _PATH_FWMEM	"/dev/fwmem"
 #define _PATH_IFCONFIG	"/sbin/ifconfig"
 #define _PATH_MOUNT	"/sbin/mount"
+
+#ifdef __FreeBSD_kernel__
+#define _PATH_FWMEM		"/dev/fwmem"
 #define	_PATH_UFSSUSPEND	"/dev/ufssuspend"
+#endif
 
 #endif




More information about the Glibc-bsd-commits mailing list