26 lines
538 B
C
26 lines
538 B
C
/* Name of package. */
|
|
#define PACKAGE libsocket
|
|
|
|
/* Version of package. */
|
|
#define VERSION 0.1
|
|
|
|
/* Missing syscall names */
|
|
#define MISSING_SYSCALL_NAMES 1
|
|
|
|
/* Using ELF format */
|
|
#define HAVE_ELF 1
|
|
|
|
/* Using GNU LD */
|
|
#define HAVE_GNU_LD 1
|
|
|
|
/* .previous directive allowed */
|
|
#define HAVE_ASM_PREVIOUS_DIRECTIVE 1
|
|
|
|
/* .pushsection/.popsection directives allowed */
|
|
#define HAVE_ASM_POPSECTION_DIRECTIVE 1
|
|
|
|
/* support for section attributes */
|
|
#define HAVE_SECTION_ATTRIBUTES 1
|
|
|
|
/* symbol prefix */
|
|
#define __SYMBOL_PREFIX ""
|