-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consistently use Darwin and other cosmetics
pkg uses the OS, which under MacOS is Darwin. Rename PKG_OS_MACOS to PKG_OS_DARWIN to be consistent in the source as well. Cater for a corner case in having a basename in Mach-O dynamic library. Adjust comments and simplify parsing code in pkg_abi_macho after the major abi refactoring.
- Loading branch information
Showing
3 changed files
with
41 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ enum pkg_os { | |
PKG_OS_NETBSD, | ||
PKG_OS_DRAGONFLY, | ||
PKG_OS_LINUX, | ||
PKG_OS_MACOS, | ||
PKG_OS_DARWIN, | ||
}; | ||
|
||
/* | ||
|