diff options
author | rm <rm@FreeBSD.org> | 2013-09-01 23:19:48 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2013-09-01 23:19:48 +0800 |
commit | 891054e540c420f608a270516ae091fccd1056f0 (patch) | |
tree | 3ceb89fdae3de54c0b84178c14a4b02cfab25f9c /devel/clanlib/files | |
parent | 39fa457f51717ecdd8ccb3eeddf5adc79c42f507 (diff) | |
download | freebsd-ports-gnome-891054e540c420f608a270516ae091fccd1056f0.tar.gz freebsd-ports-gnome-891054e540c420f608a270516ae091fccd1056f0.tar.zst freebsd-ports-gnome-891054e540c420f608a270516ae091fccd1056f0.zip |
- update to 2.3.7
- chase the update in games/super_methane_brothers
- convert USE_GMAKE to USES, while here
PR: 181491
Submitted by: chris petrik <c.petrik.sosa@gmail.com> (maintainer)
Diffstat (limited to 'devel/clanlib/files')
-rw-r--r-- | devel/clanlib/files/patch-Sources__Core__System__Unix__init_linux.cpp | 11 | ||||
-rw-r--r-- | devel/clanlib/files/patch-Sources__Core__System__system.cpp | 34 |
2 files changed, 0 insertions, 45 deletions
diff --git a/devel/clanlib/files/patch-Sources__Core__System__Unix__init_linux.cpp b/devel/clanlib/files/patch-Sources__Core__System__Unix__init_linux.cpp deleted file mode 100644 index 06cadba92602..000000000000 --- a/devel/clanlib/files/patch-Sources__Core__System__Unix__init_linux.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- ./Sources/Core/System/Unix/init_linux.cpp.orig 2012-03-05 06:24:31.000000000 -0500 -+++ ./Sources/Core/System/Unix/init_linux.cpp 2012-09-25 07:42:19.000000000 -0400 -@@ -111,7 +111,7 @@ - - #else - #ifndef PROC_EXE_PATH --#define PROC_EXE_PATH "/proc/self/exe" -+#define PROC_EXE_PATH "/proc/curproc/file" - #endif - int size; - struct stat sb; diff --git a/devel/clanlib/files/patch-Sources__Core__System__system.cpp b/devel/clanlib/files/patch-Sources__Core__System__system.cpp deleted file mode 100644 index 218a7c5e75fa..000000000000 --- a/devel/clanlib/files/patch-Sources__Core__System__system.cpp +++ /dev/null @@ -1,34 +0,0 @@ ---- ./Sources/Core/System/system.cpp.orig 2012-09-25 07:46:49.000000000 -0400 -+++ ./Sources/Core/System/system.cpp 2012-09-25 07:57:19.000000000 -0400 -@@ -1,3 +1,4 @@ -+ - /* - ** ClanLib SDK - ** Copyright (c) 1997-2011 The ClanLib Team -@@ -44,7 +45,7 @@ - #include <sys/sysctl.h> - #endif - --#ifndef __APPLE__ -+#if !(defined(__APPLE__) || defined(__FreeBSD__)) - #include <execinfo.h> - #endif - #include <cxxabi.h> -@@ -128,7 +129,7 @@ - *out_hash = 0; - return capturedFrames; - --#elif !defined(__APPLE__) -+#elif !(defined(__APPLE__) || defined(__FreeBSD__)) - // Ensure the output is cleared - memset(out_frames, 0, (sizeof(void *)) * max_frames); - -@@ -188,7 +189,7 @@ - SymCleanup(GetCurrentProcess()); - return backtrace_text; - --#elif !defined(__APPLE__) -+#elif !(defined(__APPLE__) || defined(__FreeBSD__)) - - char **strings; - strings = backtrace_symbols(frames, num_frames); |