search for: 15b6e66

Displaying 3 results from an estimated 3 matches for "15b6e66".

Did you mean: 151666
2015 Feb 12
3
[PATCH 1/2] run: Set DYLD_LIBRARY_PATH along with LD_LIBRARY_PATH
Mac OS X uses DYLD_LIBRARY_PATH rather than LD_LIBRARY_PATH. --- run.in | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/run.in b/run.in index a8c2904..bf7ea1b 100755 --- a/run.in +++ b/run.in @@ -77,13 +77,10 @@ fi
2015 Feb 12
0
[PATCH 2/2] lib: Check if crypt() comes from a separate library
...RYPT_LIBS="-lcrypt" +fi +AC_SUBST([LIBCRYPT_LIBS]) + dnl Check for libdl/dlopen (optional - only used to test if the library dnl can be used with libdl). AC_CHECK_LIB([dl],[dlopen],[have_libdl=yes],[have_libdl=no]) diff --git a/customize/link.sh.in b/customize/link.sh.in index 79dc847..15b6e66 100644 --- a/customize/link.sh.in +++ b/customize/link.sh.in @@ -19,4 +19,4 @@ # Hack automake to link binary properly. There is no other way to add # the -cclib parameter to the end of the command line. -exec "$@" -linkpkg -cclib '-lutils @LIBTINFO_LIBS@ -lcrypt @LIBVIRT_LIBS@ @...
2015 May 13
3
[PATCH 1/2] build: factor out the OCaml link.sh scripts
...link.sh virt_customize_LINK = \ - ./link.sh \ + $(top_srcdir)/ocaml-link.sh -cclib '$(OCAMLCLIBS)' -- \ $(OCAMLFIND) $(BEST) $(OCAMLFLAGS) $(OCAMLPACKAGES) $(OCAMLLINKFLAGS) \ $(OBJECTS) -o $@ diff --git a/customize/link.sh.in b/customize/link.sh.in deleted file mode 100644 index 15b6e66..0000000 --- a/customize/link.sh.in +++ /dev/null @@ -1,22 +0,0 @@ -# libguestfs Makefile.am -# @configure_input@ -# (C) Copyright 2014 Red Hat Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -#...