All of lore.kernel.org
 help / color / mirror / Atom feed
* missing include...
@ 2002-07-14 16:04 Jerry McBride
  2002-07-14 16:53 ` Tomas Szepe
  2002-07-15 13:43 ` DervishD
  0 siblings, 2 replies; 7+ messages in thread
From: Jerry McBride @ 2002-07-14 16:04 UTC (permalink / raw)
  To: Linux Kernel List



In compiling 2.4.18 I find that this include is missing from the source...

linux-2.4.18/include/linux/version.h



-- 

*************************************************************************
*****
                     Registered Linux User Number 185956
          http://groups.google.com/groups?hl=en&safe=off&group=linux
    11:59am  up 123 days, 17:08,  5 users,  load average: 0.03, 0.08, 0.04

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: missing include...
  2002-07-14 16:04 Jerry McBride
@ 2002-07-14 16:53 ` Tomas Szepe
  2002-07-14 17:17   ` Jerry McBride
  2002-07-15 13:43 ` DervishD
  1 sibling, 1 reply; 7+ messages in thread
From: Tomas Szepe @ 2002-07-14 16:53 UTC (permalink / raw)
  To: Jerry McBride; +Cc: Linux Kernel List

> In compiling 2.4.18 I find that this include is missing from the source...
> linux-2.4.18/include/linux/version.h

It is not. You have just failed to follow the kernel build instructions:
See /usr/src/linux/README.

T.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: missing include...
  2002-07-14 16:53 ` Tomas Szepe
@ 2002-07-14 17:17   ` Jerry McBride
  2002-07-14 17:27     ` Tomas Szepe
  0 siblings, 1 reply; 7+ messages in thread
From: Jerry McBride @ 2002-07-14 17:17 UTC (permalink / raw)
  To: Tomas Szepe; +Cc: Linux Kernel List

On Sun, 14 Jul 2002 18:53:57 +0200 Tomas Szepe <szepe@pinerecords.com>
wrote:

> > In compiling 2.4.18 I find that this include is missing from the
> > source... linux-2.4.18/include/linux/version.h
> 
> It is not. You have just failed to follow the kernel build instructions:
> See /usr/src/linux/README.
> 

I read it, I printed it out. Where does it discuss a missing version.h
include?



-- 

*************************************************************************
*****
                     Registered Linux User Number 185956
          http://groups.google.com/groups?hl=en&safe=off&group=linux
    1:12pm  up 123 days, 18:21,  5 users,  load average: 0.08, 0.09, 0.04

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: missing include...
  2002-07-14 17:17   ` Jerry McBride
@ 2002-07-14 17:27     ` Tomas Szepe
  0 siblings, 0 replies; 7+ messages in thread
From: Tomas Szepe @ 2002-07-14 17:27 UTC (permalink / raw)
  To: Jerry McBride; +Cc: Linux Kernel List

> > > In compiling 2.4.18 I find that this include is missing from the
> > > source... linux-2.4.18/include/linux/version.h
> > 
> > It is not. You have just failed to follow the kernel build instructions:
> > See /usr/src/linux/README.
> 
> I read it, I printed it out. Where does it discuss a missing version.h
> include?

$SRCDIR/include/linux/version.h is a generated file. "make dep" will create
an instance of it for you.

T.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: missing include...
  2002-07-14 16:04 Jerry McBride
  2002-07-14 16:53 ` Tomas Szepe
@ 2002-07-15 13:43 ` DervishD
  1 sibling, 0 replies; 7+ messages in thread
From: DervishD @ 2002-07-15 13:43 UTC (permalink / raw)
  To: mcbrides9, linux-kernel

    Hi Jerry :)

>In compiling 2.4.18 I find that this include is missing from the source...
>linux-2.4.18/include/linux/version.h

    It is created when doing the 'make dep'.
    Raúl

^ permalink raw reply	[flat|nested] 7+ messages in thread

* missing include
@ 2010-06-09  6:24 YAMAMOTO Takashi
  2010-06-09  7:46 ` Jens Axboe
  0 siblings, 1 reply; 7+ messages in thread
From: YAMAMOTO Takashi @ 2010-06-09  6:24 UTC (permalink / raw)
  To: fio

hi,

please incorporate the following trivial patch.

YAMAMOTO Takashi

Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>

commit 0d8b33274c738784c26d842d66c41ee5e7ddc0a3
Author: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Date:   Wed Jun 9 15:23:07 2010 +0900

    include libgen.h for basename.

diff --git a/filesetup.c b/filesetup.c
index ec5d781..9cc4872 100644
--- a/filesetup.c
+++ b/filesetup.c
@@ -3,6 +3,7 @@
 #include <string.h>
 #include <assert.h>
 #include <dirent.h>
+#include <libgen.h>
 #include <sys/stat.h>
 #include <sys/mman.h>
 #include <sys/types.h>

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: missing include
  2010-06-09  6:24 missing include YAMAMOTO Takashi
@ 2010-06-09  7:46 ` Jens Axboe
  0 siblings, 0 replies; 7+ messages in thread
From: Jens Axboe @ 2010-06-09  7:46 UTC (permalink / raw)
  To: YAMAMOTO Takashi; +Cc: fio

On 2010-06-09 08:24, YAMAMOTO Takashi wrote:
> Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>

Added

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-06-09  7:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-09  6:24 missing include YAMAMOTO Takashi
2010-06-09  7:46 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2002-07-14 16:04 Jerry McBride
2002-07-14 16:53 ` Tomas Szepe
2002-07-14 17:17   ` Jerry McBride
2002-07-14 17:27     ` Tomas Szepe
2002-07-15 13:43 ` DervishD

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.