From ce58d8ac8be5ee5ef0e270b75a2a3191131de3c5 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Thu, 15 Jul 2010 14:30:00 -0300 Subject: [PATCH] Include getopt.h when getopt_long() is provided by the system --- ccache.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ccache.c b/ccache.c index dc21fa1b4..5b8a7460a 100644 --- a/ccache.c +++ b/ccache.c @@ -20,7 +20,11 @@ */ #include "ccache.h" +#ifdef HAVE_GETOPT_LONG +#include +#else #include "getopt_long.h" +#endif #include "hashtable.h" #include "hashtable_itr.h" #include "hashutil.h" -- 2.47.3