search for: ac_prog_ln_s

Displaying 8 results from an estimated 8 matches for "ac_prog_ln_s".

2008 Nov 13
2
oggz tool renames
...ed. thanks for the feedback John, and others that discussed this over irc or beer. The Makefile rules I used just call "rm" and "ln -s" directly. Does anyone have advice about how to make this portable, ie. is it ok to just write $(RM) and $(LN_S), after calling AC_PROG_RM and AC_PROG_LN_S in configure.ac, or would that make configure fail if those programs aren't installed in the first place? please test :-) Conrad.
2014 Mar 02
2
Re: [PATCH 3/8] builder: add functions to read XDG_CONFIG_DIRS and XDG_CONFIG_PATH
On Tue, Feb 25, 2014 at 05:29:08PM +0100, Pino Toscano wrote: > +let xdg_config_dirs ~prog = > + let dirs = > + try Sys.getenv "XDG_CONFIG_DIRS" > + with Not_found -> "/etc/xdg" in This seems to put the virt-builder config files into /etc/xdg/virt-builder which is kind of annoying. Can we move them to a regular default location (/etc/virt-builder)? I
2012 Apr 13
1
[PATCH] libxl/build: print a pretty message if flex/bison are needed but not found
...t; --- tools/configure.ac | 2 ++ tools/libxl/Makefile | 16 ++++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/tools/configure.ac b/tools/configure.ac index 3da0c82..8ccdc92 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -75,6 +75,8 @@ AC_PROG_CC AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_INSTALL +AC_PATH_PROG([BISON], [bison]) +AC_PATH_PROG([FLEX], [flex]) AX_PATH_PROG_OR_FAIL([PERL], [perl]) AS_IF([test "x$xapi" = "xy"], [ AX_PATH_PROG_OR_FAIL([CURL], [curl-config]) diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index...
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
...--new-file openssh-3.6.1p2.macro/configure.ac openssh-3.6.1p2/configure.ac --- openssh-3.6.1p2.macro/configure.ac 2003-04-29 09:12:08.000000000 +0000 +++ openssh-3.6.1p2/configure.ac 2003-05-06 20:53:51.000000000 +0000 @@ -12,6 +12,7 @@ AC_C_BIGENDIAN AC_PROG_CPP AC_PROG_RANLIB AC_PROG_INSTALL +AC_PROG_LN_S AC_PATH_PROG(AR, ar) AC_PATH_PROGS(PERL, perl5 perl) AC_PATH_PROG(SED, sed)
2018 Aug 14
5
[PATCH 1/4] build: Use LT_INIT in configure.ac.
...BER=libguestfs_major.libguestfs_minor AC_SUBST([BRANCH_NUMBER]) diff --git a/m4/guestfs-progs.m4 b/m4/guestfs-progs.m4 index d36c6531e..a36b9ad2d 100644 --- a/m4/guestfs-progs.m4 +++ b/m4/guestfs-progs.m4 @@ -37,7 +37,6 @@ m4_ifdef([AC_PROG_SED],[ # Define $(AWK). AC_PROG_AWK -AC_PROG_LIBTOOL AC_PROG_LN_S dnl Check for cpio which isn't in the default Pardus install amazingly. -- 2.18.0
2008 Jul 07
2
oggz tool renames
Hi, After lots and lots of requests, I went through and changed all the tool names in oggz so that they contain hyphens: http://trac.annodex.net/changeset/3627 That patch touches the names of built executables, references to them in docs and scripts (ie. oggz-dump is called by oggz-diff) etc. There's lots of little places where the tool names appear, so please test against the current oggz
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a