Fixed compilation problem on *BSD (ENODATA not defined).

merge-requests/1/head
Henning Geinitz 2006-06-11 21:39:54 +00:00
rodzic ee5542ebc1
commit 9fbb6c0e72
2 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -4,6 +4,8 @@
(minimal) support for Nikon LS 50 ED, Coolscan V ED and (minimal) support for Nikon LS 50 ED, Coolscan V ED and
(probably) Super Coolscan LS-5000 ED (patch from Giuseppe Sacco (probably) Super Coolscan LS-5000 ED (patch from Giuseppe Sacco
<giuseppe@eppesuigoccas.homedns.org>). <giuseppe@eppesuigoccas.homedns.org>).
* backend/pixma.h: Fixed compilation problem on *BSD (ENODATA not
defined).
2006-06-11 Eddy De Greef <eddy_de_greef at scarlet dot be> 2006-06-11 Eddy De Greef <eddy_de_greef at scarlet dot be>

Wyświetl plik

@ -113,13 +113,11 @@ typedef u_int16_t uint16_t;
typedef u_int32_t uint32_t; typedef u_int32_t uint32_t;
#endif /* HAVE_STDINT_H */ #endif /* HAVE_STDINT_H */
#ifdef HAVE_OS2_H #ifndef EPROTO
# ifndef EPROTO # define EPROTO 10000
# define EPROTO 10000 #endif
# endif #ifndef ENODATA
# ifndef ENODATA # define ENODATA 10001
# define ENODATA 10001
# endif
#endif #endif
/** \addtogroup API /** \addtogroup API