Displaying 2 results from an estimated 2 matches for "295de11".
Did you mean:
295,11
2015 Feb 12
2
[PATCH] macosx: Darwin-specific autoconf macros
...IBRARY_PATH with DYLD_LIBRARY_PATH for Darwin
* Remove the -lcrypt flag for Darwin (unsupported)
---
configure.ac | 13 +++++++++++++
run.in | 10 +++++-----
v2v/link.sh.in | 2 +-
3 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/configure.ac b/configure.ac
index d68190a..295de11 100644
--- a/configure.ac
+++ b/configure.ac
@@ -582,6 +582,19 @@ fi
AC_MSG_RESULT([$DISTRO])
AC_SUBST([DISTRO])
+AC_MSG_CHECKING([whether we're building on Mac OS X])
+if test "x$(uname)" = "xDarwin"; then
+ AC_MSG_RESULT([yes])
+ LCRYPT_FLAG=
+ SHARED_LIBS_PATH=&quo...
2015 Feb 12
0
Re: [PATCH] macosx: Darwin-specific autoconf macros
...> * Remove the -lcrypt flag for Darwin (unsupported)
> ---
> configure.ac | 13 +++++++++++++
> run.in | 10 +++++-----
> v2v/link.sh.in | 2 +-
> 3 files changed, 19 insertions(+), 6 deletions(-)
>
> diff --git a/configure.ac b/configure.ac
> index d68190a..295de11 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -582,6 +582,19 @@ fi
> AC_MSG_RESULT([$DISTRO])
> AC_SUBST([DISTRO])
>
> +AC_MSG_CHECKING([whether we're building on Mac OS X])
> +if test "x$(uname)" = "xDarwin"; then
> + AC_MSG_RESULT([y...