diff options
author | Bert <ber.t@gmx.com> | 2011-09-03 14:22:06 +0200 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-09-03 14:22:06 +0200 |
commit | de6b58a3156e64963f5bf48fa446bfbf3bb9da3f (patch) | |
tree | 7b99e175cdd02eab8dd54ca0f9ec74675944a311 | |
parent | e2ea759444145d2af623babe633ca9ac3d95dc44 (diff) |
Unified feature test macro requirements
-rw-r--r-- | image.c | 4 | ||||
-rw-r--r-- | options.c | 7 | ||||
-rw-r--r-- | thumbs.c | 4 | ||||
-rw-r--r-- | window.c | 5 |
4 files changed, 10 insertions, 10 deletions
@@ -16,8 +16,6 @@ * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA. */ -#define _IMAGE_CONFIG - #include <unistd.h> #ifdef HAVE_GIFLIB @@ -30,6 +28,8 @@ #include "image.h" #include "options.h" #include "util.h" + +#define _IMAGE_CONFIG #include "config.h" enum { MIN_GIF_DELAY = 50 }; @@ -16,16 +16,17 @@ * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA. */ -#define _XOPEN_SOURCE -#define _IMAGE_CONFIG +#define _POSIX_C_SOURCE 2 /* for getopt(3) */ +#include <unistd.h> #include <stdlib.h> #include <string.h> #include <stdio.h> -#include <unistd.h> #include "options.h" #include "util.h" + +#define _IMAGE_CONFIG #include "config.h" options_t _options; @@ -16,8 +16,6 @@ * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA. */ -#define _THUMBS_CONFIG - #include <stdlib.h> #include <string.h> #include <sys/time.h> @@ -27,6 +25,8 @@ #include "thumbs.h" #include "util.h" + +#define _THUMBS_CONFIG #include "config.h" #ifdef __NetBSD__ @@ -16,16 +16,15 @@ * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA. */ -#define _WINDOW_CONFIG - #include <string.h> - #include <X11/Xutil.h> #include <X11/cursorfont.h> #include "options.h" #include "util.h" #include "window.h" + +#define _WINDOW_CONFIG #include "config.h" static Cursor carrow; |