Code

increment version number to 0.29
[ncmpc.git] / meson.build
index 09e8bc2a6bca9b11a84f9987da8d2ec347256b5a..b2fd42a4d7dc2e195830976f73742e22c778a3e3 100644 (file)
@@ -1,5 +1,5 @@
 project('ncmpc', 'c',
-  version: '0.28',
+  version: '0.29',
   default_options: [
     'c_std=c99',
   ],
@@ -142,7 +142,11 @@ else
 endif
 conf.set('ENABLE_LIRC', enable_lirc)
 
+conf.set('ENABLE_COLORS', curses_color)
+
 common_cflags = [
+  # for getaddrinfo() and sigaction() with glibc
+  '-D_GNU_SOURCE',
 ]
 
 test_cflags = [
@@ -192,7 +196,7 @@ inc = include_directories(
   'src',
 
   # for the generated config.h
-  meson.current_build_dir(),
+  '.',
 )
 
 sources = []