diff options
author | Michele Calgaro <[email protected]> | 2018-10-13 22:41:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-13 22:41:33 +0900 |
commit | 881ffcc706ab0670c705d156b7861fdaad59d9cb (patch) | |
tree | b64dfd54698aba7a05f6197542ed5d488558f4df | |
parent | c709bc8b253057a9c769b19d49b646574ae88384 (diff) | |
download | tdesdk-881ffcc706ab0670c705d156b7861fdaad59d9cb.tar.gz tdesdk-881ffcc706ab0670c705d156b7861fdaad59d9cb.zip |
Replaced _BSD_SOURCE, _SVID_SOURCE with _DEFAULT_SOURCE. Removed AC_CHECK_GNU_EXTENSIONS.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | cervisia/CMakeLists.txt | 2 | ||||
-rw-r--r-- | cervisia/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cervisia/CMakeLists.txt b/cervisia/CMakeLists.txt index 2a0b4523..8dc6e248 100644 --- a/cervisia/CMakeLists.txt +++ b/cervisia/CMakeLists.txt @@ -14,7 +14,7 @@ project( cervisia ) add_subdirectory( cvsservice ) add_subdirectory( pics ) -add_definitions( -D_BSD_SOURCE ) +add_definitions( -D_DEFAULT_SOURCE ) include_directories( ${CMAKE_CURRENT_BINARY_DIR} diff --git a/cervisia/Makefile.am b/cervisia/Makefile.am index c0d067f8..15322c5a 100644 --- a/cervisia/Makefile.am +++ b/cervisia/Makefile.am @@ -1,5 +1,5 @@ CERVISIA_VERSION = 2.4.10 -INCLUDES = -I./cvsservice -D_BSD_SOURCE $(all_includes) +INCLUDES = -I./cvsservice -D_DEFAULT_SOURCE $(all_includes) SUBDIRS = cvsservice . pics |