diff options
author | swills <swills@FreeBSD.org> | 2013-11-18 07:25:47 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2013-11-18 07:25:47 +0800 |
commit | 4b45646c34d33875b29bb5e5a9b4ad4625f7049d (patch) | |
tree | 24efaa6719213efe657306b7155b01e1968f6840 /emulators | |
parent | 2725f5d2591a12d473616c4aa5355b1285ecbeca (diff) | |
download | freebsd-ports-gnome-4b45646c34d33875b29bb5e5a9b4ad4625f7049d.tar.gz freebsd-ports-gnome-4b45646c34d33875b29bb5e5a9b4ad4625f7049d.tar.zst freebsd-ports-gnome-4b45646c34d33875b29bb5e5a9b4ad4625f7049d.zip |
- Add patch to fix build when devel/libunwind is installed
- While here, rename patch to better name. All the patches probably need
renaming.
Reported by: Andrzej Tobola <ato@iem.pw.edu.pl>
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/open-vm-tools/files/patch-arch | 12 | ||||
-rw-r--r-- | emulators/open-vm-tools/files/patch-configure | 31 |
2 files changed, 31 insertions, 12 deletions
diff --git a/emulators/open-vm-tools/files/patch-arch b/emulators/open-vm-tools/files/patch-arch deleted file mode 100644 index 55e54b10a80d..000000000000 --- a/emulators/open-vm-tools/files/patch-arch +++ /dev/null @@ -1,12 +0,0 @@ ---- configure.orig 2008-03-28 10:36:13.000000000 +0100 -+++ configure 2008-03-28 10:36:45.000000000 +0100 -@@ -2259,6 +2259,9 @@ - x86_64) - userSpaceBitness="64" - ;; -+ amd64) -+ userSpaceBitness="64" -+ ;; - *) - { { echo "$as_me:$LINENO: error: Unknown architecture." >&5 - echo "$as_me: error: Unknown architecture." >&2;} diff --git a/emulators/open-vm-tools/files/patch-configure b/emulators/open-vm-tools/files/patch-configure new file mode 100644 index 000000000000..da02caba832c --- /dev/null +++ b/emulators/open-vm-tools/files/patch-configure @@ -0,0 +1,31 @@ +--- ./configure.orig 2013-09-23 15:51:43.000000000 +0000 ++++ ./configure 2013-11-17 22:40:51.197285671 +0000 +@@ -2823,6 +2823,9 @@ + x86_64) + userSpaceBitness="64" + ;; ++ amd64) ++ userSpaceBitness="64" ++ ;; + *) + as_fn_error $? "Unknown architecture." "$LINENO" 5 + ;; +@@ -21733,18 +21736,6 @@ + + done + +-for ac_header in unwind.h +-do : +- ac_fn_c_check_header_mongrel "$LINENO" "unwind.h" "ac_cv_header_unwind_h" "$ac_includes_default" +-if test "x$ac_cv_header_unwind_h" = xyes; then : +- cat >>confdefs.h <<_ACEOF +-#define HAVE_UNWIND_H 1 +-_ACEOF +- +-fi +- +-done +- + + ac_fn_c_check_header_mongrel "$LINENO" "wchar.h" "ac_cv_header_wchar_h" "$ac_includes_default" + if test "x$ac_cv_header_wchar_h" = xyes; then : |