Compare commits

...

4 Commits
0.1.4 ... 0.1.5

Author SHA1 Message Date
Guillem Jover
2543c5a78b Release libbsd 0.1.5 2009-07-17 13:37:38 +02:00
Guillem Jover
33ef70b9e1 Add __pure2 dummy macro 2009-07-17 13:35:37 +02:00
Guillem Jover
8ef0ecdf44 Add more dummy id macros 2009-07-17 13:34:30 +02:00
Nobuhiro Iwamatsu
6660397589 Fix typos in AVR32 and SH local-elf.h endian definitions 2009-07-17 12:50:07 +02:00
3 changed files with 23 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
LIB_NAME := libbsd LIB_NAME := libbsd
LIB_VERSION_MAJOR := 0 LIB_VERSION_MAJOR := 0
LIB_VERSION_MINOR := 1 LIB_VERSION_MINOR := 1
LIB_VERSION_MICRO := 4 LIB_VERSION_MICRO := 5
LIB_VERSION := $(LIB_VERSION_MAJOR).$(LIB_VERSION_MINOR).$(LIB_VERSION_MICRO) LIB_VERSION := $(LIB_VERSION_MAJOR).$(LIB_VERSION_MINOR).$(LIB_VERSION_MICRO)
LIB_PKGCONFIG := $(LIB_NAME).pc LIB_PKGCONFIG := $(LIB_NAME).pc

View File

@@ -37,6 +37,10 @@
# define __dead2 # define __dead2
#endif #endif
#ifndef __pure2
# define __pure2
#endif
/* Linux headers define a struct with a member names __unused. /* Linux headers define a struct with a member names __unused.
* Disable for now. */ * Disable for now. */
#if 0 #if 0
@@ -69,4 +73,20 @@
# define __FBSDID(x) # define __FBSDID(x)
#endif #endif
#ifndef __RCSID
# define __RCSID(x)
#endif
#ifndef __RCSID_SOURCE
# define __RCSID_SOURCE
#endif
#ifndef __SCCSID
# define __SCCSID
#endif
#ifndef __COPYRIGHT
# define __COPYRIGHT
#endif
#endif #endif

View File

@@ -66,7 +66,7 @@
#endif #endif
#define ELF_TARG_MACH EM_AVR32 #define ELF_TARG_MACH EM_AVR32
#define ELF_TARG_CLASS ELFCLASS32 #define ELF_TARG_CLASS ELFCLASS32
#if define(__LITTLE_ENDIAN__) #if defined(__LITTLE_ENDIAN__)
#define ELF_TARG_DATA ELFDATA2LSB #define ELF_TARG_DATA ELFDATA2LSB
#elif defined(__BIG_ENDIAN__) #elif defined(__BIG_ENDIAN__)
#define ELF_TARG_DATA ELFDATA2LMSB #define ELF_TARG_DATA ELFDATA2LMSB
@@ -147,7 +147,7 @@
#define ELF_TARG_MACH EM_SH #define ELF_TARG_MACH EM_SH
#define ELF_TARG_CLASS ELFCLASS32 #define ELF_TARG_CLASS ELFCLASS32
#if define(__LITTLE_ENDIAN__) #if defined(__LITTLE_ENDIAN__)
#define ELF_TARG_DATA ELFDATA2LSB #define ELF_TARG_DATA ELFDATA2LSB
#elif defined(__BIG_ENDIAN__) #elif defined(__BIG_ENDIAN__)
#define ELF_TARG_DATA ELFDATA2LMSB #define ELF_TARG_DATA ELFDATA2LMSB