-
-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MacOS Sonoma compilation fix (#1393)
* Fix for recent macOS compilation * Restored accidentally removed alternative package download path
- Loading branch information
Showing
56 changed files
with
700 additions
and
774 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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package=libxcb_util | ||
$(package)_version=0.4.0 | ||
$(package)_download_path=https://xcb.freedesktop.org/dist | ||
$(package)_file_name=xcb-util-$($(package)_version).tar.bz2 | ||
$(package)_sha256_hash=46e49469cb3b594af1d33176cd7565def2be3fa8be4371d62271fabb5eae50e9 | ||
$(package)_dependencies=libxcb | ||
|
||
define $(package)_set_vars | ||
$(package)_config_opts = --disable-shared --disable-devel-docs --without-doxygen | ||
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking | ||
$(package)_config_opts += --with-pic | ||
endef | ||
|
||
define $(package)_preprocess_cmds | ||
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub . | ||
endef | ||
|
||
define $(package)_config_cmds | ||
$($(package)_autoconf) | ||
endef | ||
|
||
define $(package)_build_cmds | ||
$(MAKE) | ||
endef | ||
|
||
define $(package)_stage_cmds | ||
$(MAKE) DESTDIR=$($(package)_staging_dir) install | ||
endef | ||
|
||
define $(package)_postprocess_cmds | ||
rm -rf share/man share/doc lib/*.la | ||
endef |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package=libxcb_util_image | ||
$(package)_version=0.4.0 | ||
$(package)_download_path=https://xcb.freedesktop.org/dist | ||
$(package)_file_name=xcb-util-image-$($(package)_version).tar.bz2 | ||
$(package)_sha256_hash=2db96a37d78831d643538dd1b595d7d712e04bdccf8896a5e18ce0f398ea2ffc | ||
$(package)_dependencies=libxcb libxcb_util | ||
|
||
define $(package)_set_vars | ||
$(package)_config_opts=--disable-static --disable-devel-docs --without-doxygen | ||
$(package)_config_opts+= --disable-dependency-tracking --enable-option-checking | ||
endef | ||
|
||
define $(package)_preprocess_cmds | ||
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub . | ||
endef | ||
|
||
define $(package)_config_cmds | ||
$($(package)_autoconf) | ||
endef | ||
|
||
define $(package)_build_cmds | ||
$(MAKE) | ||
endef | ||
|
||
define $(package)_stage_cmds | ||
$(MAKE) DESTDIR=$($(package)_staging_dir) install | ||
endef | ||
|
||
define $(package)_postprocess_cmds | ||
rm -rf share/man share/doc lib/*.la | ||
endef |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package=libxcb_util_keysyms | ||
$(package)_version=0.4.0 | ||
$(package)_download_path=https://xcb.freedesktop.org/dist | ||
$(package)_file_name=xcb-util-keysyms-$($(package)_version).tar.bz2 | ||
$(package)_sha256_hash=0ef8490ff1dede52b7de533158547f8b454b241aa3e4dcca369507f66f216dd9 | ||
$(package)_dependencies=libxcb xproto | ||
|
||
define $(package)_set_vars | ||
$(package)_config_opts=--disable-static --disable-devel-docs --without-doxygen | ||
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking | ||
endef | ||
|
||
define $(package)_preprocess_cmds | ||
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub . | ||
endef | ||
|
||
define $(package)_config_cmds | ||
$($(package)_autoconf) | ||
endef | ||
|
||
define $(package)_build_cmds | ||
$(MAKE) | ||
endef | ||
|
||
define $(package)_stage_cmds | ||
$(MAKE) DESTDIR=$($(package)_staging_dir) install | ||
endef | ||
|
||
define $(package)_postprocess_cmds | ||
rm -rf share/man share/doc lib/*.la | ||
endef |
Oops, something went wrong.