search for: am_v_gen

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

2015 May 01
0
[ANNOUNCE] libXaw 1.0.13
...: Honor NOCONFIGURE=1 Use autoconf HAVE_UNISTD_H instead of imake X_NOT_POSIX to find <unistd.h> Just use C89 size_t instead of rolling our own Size_t Use SEEK_* names instead of raw numbers for fseek whence argument libXaw 1.0.13 Gaetan Nadon (2): Makefile: use AM_V_GEN and AM_V_at to implement automake silent rules Makefile: use $(LN_S) for better code portability Jon TURNEY (1): Include <unistd.h> Thomas Klausner (1): Fix abs() usage. git tag: libXaw-1.0.13 http://xorg.freedesktop.org/archive/individual/lib/libXaw-1.0.13.tar.bz2 MD5:...
2010 Nov 02
0
[ANNOUNCE] libXi 1.4.0
...man: use "shadows" terminology in variable names. man: rename libman_pre to libman_PRE man: add/change comments regarding the 3 step conversion from text source man: Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS man: whitespace management man: add $(AM_V_GEN) for silent rules where missing Jamey Sharp (1): Don't unlock the Display twice. Jesse Adkins (1): Purge cvs tags. Julien Cristau (1): man: fix typo in XIQueryDevice doc Matt Dew (1): specs: convert input .ms specs from xorg-docs module to DocBook XML Matthieu Herrb...
2010 Oct 25
2
[nut-commits] svn commit r2610 - branches/silent_build
Citeren Arnaud Quette <aquette op alioth.debian.org>: > Log: > Optionaly enable silent build rules, using AM_SILENT_RULES, only if > it's supported (requires automake 1.11) Why do we need a new branch for this? As far as I can see, only the below lines are really needed > +dnl Currently, we only (force) enable silent rules if available > +dnl Verbose mode can be
2019 Jul 03
7
[PATCH 0/6] p2v: make it more independent (part #2)
As preliminary steps in splitting virt-p2v to an own repository, continue making p2v more independent within libguestfs. This is accomplished by the following changes: - have only the authors in the about dialog, and read them from a local AUTHORS file - few more cleanups This is still not complete, although I believe most of the work needed is done, and it still makes p2v usable within
2019 Jul 01
0
[PATCH 1/6] p2v: move kernel config to perl script
...ed_sources) + virt_p2v_CPPFLAGS = \ -DLOCALEBASEDIR=\""$(datadir)/locale"\" \ -I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \ @@ -127,6 +130,9 @@ virt_p2v_LDADD = \ ../gnulib/lib/libgnu.la \ -lm +$(generated_sources): $(srcdir)/generate-p2v-config.pl + $(AM_V_GEN)rm -f $@ $@-t && $(PERL) $(<) --file=$@ --output=$@-t && mv $@-t $@ + # Scripts to build the disk image, USB key, or kickstart. bin_SCRIPTS = virt-p2v-make-disk virt-p2v-make-kickstart virt-p2v-make-kiwi diff --git a/p2v/generate-p2v-config.pl b/p2v/generate-p2v-config.pl new...
2019 Jan 21
18
[PATCH xf86-video-nouveau 00/17] autotools configuration cleanups
Series of cleanups to autotools build config files to utilize the available xorg-server macros, defaults and more closely match other modern Xorg drivers. Notable improvements: - gitignore fully covers potential build artifacts - Simplify logic given stated minimum required version of xorg-server 1.8 - Remove use of deprecated, outdated or no longer required macros - Utilize xorg macros where
2019 Jul 01
8
[PATCH 0/6] p2v: start making it independent
As preliminary steps in splitting virt-p2v to an own repository, start making p2v more independent within libguestfs. This is accomplished by the following changes: - generate the p2v kernel config sources & docs at build time using a Perl script, rather than the generator (so no need for OCaml when building from git, and no generated sources in dist tarballs) - create two local test
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am