summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-11-25 00:01:27 -0500
committermidipix <writeonce@midipix.org>2018-11-25 00:01:27 -0500
commit43e27cdef5e286cc15f5917473664b7e76537405 (patch)
treee562f3fde5c23ed5dbee8c8fa6be0084e8149cd9 /config
parentdcf637d48835de1584f31842016d8fb828741e0f (diff)
downloadsbpython2-43e27cdef5e286cc15f5917473664b7e76537405.tar.bz2
sbpython2-43e27cdef5e286cc15f5917473664b7e76537405.tar.xz
config: x86_64-nt64-midipix: initial commit.
Diffstat (limited to 'config')
-rw-r--r--config/x86_64-nt64-midipix/config.c50
-rw-r--r--config/x86_64-nt64-midipix/config.mk97
-rw-r--r--config/x86_64-nt64-midipix/pyconfig.h312
3 files changed, 459 insertions, 0 deletions
diff --git a/config/x86_64-nt64-midipix/config.c b/config/x86_64-nt64-midipix/config.c
new file mode 100644
index 0000000..baad021
--- /dev/null
+++ b/config/x86_64-nt64-midipix/config.c
@@ -0,0 +1,50 @@
+#define PY_INIT_FUNC(x) extern void x(void)
+#define PY_INIT_PTR(x) void (*x)(void)
+
+PY_INIT_FUNC(initthread);
+PY_INIT_FUNC(initsignal);
+PY_INIT_FUNC(initposix);
+PY_INIT_FUNC(initerrno);
+PY_INIT_FUNC(initpwd);
+PY_INIT_FUNC(init_sre);
+PY_INIT_FUNC(init_codecs);
+PY_INIT_FUNC(init_weakref);
+PY_INIT_FUNC(initzipimport);
+PY_INIT_FUNC(init_symtable);
+PY_INIT_FUNC(initxxsubtype);
+
+PY_INIT_FUNC(PyMarshal_Init);
+PY_INIT_FUNC(initimp);
+PY_INIT_FUNC(initgc);
+PY_INIT_FUNC(init_ast);
+PY_INIT_FUNC(_PyWarnings_Init);
+
+struct _inittab {
+ char * name;
+ PY_INIT_PTR(initfunc);
+};
+
+struct _inittab _PyImport_Inittab[] = {
+ {"thread", initthread},
+ {"signal", initsignal},
+ {"posix", initposix},
+ {"errno", initerrno},
+ {"pwd", initpwd},
+ {"_sre", init_sre},
+ {"_codecs", init_codecs},
+ {"_weakref", init_weakref},
+ {"zipimport", initzipimport},
+ {"_symtable", init_symtable},
+ {"xxsubtype", initxxsubtype},
+
+ {"marshal", PyMarshal_Init},
+ {"imp", initimp},
+ {"_ast", init_ast},
+ {"__main__", 0},
+ {"__builtin__", 0},
+ {"sys", 0},
+ {"exceptions", 0},
+ {"gc", initgc},
+ {"_warnings", _PyWarnings_Init},
+ {0, 0}
+};
diff --git a/config/x86_64-nt64-midipix/config.mk b/config/x86_64-nt64-midipix/config.mk
new file mode 100644
index 0000000..eac7adc
--- /dev/null
+++ b/config/x86_64-nt64-midipix/config.mk
@@ -0,0 +1,97 @@
+CFLAGS_NCURSES = -I$(SYSROOT)/usr/local/include/ncurses -I$(SYSROOT)/usr/include/ncurses
+LDFLAGS_NCURSES = -Wl,--as-needed -lpanelw -lncursesw -ltinfo -Wl,--no-as-needed
+
+CFLAGS_SQLITE = -I$(SYSROOT)/usr/local/include/sqlite3 -I$(SYSROOT)/usr/include/sqlite3
+CFLAGS_SQLITE += -DMODULE_NAME=\"sqlite3\"
+CFLAGS_SQLITE += -DSQLITE_OMIT_LOAD_EXTENSION
+LDFLAGS_SQLITE = -lsqlite3
+
+CFLAGS_EXPAT = -DXML_DEV_URANDOM
+LDFLAGS_EXPAT = -lexpat
+
+CFLAGS_DBM = -DHAVE_NDBM_H
+LDFLAGS_DBM = -lgdbm_compat
+
+PYTHON_PATH =
+
+DYNLOAD_SRCS = \
+ Python/dynload_shlib.c \
+
+CONFIG_SRCS = \
+ Modules/_codecsmodule.c \
+ Modules/_sre.c \
+ Modules/_weakref.c \
+ Modules/errnomodule.c \
+ Modules/posixmodule.c \
+ Modules/pwdmodule.c \
+ Modules/signalmodule.c \
+ Modules/symtablemodule.c \
+ Modules/threadmodule.c \
+ Modules/xxsubtype.c \
+ Modules/zipimport.c \
+
+shared-lib: LDFLAGS_CONFIG += -Wl,-no-undefined
+
+PYEXT_SUBSET_SHARED = \
+ $(PYEXT_ARRAY_SHARED) \
+ $(PYEXT_AUDIOOP_SHARED) \
+ $(PYEXT_BINASCII_SHARED) \
+ $(PYEXT_BISECT_SHARED) \
+ $(PYEXT_BZ2_SHARED) \
+ $(PYEXT_CMATH_SHARED) \
+ $(PYEXT_CODECS_CN_SHARED) \
+ $(PYEXT_CODECS_HK_SHARED) \
+ $(PYEXT_CODECS_ISO2022_SHARED) \
+ $(PYEXT_CODECS_JP_SHARED) \
+ $(PYEXT_CODECS_KR_SHARED) \
+ $(PYEXT_CODECS_TW_SHARED) \
+ $(PYEXT_COLLECTIONS_SHARED) \
+ $(PYEXT_CPICKLE_SHARED) \
+ $(PYEXT_CRYPT_SHARED) \
+ $(PYEXT_CSTRINGIO_SHARED) \
+ $(PYEXT_CSV_SHARED) \
+ $(PYEXT_CTYPES_SHARED) \
+ $(PYEXT_CTYPES_TEST_SHARED) \
+ $(PYEXT_CURSES_PANEL_SHARED) \
+ $(PYEXT_CURSES_SHARED) \
+ $(PYEXT_DATETIME_SHARED) \
+ $(PYEXT_ELEMENTTREE_SHARED) \
+ $(PYEXT_FCNTL_SHARED) \
+ $(PYEXT_FUNCTOOLS_SHARED) \
+ $(PYEXT_FUTURE_BUILTINS_SHARED) \
+ $(PYEXT_GDBM_SHARED) \
+ $(PYEXT_GRP_SHARED) \
+ $(PYEXT_HASHLIB_SHARED) \
+ $(PYEXT_HEAPQ_SHARED) \
+ $(PYEXT_HOTSHOT_SHARED) \
+ $(PYEXT_IO_SHARED) \
+ $(PYEXT_ITERTOOLS_SHARED) \
+ $(PYEXT_JSON_SHARED) \
+ $(PYEXT_LOCALE_SHARED) \
+ $(PYEXT_LSPROF_SHARED) \
+ $(PYEXT_MATH_SHARED) \
+ $(PYEXT_MMAP_SHARED) \
+ $(PYEXT_MULTIBYTECODEC_SHARED) \
+ $(PYEXT_MULTIPROCESSING_SHARED) \
+ $(PYEXT_OPERATOR_SHARED) \
+ $(PYEXT_PARSER_SHARED) \
+ $(PYEXT_PYEXPAT_SHARED) \
+ $(PYEXT_RANDOM_SHARED) \
+ $(PYEXT_READLINE_SHARED) \
+ $(PYEXT_RESOURCE_SHARED) \
+ $(PYEXT_SELECT_SHARED) \
+ $(PYEXT_SOCKET_SHARED) \
+ $(PYEXT_SPWD_SHARED) \
+ $(PYEXT_SQLITE3_SHARED) \
+ $(PYEXT_STROP_SHARED) \
+ $(PYEXT_STRUCT_SHARED) \
+ $(PYEXT_SYSLOG_SHARED) \
+ $(PYEXT_TERMIOS_SHARED) \
+ $(PYEXT_TESTCAPI_SHARED) \
+ $(PYEXT_TIME_SHARED) \
+ $(PYEXT_UNICODEDATA_SHARED) \
+ $(PYEXT_ZLIB_SHARED) \
+# $(PYEXT_DBM_SHARED) \
+# $(PYEXT_LINUXAUDIODEV_SHARED) \
+# $(PYEXT_OSSAUDIODEV_SHARED) \
+# $(PYEXT_SSL_SHARED) \
diff --git a/config/x86_64-nt64-midipix/pyconfig.h b/config/x86_64-nt64-midipix/pyconfig.h
new file mode 100644
index 0000000..b5637f7
--- /dev/null
+++ b/config/x86_64-nt64-midipix/pyconfig.h
@@ -0,0 +1,312 @@
+#ifndef Py_PYCONFIG_H
+#define Py_PYCONFIG_H
+
+#define ENABLE_IPV6 1
+
+#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1
+
+#define HAVE_ACOSH 1
+#define HAVE_ADDRINFO 1
+#define HAVE_ALARM 1
+#define HAVE_ALLOCA_H 1
+#define HAVE_ASINH 1
+#define HAVE_ATANH 1
+#define HAVE_BIND_TEXTDOMAIN_CODESET 1
+
+#define HAVE_BROKEN_NICE 1
+
+#define HAVE_C99_BOOL 1
+#define HAVE_CHOWN 1
+#define HAVE_CHROOT 1
+#define HAVE_CLOCK 1
+#define HAVE_COMPUTED_GOTOS 1
+#define HAVE_CONFSTR 1
+#define HAVE_COPYSIGN 1
+#define HAVE_CTERMID 1
+#define HAVE_CURSES_H 1
+#define HAVE_CURSES_IS_TERM_RESIZED 1
+#define HAVE_CURSES_RESIZETERM 1
+#define HAVE_CURSES_RESIZE_TERM 1
+#define HAVE_DECL_ISFINITE 1
+#define HAVE_DECL_ISINF 1
+#define HAVE_DECL_ISNAN 1
+#define HAVE_DEVICE_MACROS 1
+#define HAVE_DEV_PTMX 1
+#define HAVE_DIRENT_H 1
+#define HAVE_DLFCN_H 1
+#define HAVE_DLOPEN 1
+#define HAVE_DUP2 1
+#define HAVE_DYNAMIC_LOADING 1
+#define HAVE_EPOLL 1
+#define HAVE_ERF 1
+#define HAVE_ERFC 1
+#define HAVE_ERRNO_H 1
+#define HAVE_EXECV 1
+#define HAVE_EXPM1 1
+#define HAVE_FCHDIR 1
+#define HAVE_FCHMOD 1
+#define HAVE_FCHOWN 1
+#define HAVE_FCNTL_H 1
+#define HAVE_FDATASYNC 1
+#define HAVE_FINITE 1
+#define HAVE_FLOCK 1
+#define HAVE_FORK 1
+#define HAVE_FORKPTY 1
+#define HAVE_FPATHCONF 1
+#define HAVE_FSEEKO 1
+#define HAVE_FSTATVFS 1
+#define HAVE_FSYNC 1
+#define HAVE_FTELLO 1
+#define HAVE_FTIME 1
+#define HAVE_FTRUNCATE 1
+#define HAVE_GAI_STRERROR 1
+#define HAVE_GCC_ASM_FOR_X87 1
+#define HAVE_GETADDRINFO 1
+#define HAVE_GETCWD 1
+#define HAVE_GETC_UNLOCKED 1
+#define HAVE_GETGROUPS 1
+#define HAVE_GETHOSTBYNAME_R 1
+#define HAVE_GETHOSTBYNAME_R_6_ARG 1
+#define HAVE_GETITIMER 1
+#define HAVE_GETLOADAVG 1
+#define HAVE_GETLOGIN 1
+#define HAVE_GETNAMEINFO 1
+#define HAVE_GETPAGESIZE 1
+#define HAVE_GETPEERNAME 1
+#define HAVE_GETPGID 1
+#define HAVE_GETPGRP 1
+#define HAVE_GETPID 1
+#define HAVE_GETPRIORITY 1
+#define HAVE_GETPWENT 1
+#define HAVE_GETRESGID 1
+#define HAVE_GETRESUID 1
+#define HAVE_GETSID 1
+#define HAVE_GETSPENT 1
+#define HAVE_GETSPNAM 1
+#define HAVE_GETTIMEOFDAY 1
+#define HAVE_GRP_H 1
+#define HAVE_HSTRERROR 1
+#define HAVE_HYPOT 1
+#define HAVE_INET_ATON 1
+#define HAVE_INET_PTON 1
+#define HAVE_INITGROUPS 1
+#define HAVE_INT32_T 1
+#define HAVE_INT64_T 1
+#define HAVE_INTTYPES_H 1
+#define HAVE_KILL 1
+#define HAVE_KILLPG 1
+#define HAVE_LANGINFO_H 1
+#define HAVE_LCHMOD 1
+#define HAVE_LCHOWN 1
+#define HAVE_LGAMMA 1
+#define HAVE_LIBDL 1
+#define HAVE_LIBINTL_H 1
+#define HAVE_LIBREADLINE 1
+#define HAVE_LINK 1
+#define HAVE_LOG1P 1
+#define HAVE_LONG_DOUBLE 1
+#define HAVE_LONG_LONG 1
+#define HAVE_LSTAT 1
+#define HAVE_MAKEDEV 1
+#define HAVE_MEMMOVE 1
+#define HAVE_MEMORY_H 1
+#define HAVE_MKFIFO 1
+#define HAVE_MKNOD 1
+#define HAVE_MKTIME 1
+#define HAVE_MMAP 1
+#define HAVE_MREMAP 1
+#define HAVE_NCURSES_H 1
+#define HAVE_NETPACKET_PACKET_H 1
+#define HAVE_NICE 1
+#define HAVE_OPENPTY 1
+#define HAVE_PATHCONF 1
+#define HAVE_PAUSE 1
+#define HAVE_POLL 1
+#define HAVE_POLL_H 1
+#define HAVE_PROTOTYPES 1
+#define HAVE_PTHREAD_ATFORK 1
+#define HAVE_PTHREAD_H 1
+#define HAVE_PTHREAD_SIGMASK 1
+#define HAVE_PTY_H 1
+#define HAVE_PUTENV 1
+#define HAVE_READLINK 1
+#define HAVE_REALPATH 1
+#define HAVE_RL_CALLBACK 1
+#define HAVE_RL_CATCH_SIGNAL 1
+
+#define HAVE_RL_COMPLETION_APPEND_CHARACTER 1
+#define HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK 1
+#define HAVE_RL_COMPLETION_MATCHES 1
+#define HAVE_RL_COMPLETION_SUPPRESS_APPEND 1
+
+#define HAVE_RL_PRE_INPUT_HOOK 1
+#define HAVE_RL_RESIZE_TERMINAL 1
+#define HAVE_ROUND 1
+#define HAVE_SELECT 1
+#define HAVE_SEM_GETVALUE 1
+#define HAVE_SEM_OPEN 1
+#define HAVE_SEM_TIMEDWAIT 1
+#define HAVE_SEM_UNLINK 1
+#define HAVE_SETEGID 1
+#define HAVE_SETEUID 1
+#define HAVE_SETGID 1
+#define HAVE_SETGROUPS 1
+#define HAVE_SETITIMER 1
+#define HAVE_SETLOCALE 1
+#define HAVE_SETPGID 1
+#define HAVE_SETPGRP 1
+#define HAVE_SETREGID 1
+#define HAVE_SETRESGID 1
+#define HAVE_SETRESUID 1
+#define HAVE_SETREUID 1
+#define HAVE_SETSID 1
+#define HAVE_SETUID 1
+#define HAVE_SETVBUF 1
+#define HAVE_SHADOW_H 1
+#define HAVE_SIGACTION 1
+#define HAVE_SIGINTERRUPT 1
+#define HAVE_SIGNAL_H 1
+#define HAVE_SIGRELSE 1
+#define HAVE_SNPRINTF 1
+#define HAVE_SOCKADDR_STORAGE 1
+#define HAVE_SOCKETPAIR 1
+#define HAVE_SPAWN_H 1
+#define HAVE_SSIZE_T 1
+#define HAVE_STATVFS 1
+#define HAVE_STAT_TV_NSEC 1
+#define HAVE_STDARG_PROTOTYPES 1
+#define HAVE_STDINT_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_STRDUP 1
+#define HAVE_STRFTIME 1
+#define HAVE_STRINGS_H 1
+#define HAVE_STRING_H 1
+#define HAVE_STROPTS_H 1
+#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
+#define HAVE_STRUCT_STAT_ST_BLOCKS 1
+#define HAVE_STRUCT_STAT_ST_RDEV 1
+#define HAVE_STRUCT_TM_TM_ZONE 1
+#define HAVE_SYMLINK 1
+#define HAVE_SYSCONF 1
+#define HAVE_SYSEXITS_H 1
+#define HAVE_SYS_EPOLL_H 1
+#define HAVE_SYS_FILE_H 1
+#define HAVE_SYS_PARAM_H 1
+#define HAVE_SYS_POLL_H 1
+#define HAVE_SYS_RESOURCE_H 1
+#define HAVE_SYS_SELECT_H 1
+#define HAVE_SYS_SOCKET_H 1
+#define HAVE_SYS_STATVFS_H 1
+#define HAVE_SYS_STAT_H 1
+#define HAVE_SYS_TIMES_H 1
+#define HAVE_SYS_TIME_H 1
+#define HAVE_SYS_TYPES_H 1
+#define HAVE_SYS_UN_H 1
+#define HAVE_SYS_UTSNAME_H 1
+#define HAVE_SYS_WAIT_H 1
+#define HAVE_TCGETPGRP 1
+#define HAVE_TCSETPGRP 1
+#define HAVE_TEMPNAM 1
+#define HAVE_TERMIOS_H 1
+#define HAVE_TERM_H 1
+#define HAVE_TGAMMA 1
+#define HAVE_TIMEGM 1
+#define HAVE_TIMES 1
+#define HAVE_TMPFILE 1
+#define HAVE_TMPNAM 1
+#define HAVE_TM_ZONE 1
+#define HAVE_TRUNCATE 1
+#define HAVE_UINT32_T 1
+#define HAVE_UINT64_T 1
+#define HAVE_UINTPTR_T 1
+#define HAVE_UNAME 1
+#define HAVE_UNISTD_H 1
+#define HAVE_UNSETENV 1
+#define HAVE_UTIMES 1
+#define HAVE_UTIME_H 1
+#define HAVE_WAIT3 1
+#define HAVE_WAIT4 1
+#define HAVE_WAITPID 1
+#define HAVE_WCHAR_H 1
+#define HAVE_WCSCOLL 1
+#define HAVE_WORKING_TZSET 1
+#define HAVE_ZLIB_COPY 1
+#define MVWDELCH_IS_EXPRESSION 1
+#define PTHREAD_SYSTEM_SCHED_SUPPORTED 1
+
+#define PY_FORMAT_LONG_LONG "ll"
+#define PY_FORMAT_SIZE_T "z"
+
+#define Py_ENABLE_SHARED 1
+#define Py_UNICODE_SIZE 4
+#define Py_USING_UNICODE 1
+
+#define RETSIGTYPE void
+#define SHLIB_EXT ".so"
+
+#define SIZEOF_DOUBLE 8
+#define SIZEOF_FLOAT 4
+#define SIZEOF_FPOS_T 16
+#define SIZEOF_INT 4
+#define SIZEOF_LONG 8
+#define SIZEOF_LONG_DOUBLE 16
+#define SIZEOF_LONG_LONG 8
+#define SIZEOF_OFF_T 8
+#define SIZEOF_PID_T 4
+#define SIZEOF_PTHREAD_T 8
+#define SIZEOF_SHORT 2
+#define SIZEOF_SIZE_T 8
+#define SIZEOF_TIME_T 8
+#define SIZEOF_UINTPTR_T 8
+#define SIZEOF_VOID_P 8
+#define SIZEOF_WCHAR_T 4
+#define SIZEOF__BOOL 1
+#define STDC_HEADERS 1
+#define SYS_SELECT_WITH_SYS_TIME 1
+#define TANH_PRESERVES_ZERO_SIGN 1
+#define TIME_WITH_SYS_TIME 1
+
+
+
+#ifndef _ALL_SOURCE
+#define _ALL_SOURCE 1
+#endif
+
+#ifndef _GNU_SOURCE
+#define _GNU_SOURCE 1
+#endif
+
+#ifndef _POSIX_PTHREAD_SEMANTICS
+#define _POSIX_PTHREAD_SEMANTICS 1
+#endif
+
+#ifndef _TANDEM_SOURCE
+#define _TANDEM_SOURCE 1
+#endif
+
+#ifndef __EXTENSIONS__
+#define __EXTENSIONS__ 1
+#endif
+
+
+#define VA_LIST_IS_ARRAY 1
+#define WINDOW_HAS_FLAGS 1
+#define WITH_DOC_STRINGS 1
+#define WITH_LIBINTL 1
+#define WITH_PYMALLOC 1
+#define WITH_THREAD 1
+
+#define _BSD_TYPES 1
+#define _DARWIN_C_SOURCE 1
+#define _FILE_OFFSET_BITS 64
+#define _GNU_SOURCE 1
+#define _LARGEFILE_SOURCE 1
+#define _NETBSD_SOURCE 1
+#define _POSIX_C_SOURCE 200112L
+#define _REENTRANT 1
+#define _XOPEN_SOURCE 600
+#define _XOPEN_SOURCE_EXTENDED 1
+#define __BSD_VISIBLE 1
+#define __EXTENSIONS__ 1
+
+#endif