python: make hashlib and readline modules really optional
[buildroot-gz.git] / package / dt / 0002-dt-default-source-define.patch
blob8c9daaeaeff73a5568c6cb1f06e2fd33a34c80ff
1 Patch taken from Fedora:
2 http://pkgs.fedoraproject.org/cgit/rpms/dt.git/commit/dt-default-source-define.patch?id=a3107b34a3efc6af66a5f892514f233bb66eb6b5
4 _BSD_SOURCE was deprecated, hence switch to use _DEFAULT_SOURCE as well
5 to avoid the build from breaking on newer toolchains.
7 Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
9 diff -rupN dt.v18.32.old/common.h dt.v18.32/common.h
10 --- dt.v18.32.old/common.h 2013-03-01 23:52:30.000000000 +0100
11 +++ dt.v18.32/common.h 2014-09-24 17:41:40.777604710 +0200
12 @@ -127,7 +127,7 @@ typedef volatile slarge_t v_slarge;
14 #endif /* defined(_WIN64) */
16 -#elif defined(__GNUC__) && defined(_BSD_SOURCE) || defined(SCO) || defined(__QNXNTO__) || defined(SOLARIS) || defined(HP_UX) || defined(AIX) || defined(_NT_SOURCE)
17 +#elif defined(__GNUC__) && defined(_BSD_SOURCE) || defined (_DEFAULT_SOURCE) || defined(SCO) || defined(__QNXNTO__) || defined(SOLARIS) || defined(HP_UX) || defined(AIX) || defined(_NT_SOURCE)
19 #define QuadIsLongLong
20 typedef unsigned long long int large_t;