search for: 11,7

Displaying 20 results from an estimated 341 matches for "11,7".

Did you mean: 1,7
2011 Dec 13
1
[LLVMdev] [PATCH] utils/unittest: Consistency of gtest and gtest_main libs.
...e, library_name_as_cstr, ', '.join('"%s"' % dep diff --git a/utils/unittest/UnitTestMain/Makefile b/utils/unittest/UnitTestMain/Makefile index 3082779..7bcb724 100644 --- a/utils/unittest/UnitTestMain/Makefile +++ b/utils/unittest/UnitTestMain/Makefile @@ -11,7 +11,7 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.config -LIBRARYNAME = UnitTestMain +LIBRARYNAME = gtest_main BUILD_ARCHIVE = 1 REQUIRES_RTTI = 1 diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile index 21b29ff..22c8f36 100644 --- a/utils/unittest/goo...
2012 Jun 28
1
[PATCH] klibc: fix gethostname()/getdomainname()
...usr/klibc/getdomainname.c | 2 +- usr/klibc/gethostname.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/klibc/getdomainname.c b/usr/klibc/getdomainname.c index 61722ca3519b..218ff0baa871 100644 --- a/usr/klibc/getdomainname.c +++ b/usr/klibc/getdomainname.c @@ -11,7 +11,7 @@ int getdomainname(char *name, size_t len) { struct utsname un; - if (!uname(&un)) + if (uname(&un)) return -1; if (len < strlen(un.domainname) + 1) { diff --git a/usr/klibc/gethostname.c b/usr/klibc/gethostname.c index 5326b5fc4eb9..120edd943170 100644 --- a/usr/kl...
2010 Apr 20
5
Tremor maintenance
...zilla.gnome.org/show_bug.cgi?id=616194). 0002-pkgconfig.patch this adds a pkg config file You probably also want to do something like Index: configure.in =================================================================== --- configure.in (Revision 17148) +++ configure.in (Arbeitskopie) @@ -11,7 +11,7 @@ AM_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE(libvorbisidec,1.2.0) +AM_INIT_AUTOMAKE(libvorbisidec,1.0.2) to avoid confiusion with the version (see CHANGELOG). There are bugs for debian/ubuntu regarding this. If someone applies patches, I can send more to cleanup autofoo. Thank...
2007 Apr 12
2
[PATCH] Make com32 printf obey width-restriction on %s
...formatted string as well as expand it. In addition, it adds the strnlen function, which only exists as a prototype today. -- Arne. --- syslinux-3.36/com32/lib/Makefile.orig 2007-02-10 21:47:07.000000000 +0100 +++ syslinux-3.36/com32/lib/Makefile 2007-04-12 12:06:07.000000000 +0200 @@ -11,7 +11,7 @@ perror.o printf.o puts.o qsort.o realloc.o seed48.o snprintf.o \ sprintf.o srand48.o sscanf.o stack.o strcasecmp.o strcat.o \ strchr.o strcmp.o strcpy.o strdup.o strerror.o strlen.o \ - strncasecmp.o strncat.o strncmp.o strncpy.o strndup.o \ + strncasecmp.o strncat.o strncmp.o...
2011 Nov 30
4
Compile error with Ubuntu 11.10
Hi, compilation of xen-unstable with a fresh Ubuntu 11.10 x86_64 fails with following error: cc1: warnings being treated as errors libxl_create.c: In function ‘store_libxl_entry’: libxl_create.c:465: error: format not a string literal and no format arguments Steps to reproduce: - Install Ubuntu 11.10 ( http://www.ubuntu.com/start-download?distro=des...
2012 Oct 10
1
[PATCH] dovadm plugins underlinking
...ary: [librt.so.0.9.32] 0x0000000000000001 (NEEDED) Shared library: [libc.so.0.9.32] Below is a patch that should solve it. --- diff -r 4d268e810c15 src/plugins/acl/Makefile.am --- a/src/plugins/acl/Makefile.am Mon Oct 08 08:53:54 2012 +0300 +++ b/src/plugins/acl/Makefile.am Wed Oct 10 11:03:49 2012 +0200 @@ -10,7 +10,8 @@ -I$(top_srcdir)/src/doveadm NOPLUGIN_LDFLAGS = -lib10_doveadm_acl_plugin_la_LDFLAGS = -module -avoid-version +lib10_doveadm_acl_plugin_la_LDFLAGS = -module -avoid-version -Wl,-rpath,$(moduledir) +lib10_doveadm_acl_plugin_la_LIBADD = $(module_LTLIBRARIES) lib0...
2006 Apr 20
3
[PATCH] fix tools compile issue on sles 10
...devel/2006-03/msg00565.html http://lists.xensource.com/archives/html/xen-devel/2006-04/msg00090.html prefix is being passed along for some reason. this patch is a simple fix that will make sure prefix is not defined. Signed-off-by: Ryan Grimm <grimm@us.ibm.com> diff -r 72f9c751d3ea -r 683811163238 tools/pygrub/Makefile --- a/tools/pygrub/Makefile Wed Apr 19 18:32:20 2006 +0100 +++ b/tools/pygrub/Makefile Thu Apr 20 11:27:33 2006 -0500 @@ -11,7 +11,7 @@ build: .PHONY: install ifndef XEN_PYTHON_NATIVE_INSTALL install: all - CFLAGS="$(CFLAGS)" python setup.py install --home=&...
2019 Jan 15
0
[PATCH] drm: Split out drm_probe_helper.h
...ly because > someone else is doing a drmP.h cleanup. Laurent maybe? There's a drmP.h cleanup in the R-Car DU driver, but it doesn't conflict with this patch, the combination of both compiles fine. > Jani, ack on this? > -Daniel > --- [snip] > drivers/gpu/drm/bridge/adv7511/adv7511.h | 5 +- > drivers/gpu/drm/bridge/analogix-anx78xx.c | 2 +- > drivers/gpu/drm/bridge/dumb-vga-dac.c | 2 +- > drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 2 +- > drivers/gpu/drm/bridge/ti-tfp410.c | 2 +- > drivers/gpu/drm/drm_atomic_hel...
2013 Mar 13
0
[LLVMdev] r176991 - Really fix the MIPS test.
...est/CodeGen/mips16-attr.c?rev=176991&r1=176990&r2=176991&view=diff > ============================================================================== > --- cfe/trunk/test/CodeGen/mips16-attr.c (original) > +++ cfe/trunk/test/CodeGen/mips16-attr.c Wed Mar 13 17:44:19 2013 > @@ -11,7 +11,7 @@ void __attribute__((nomips16)) nofoo (vo > > // CHECK: define void @nofoo() [[NOMIPS16:#[0-9]+]] > > -// CHECK: attributes [[MIPS16]] = { nounwind "mips16" {{.*}} } > +// CHECK: attributes [[MIPS16]] = { nounwind {{.*}} "mips16" {{.*}} } > > -//...
2016 Apr 18
0
[PATCH v4 17/37] bios/vmap: unk0 field is the mode
...| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drm/nouveau/include/nvkm/subdev/bios/vmap.h b/drm/nouveau/include/nvkm/subdev/bios/vmap.h index ae2f27b..8fa1294 100644 --- a/drm/nouveau/include/nvkm/subdev/bios/vmap.h +++ b/drm/nouveau/include/nvkm/subdev/bios/vmap.h @@ -11,7 +11,7 @@ u16 nvbios_vmap_parse(struct nvkm_bios *, u8 *ver, u8 *hdr, u8 *cnt, u8 *len, struct nvbios_vmap *); struct nvbios_vmap_entry { - u8 unk0; + u8 mode; u8 link; u32 min; u32 max; diff --git a/drm/nouveau/nvkm/subdev/bios/vmap.c b/drm/nouveau/nvkm/subdev/bios/vmap.c ind...
2019 Feb 01
0
[klibc:master] README: Point the mailing list URL back to Mailman
...ling list from the Mailman list information page to the Pipermail archive page. Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index d41c997c..d9870488 100644 --- a/README +++ b/README @@ -11,7 +11,7 @@ There is a mailing list for klibc and early-userspace issues at: klibc at zytor.com - https://www.zytor.com/pipermail/klibc/ + https://www.zytor.com/mailman/listinfo/klibc klibc is maintained in the git version control system. The git repository can be viewed on the web at:
2017 Nov 21
1
[nbdkit PATCH] maint: Mention upstream NBD in README
...h having a link to the upstream NBD protocol as part of README. Fix a typo while at it. Signed-off-by: Eric Blake <eblake@redhat.com> --- README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README b/README index 7b5de90..7806cf5 100644 --- a/README +++ b/README @@ -11,7 +11,7 @@ The key features are: libraries or included in proprietary code. * Well-documented, simple plugin API with a stable ABI guarantee. - Let's you export "unconventional" block devices easily. + Lets you export "unconventional" block devices easily. * You can...
2008 Jul 11
0
canvas url rewriting fails for templates loaded through ajax
.../rails/facebook_url_rewriting.rb b/vendor/plugins/facebooker/lib/facebooker/rails/facebook_url_rewriting.rb index 00b1e1d..e81a316 100644 --- a/vendor/plugins/facebooker/lib/facebooker/rails/facebook_url_rewriting.rb +++ b/vendor/plugins/facebooker/lib/facebooker/rails/facebook_url_rewriting.rb @@ -11,7 +11,7 @@ module ::ActionController def link_to_canvas?(params, options) option_override = options[:canvas] return false if option_override == false # important to check for false. nil should use default behavior - option_override || @request.parameters["fb_sig_in_canv...
2008 Jan 24
0
[PATCH] Fix spelling/grammar in NEWS.
--- Let's try submitting a patch the git way! NEWS | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 0f7c634..9258e6b 100644 --- a/NEWS +++ b/NEWS @@ -11,7 +11,7 @@ Changes since 2.6.9: an implied dir be duplicated as a symlink, you should specify the transfer of the symlink and the transfer of the referent directory as separate args. (See also --keep-dirlinks and --no-implied-dirs.) - Also, exclude rules no longer have a...
2011 Jul 23
1
[PATCH] xen/pciback: remove duplicated #include
....com> --- drivers/xen/xen-pciback/xenbus.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/xen/xen-pciback/xenbus.c b/drivers/xen/xen-pciback/xenbus.c index 206c4ce..978d2c6 100644 --- a/drivers/xen/xen-pciback/xenbus.c +++ b/drivers/xen/xen-pciback/xenbus.c @@ -11,7 +11,6 @@ #include <xen/xenbus.h> #include <xen/events.h> #include <asm/xen/pci.h> -#include <linux/workqueue.h> #include "pciback.h" #define DRV_NAME "xen-pciback" -- 1.5.6.4
2011 Jul 23
1
[PATCH] xen/pciback: remove duplicated #include
....com> --- drivers/xen/xen-pciback/xenbus.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/xen/xen-pciback/xenbus.c b/drivers/xen/xen-pciback/xenbus.c index 206c4ce..978d2c6 100644 --- a/drivers/xen/xen-pciback/xenbus.c +++ b/drivers/xen/xen-pciback/xenbus.c @@ -11,7 +11,6 @@ #include <xen/xenbus.h> #include <xen/events.h> #include <asm/xen/pci.h> -#include <linux/workqueue.h> #include "pciback.h" #define DRV_NAME "xen-pciback" -- 1.5.6.4
2005 Jan 05
2
[PATCH] getopt
Patch to guarantee __optptr initialization and to correctly increment optind for missing arguments. --- klibc-0.194/klibc/getopt.c.orig 2005-01-04 23:18:50.229222640 -0700 +++ klibc-0.194/klibc/getopt.c 2005-01-04 23:17:05.236184008 -0700 @@ -11,7 +11,7 @@ char *optarg; int optind = 1; int opterr, optopt; -static const char *__optptr; +static const char *__optptr = NULL; int getopt(int argc, char * const *argv, const char *optstring) { @@ -51,6 +51,7 @@ optind += 2; } else { /* Missing argument */ + optind++; return...
2020 Feb 19
1
[PATCH] ruby: change value of 'readonly' drive toption to Boolean in doc/example/test
..."raw") + :readonly => true, :format => "raw") g.launch() =head1 DESCRIPTION diff --git a/ruby/examples/inspect_vm.rb b/ruby/examples/inspect_vm.rb index abf227901..d444e01a2 100644 --- a/ruby/examples/inspect_vm.rb +++ b/ruby/examples/inspect_vm.rb @@ -11,7 +11,7 @@ disk = ARGV[0] g = Guestfs::Guestfs.new() # Attach the disk image read-only to libguestfs. -g.add_drive_opts(disk, :readonly => 1) +g.add_drive_opts(disk, :readonly => true) # Run the libguestfs back-end. g.launch() diff --git a/ruby/t/tc_070_optargs.rb b/ruby/t/tc_070_optarg...
2012 Oct 21
0
[LLVMdev] dragonegg polly support broken?
On Sun, Oct 21, 2012 at 11:58:43AM -0700, Tobias Grosser wrote: ... > Does attached patch work for you? > > Tobi > Tobi, Yes, with this patch current llvm/polly svn builds and runs 'make polly-test' without issues in finding LLVMPolly.so. Thanks for fixing this so quickly. Do you have any comments on...
2018 Feb 21
3
[PATCH] New API: inspect_get_osinfo
...A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include <config.h> + +#include "guestfs.h" +#include "guestfs-internal.h" +#include "guestfs-internal-actions.h" + +char * +guestfs_impl_inspect_get_osinfo (guestfs_h *g, const char *root) +{ + CLEANUP_FREE char *type = NULL; + CLEANUP_FREE c...