Browse Source

Launcher: To use asprintf() with glibc we define _GNU_SOURCE

Philippe Pepiot 14 years ago
parent
commit
fd2852b50f
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/launcher.c

+ 5 - 0
src/launcher.c

@@ -33,6 +33,11 @@
 #include "wmfs.h"
 #include <dirent.h>
 
+/* conforming to glib use _GNU_SOURCE for asprintf declaration */
+#ifndef _GNU_SOURCE
+#define _GNU_SOURCE
+#endif
+
 static char *complete_on_command(char*, size_t);
 static char *complete_on_files(char*, size_t);