This file contains hidden or 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
Homebrew build logs for guile on macOS 10.15 | |
Build date: 2019-10-19 21:35:43 |
This file contains hidden or 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
12:31:51: Creating resource group General | |
12:31:51: Creating resource group Internal | |
12:31:51: Creating resource group Autodetect | |
12:31:51: SceneManagerFactory for type 'DefaultSceneManager' registered. | |
12:31:51: Registering ResourceManager for type Material | |
12:31:51: Registering ResourceManager for type Mesh | |
12:31:51: Registering ResourceManager for type Skeleton | |
12:31:51: MovableObjectFactory for type 'ParticleSystem' registered. | |
12:31:51: ArchiveFactory for archive type FileSystem registered. | |
12:31:51: ArchiveFactory for archive type Zip registered. |
This file contains hidden or 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
--- assimp--3.0.1270-source-only/code/CMakeLists.txt.xyz 2013-10-22 16:37:58.000000000 -0700 | |
+++ assimp--3.0.1270-source-only/code/CMakeLists.txt 2013-10-22 16:40:54.000000000 -0700 | |
@@ -663,6 +663,11 @@ | |
OUTPUT_NAME assimp${ASSIMP_LIBRARY_SUFFIX} | |
CLEAN_DIRECT_OUTPUT 1 | |
) | |
+if (APPLE) | |
+ SET_TARGET_PROPERTIES( assimp PROPERTIES | |
+ INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}" | |
+ ) |
This file contains hidden or 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
--- pkgconf-0.9.3/Makefile.in.old 2013-10-01 20:09:58.000000000 -0700 | |
+++ pkgconf-0.9.3/Makefile.in 2013-10-01 20:09:40.000000000 -0700 | |
@@ -30,6 +30,7 @@ | |
install: | |
mkdir -p $(DESTDIR)$(bindir) | |
install -c -m755 $(PROG) $(DESTDIR)$(bindir)/$(PROG) | |
+ ln -s $(PROG) $(DESTDIR)$(bindir)/pkg-config | |
mkdir -p $(DESTDIR)$(datarootdir)/aclocal | |
install -c -m644 $(srcdir)/pkg.m4 $(DESTDIR)$(datarootdir)/aclocal/pkg.m4 |
This file contains hidden or 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
--- pkgconf-0.9.3/main.c.old 2013-10-01 19:48:42.000000000 -0700 | |
+++ pkgconf-0.9.3/main.c 2013-10-01 19:51:24.000000000 -0700 | |
@@ -1,3 +1,5 @@ | |
+#define ALWAYS_KEEP 1 | |
+ | |
/* | |
* main.c | |
* main() routine, printer functions | |
@@ -535,6 +537,9 @@ | |
char *required_module_version = NULL; |
This file contains hidden or 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
--- OpenNI2-2.0.0.30/Include/OpenNI.h.old 2013-09-25 09:13:08.000000000 -0700 | |
+++ OpenNI2-2.0.0.30/Include/OpenNI.h 2013-09-25 09:14:42.000000000 -0700 | |
@@ -83,12 +83,12 @@ | |
} YUV422DoublePixel; | |
/** This special URI can be passed to @ref Device::open() when the application has no concern for a specific device. */ | |
-#if ONI_PLATFORM != ONI_PLATFORM_WIN32 | |
+#if (ONI_PLATFORM != ONI_PLATFORM_WIN32) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 406) | |
#pragma GCC diagnostic ignored "-Wunused-variable" | |
#pragma GCC diagnostic push |
This file contains hidden or 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
# possible workaround for https://github.com/OpenNI/OpenNI2/issues/11 | |
# as of OpenNI2-2.0.0.30 | |
diff --git a/Source/Drivers/PS1080/DDK/XnDeviceBase.h b/Source/Drivers/PS1080/DDK/XnDeviceBase.h | |
index c9e740b..5d7cc79 100644 | |
--- a/Source/Drivers/PS1080/DDK/XnDeviceBase.h | |
+++ b/Source/Drivers/PS1080/DDK/XnDeviceBase.h | |
@@ -101,7 +101,9 @@ public: | |
virtual XnStatus UnregisterFromPropertyChange(const XnChar* Module, XnUInt32 propertyId, XnCallbackHandle hCallback); | |
This file contains hidden or 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
--- OpenNI2-2.0.0.30/Source/Drivers/PS1080/PS1080Console/PS1080Console.cpp.old 2013-09-25 11:35:17.000000000 -0700 | |
+++ OpenNI2-2.0.0.30/Source/Drivers/PS1080/PS1080Console/PS1080Console.cpp 2013-09-25 11:35:49.000000000 -0700 | |
@@ -137,7 +137,7 @@ | |
return false; | |
} | |
-bool Version(openni::Device& Device, vector<string>& /*Command*/) | |
+bool PrintVersion(openni::Device& Device, vector<string>& /*Command*/) | |
{ | |
openni::Status rc = Device.getProperty(XN_MODULE_PROPERTY_VERSION, &g_DeviceVersion); |