]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
doc: rename OS X to macOS
authorVincent Bernat <vincent@bernat.im>
Tue, 21 Nov 2017 16:38:25 +0000 (17:38 +0100)
committerVincent Bernat <vincent@bernat.im>
Sat, 9 Dec 2017 21:06:25 +0000 (22:06 +0100)
README.md
m4/os.m4

index 909f5659cde98b8a92572712f49cc0311358ff4e..a73ae5e9ccc5bb23ef328e987c6548651bd8a95d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ The following OS are supported:
 
  * FreeBSD
  * GNU/Linux
- * OS X
+ * macOS
  * NetBSD
  * OpenBSD
  * Solaris
@@ -60,10 +60,10 @@ syslog, copy `/etc/locatime` into the chroot.
 line. If you don't want to run it as root, just install it setuid or
 setgid `_lldpd`.
 
-Installation (OS X)
+Installation (macOS)
 -----------------------
 
-The same procedure as above applies for OS X. However, there are
+The same procedure as above applies for macOS. However, there are
 simpler alternatives:
 
  1. Use [Homebrew](https://brew.sh):
@@ -72,15 +72,15 @@ simpler alternatives:
         # Or, for the latest version:
         brew install https://raw.github.com/vincentbernat/lldpd/master/osx/lldpd.rb
 
- 2. Build an OS X installer package which should work on the same
-    version of OS X:
+ 2. Build an macOS installer package which should work on the same
+    version of macOS:
  
         mkdir build && cd build
         ../configure --prefix=/usr/local --localstatedir=/var --sysconfdir=/private/etc --with-embedded-libevent \
             --without-snmp
         make -C osx pkg
 
-    If you want to compile for an older version of OS X, you need
+    If you want to compile for an older version of macOS, you need
     to find the right SDK and issues commands like those:
 
         SDK=/Developer/SDKs/MacOSX10.6.sdk
index a8dae03f975ba8950eafb5aad058dba1d4e1d2b6..ccc669a72e78631c44fd996059253c41a8ebc430 100644 (file)
--- a/m4/os.m4
+++ b/m4/os.m4
@@ -22,7 +22,7 @@ AC_DEFUN([lldp_CHECK_OS], [
   lldp_DEFINE_OS(dragonfly*, [DragonFly BSD], DRAGONFLY)
   lldp_DEFINE_OS(openbsd*, OpenBSD, OPENBSD)
   lldp_DEFINE_OS(netbsd*, NetBSD, NETBSD)
-  lldp_DEFINE_OS(darwin*, [OS X], OSX)
+  lldp_DEFINE_OS(darwin*, macOS, OSX)
   lldp_DEFINE_OS(solaris*, Solaris, SOLARIS)
 
   if test x"$os" = x; then