diff options
author | Michele Calgaro <[email protected]> | 2018-10-13 22:41:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-13 22:41:32 +0900 |
commit | 95ef0537a716b836302875b4416369b2a62258a4 (patch) | |
tree | 4b7bc615cb8b24b40f14fa746799a2db51710746 /kfax | |
parent | 5f7edcb5405453b8ab18260d86bcdf7eb3f8ac1b (diff) | |
download | tdegraphics-95ef0537a716b836302875b4416369b2a62258a4.tar.gz tdegraphics-95ef0537a716b836302875b4416369b2a62258a4.zip |
Replaced _BSD_SOURCE, _SVID_SOURCE with _DEFAULT_SOURCE. Removed AC_CHECK_GNU_EXTENSIONS.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kfax')
-rw-r--r-- | kfax/faxexpand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kfax/faxexpand.h b/kfax/faxexpand.h index a1be736f..c6a98da9 100644 --- a/kfax/faxexpand.h +++ b/kfax/faxexpand.h @@ -144,7 +144,7 @@ extern char *xmalloc(unsigned int size); #define _HAVE_USLEEP #endif -#if defined(BSD) || defined(__FreeBSD__) || defined(_BSD_SOURCE) +#if defined(BSD) || defined(__FreeBSD__) || defined(_DEFAULT_SOURCE) #define _HAVE_USLEEP #ifndef rindex #define rindex strrchr |