diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2012-03-24 16:25:39 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2012-03-24 16:25:39 +0000 |
commit | 507b4c8ad120c59db0eccf394d702a47b6539d41 (patch) | |
tree | df5410b81b06654291ebdb7f919390175ac43368 /devel/gecode/files | |
parent | a06802e46ac1592b18bdee2602a8061fac89ba7c (diff) | |
download | ports-507b4c8ad120c59db0eccf394d702a47b6539d41.tar.gz ports-507b4c8ad120c59db0eccf394d702a47b6539d41.zip |
Notes
Diffstat (limited to 'devel/gecode/files')
-rw-r--r-- | devel/gecode/files/patch-configure | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/devel/gecode/files/patch-configure b/devel/gecode/files/patch-configure deleted file mode 100644 index 9a16ccf6b701..000000000000 --- a/devel/gecode/files/patch-configure +++ /dev/null @@ -1,21 +0,0 @@ -Description: Let the configure script succeed on FreeBSD. - Fix a bashism (test = instead of ==). -Forwarded: yes -Author: Peter Pentchev <roam@FreeBSD.org> -Last-Update: 2011-02-10 - ---- a/configure -+++ b/configure -@@ -10531,9 +10531,9 @@ - - - ac_gecode_library_architecture=-${VERSION_DASHES}${ac_gecode_library_architecture} --if test "$ac_gecode_compiler_vendor" == "microsoft" \ -- -o \( "$ac_gecode_compiler_vendor" == "intel" \ -- -a "$host_os" == "windows" \) ; then -+if test "$ac_gecode_compiler_vendor" = "microsoft" \ -+ -o \( "$ac_gecode_compiler_vendor" = "intel" \ -+ -a "$host_os" = "windows" \) ; then - DLL_ARCH=${ac_gecode_library_architecture} - - else |