search for: autopoint

Displaying 20 results from an estimated 101 matches for "autopoint".

2009 Aug 25
0
[PATCH libguestfs] build: invoke autopoint with --force
...I'd see a warning about an existing build-aux/config.rpath go by whenever bootstrap ran: >From 4c1cc009cd04995acd05cfffa3c497403f8c7a55 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Tue, 25 Aug 2009 09:10:21 +0200 Subject: [PATCH libguestfs] build: invoke autopoint with --force * bootstrap: Invoke autopoint with --force, to avoid warning about existing build-aux/config.rpath. --- bootstrap | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap index 2eba6a7..85afda8 100755 --- a/bootstrap +++ b/bootstrap @@ -29,7 +29...
2009 Aug 25
1
[PATCH libguestfs 1/2] build: invoke autopoint and autoreconf with --force
...tically rerun bootstrap to re-sync the gnulib/* bits from the updated .gnulib repository. >From a64c926f14cc5b287ab10039fe5be1521c3183e1 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Tue, 25 Aug 2009 09:10:21 +0200 Subject: [PATCH libguestfs 1/2] build: invoke autopoint and autoreconf with --force * bootstrap: Invoke autopoint with --force, to avoid warning about existing build-aux/config.rpath. * autogen.sh: Invoke autoreconf with --force, too. --- autogen.sh | 2 +- bootstrap | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen...
2009 Sep 04
1
[PATCH libguestfs] avoid build-from-scratch failure due to missing daemon/configure
...r to create daemon/configure. Reported by Matthew Booth. --- bootstrap | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index c3f7d6e..60e71fd 100755 --- a/bootstrap +++ b/bootstrap @@ -82,5 +82,4 @@ $gnulib_tool \ --import $modules # Disable autopoint and libtoolize, since they were already done above. -AUTOPOINT=true LIBTOOLIZE=true \ - autoreconf --verbose --install --no-recursive +AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install -- 1.6.4.2.409.g85dc3
2012 Jun 11
1
[hivex][PATCH v2] OS X, bootstrap: Locate pkg.m4
...igned-off-by: Alex Nelson <ajnelson at cs.ucsc.edu> --- bootstrap | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap index b2960c1..52c05d5 100755 --- a/bootstrap +++ b/bootstrap @@ -86,4 +86,4 @@ $gnulib_tool \ --import $modules # Disable autopoint and libtoolize, since they were already done above. -AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install +AUTOPOINT=true LIBTOOLIZE=true ACLOCAL_PATH=$(aclocal --print-ac-dir) autoreconf --verbose --install -- 1.7.3.1
2012 Jun 11
1
[hivex][PATCH] OS X, bootstrap: Locate pkg.m4
...=$(test -f /opt/local/share/aclocal/pkg.m4 && dirname /opt/local/share/aclocal/pkg.m4) || \ + $(test -f /usr/local/share/aclocal/pkg.m4 && dirname /usr/local/share/aclocal/pkg.m4) || \ + $(test -f /usr/share/aclocal/pkg.m4 && dirname /usr/share/aclocal/pkg.m4) + # Disable autopoint and libtoolize, since they were already done above. -AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install +AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose -I $pkgm4dir --install -- 1.7.3.1
2009 Sep 02
2
[PATCH] internationalisation: Replace autopoint infrastructure with libintl-perl
...t libguestfs.pot didn't include any messages from perl sources. Some reading of libintl-perl shows that a somewhat more complicated xgettext command line is required, as it doesn't understand Locale::TextDomain syntax by default. After a little more head scratching, I decided to replace the autopoint generated infrastructure with the reference infrastructure from libintl-perl because: 1. It works 2. It's a whole lot more transparent libguestfs still needs some attention in this area. This change may not be appropriate for libguestfs because it is not exclusively written in perl.
2003 Jun 07
3
tinc-1.0pre8 fails to compile on RH 9.0
...rror. shashank@mia:~/temp/tinc> ./autogen.sh **Warning**: I am going to run `configure' with no arguments. If you wish to pass any to it, please specify them on the `./autogen.sh' command line. processing /home/shashank/temp/tinc Creating /home/shashank/temp/tinc/aclocal.m4 ... Running autopoint... cvs [checkout aborted]: no such tag gettext-0_11_5 /usr/bin/autopoint: line 259: fatal_error: command not found find: tmpwrk32408/archive: No such file or directory Making /home/shashank/temp/tinc/aclocal.m4 writable ... gmake: Entering directory `/home/shashank/temp/tinc/m4' rm -f Makefile....
2010 Oct 27
1
[PATCH] Remove ocaml/.depend from git
ocaml/.depend is automatically generated. This patch removes it from git. --- .gitignore | 1 + ocaml/.depend | 5 ----- 2 files changed, 1 insertions(+), 5 deletions(-) delete mode 100644 ocaml/.depend -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Remove-ocaml-.depend-from-git.patch Type: text/x-patch Size: 495 bytes Desc: not available URL:
2011 Sep 06
1
[PATCH 3/3] Mac OS X: Run glibtoolize in absence of libtoolize
Signed-off-by: Alex Nelson <ajnelson at cs.ucsc.edu> --- bootstrap | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap index 79b6717..b2960c1 100755 --- a/bootstrap +++ b/bootstrap @@ -36,7 +36,7 @@ autopoint --force # Autoreconf runs aclocal before libtoolize, which causes spurious # warnings if the initial aclocal is confused by the libtoolized # (or worse out-of-date) macro directory. -libtoolize --copy --install +libtoolize --copy --install || glibtoolize --copy --install # Create gettext conf...
2012 Jun 08
1
[hivex] OS X: Augment pkg-config search path
...re/aclocal, so ./configure dies without augmenting aclocal's search path. My question: What is the proper way to augment this path? I see two options available, one at the top of hivex/Makefile.am: ACLOCAL_AMFLAGS = -I m4 -I /opt/local/share/aclocal And one at the bottom of hivex/bootstrap: AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose -I /opt/local/share/aclocal --install I just hard-coded one path into those example lines, as I'm simply not sure what the PATH variable I should use is. aclocal dies if a non-existent path component is passed with -I. If I understand correctly, PKG_...
2010 Mar 21
2
Observations on compiling on Mac OS X 10.5 (Leopard)
...SILENT_RULES([yes]) # make --enable-silent-rules the default. this nevertheless doesn't work. I had to comment out these two lines in both configure.ac and daemon/configure.ac. There is no libtoolize. I had to manually link build-aux/ltmain.sh -> /usr/share/libtool/ltmain.sh There is no autopoint. I think this is the reason I had to manually remove references to the po/ subdirectory. There is no mkisofs. I commented out the test for this in configure.ac, but eventually I'll have to find out if this is available for Mac OS X because it is relatively important (used by libguestfs-test-...
2013 Dec 13
2
[LLVMdev] Making LLVM safer in out-of-memory situations
...all exceptions that may occur during compilation, but normally we do not add any additional catch clauses into the llvm source itself. We mainly rely on correct stack unwinding by destructors in llvm when an exception is thrown. In the cases when it is not sufficient, we had to add some additional autopointers, an in some cases implement additional unwind logic. In some cases we indeed had to add some exception handling in destructors in cases where they allocate memory, but such fixes are rather workarounds, because a correct solution would be to avoid memory allocation in destructors in the first pl...
2009 Aug 10
2
/config.status
If you just git clone, ./autogen.sh, make, then the first time you get this error: Making all in po make[2]: Entering directory `/home/rjones/d/libguestfs/po' make[2]: *** No rule to make target `/config.status', needed by `Makefile'. Stop. make[2]: Leaving directory `/home/rjones/d/libguestfs/po' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory
2013 Dec 19
0
[LLVMdev] Making LLVM safer in out-of-memory situations
...all exceptions that may occur during compilation, but normally we do not add any additional catch clauses into the llvm source itself. We mainly rely on correct stack unwinding by destructors in llvm when an exception is thrown. In the cases when it is not sufficient, we had to add some additional autopointers, an in some cases implement additional unwind logic. In some cases we indeed had to add some exception handling in destructors in cases where they allocate memory, but such fixes are rather workarounds, because a correct solution would be to avoid memory allocation in destructors in the first pl...
2013 Dec 13
0
[LLVMdev] Making LLVM safer in out-of-memory situations
----- Original Message ----- > From: "Philipp Becker" <philipp.becker at sap.com> > To: "Philip Reames" <listmail at philipreames.com>, "LLVM Dev" <llvmdev at cs.uiuc.edu> > Sent: Friday, December 13, 2013 6:55:59 AM > Subject: Re: [LLVMdev] Making LLVM safer in out-of-memory situations > > Hi Philip, > > Thanks for the
2013 Oct 01
1
Should I forget sssd ?
...he best way to make all this working together ? Thanks in advance for your time. Nicolas In case that could help some, here are the steps I've done to install sssd 1.11.1: cd ~ wget https://fedorahosted.org/released/sssd/sssd-1.11.1.tar.gz sudo apt-get install debhelper quilt dh-autoreconf autopoint lsb-release dpkg-dev dnsutils libpopt-dev libdbus-1-dev libkeyutils-dev libkeyutils-dev libldap2-dev libpam-dev libnl-dev libnss3-dev libnspr4-dev libpcre3-dev libselinux1-dev libsasl2-dev libtevent-dev libldb-dev libtalloc-dev libtdb-dev xml-core docbook-xsl docbook-xml libxml2...
2013 Dec 13
4
[LLVMdev] Making LLVM safer in out-of-memory situations
Hi Philip, Thanks for the positive response from all of you! > One question: How are you handling EOM? Error return? Custom region allocator? When running into an Out-of-memory situation we're currently only doing an error return, i.e. the compilation fails, but does so without crashing the process in which the compilation/jitting occurs. It is ok for us if llvm returns with a
2003 Aug 04
1
OpenBSD 3.2 and Release 1
...vs server: Updating tinc/src/raw_socket U tinc/src/raw_socket/device.c cvs server: Updating tinc/src/solaris U tinc/src/solaris/device.c cvs server: Updating tinc/tinc-config PC206# cd tinc PC206# ./autogen.sh --with-lzo=/usr/local/ processing /ttest/tinc Creating /ttest/tinc/aclocal.m4 ... Running autopoint... Copying file ABOUT-NLS Copying file config.rpath Copying file m4/codeset.m4 Copying file m4/gettext.m4 Copying file m4/glibc21.m4 Copying file m4/iconv.m4 Copying file m4/intdiv0.m4 Copying file m4/inttypes-pri.m4 Copying file m4/inttypes.m4 Copying file m4/inttypes_h.m4 Copying file m4/isc-posi...
2006 Jun 24
8
How to install programs in wine?
I am a rank newbie to Linux and wine. I am running Ubuntu Dapper on an AMD 1800 mhz machine, wine 0.9.15 Everything I have read says use the installer to load windows programs. Where is the installer? Thanks, -- Ron Thompson On the Beautiful Florida Space Coast, right beside the Kennedy Space Center, USA http://www.plansandprojects.com My hobby pages are here:
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