chromium 37 up for testing (and polishing)

René Ladan rene at freebsd.org
Sat Aug 23 17:29:53 UTC 2014


Op 23 aug. 2014 19:19 schreef "Carlos Jacobo Puga Medina" <cpm at fbsd.es>:
>
> > In file included from ../../base/files/file_path_watcher_kqueue.cc:5:
> > In file included from ../../base/files/file_path_watcher_kqueue.h:8:
> > /usr/include/sys/event.h:58:2: error: unknown type name 'uintptr_t'
> >         uintptr_t       ident;          /* identifier for this event */
> >         ^
> > /usr/include/sys/event.h:60:2: error: unknown type name 'u_short'; did
> > you mean 'short'?
> >         u_short         flags;
> >         ^
> > /usr/include/sys/event.h:61:2: error: unknown type name 'u_int'
> >         u_int           fflags;
> >         ^
> > /usr/include/sys/event.h:62:2: error: unknown type name 'intptr_t'
> >         intptr_t        data;
> >         ^
> > 4 errors generated.
> > ninja: build stopped: subcommand failed.
> > *** Error code 1
>
> Try the following patch:
>
> --- ./base/files/file_path_watcher_kqueue.h.orig        2014-08-23
16:33:25.000000000 +0200
> +++ ./base/files/file_path_watcher_kqueue.h     2014-08-23
16:35:51.000000000 +0200
> @@ -5,6 +5,8 @@
>  #ifndef BASE_FILES_FILE_PATH_WATCHER_KQUEUE_H_
>  #define BASE_FILES_FILE_PATH_WATCHER_KQUEUE_H_
>
> +#include <sys/stdint.h>
> +#include <sys/types.h>
>  #include <sys/event.h>
>  #include <vector>
>
Ah, that was the patch that got lost somehow. I encountered this error
myself in poudriere.

René
>
> Regards,
> --
> Carlos Jacobo Puga Medina <cpm at fbsd.es>


More information about the freebsd-chromium mailing list