Tweak to test HAVE_GETOPT_H before including <getopt.h>, so as to

build on systems without.
This commit is contained in:
Tom Lane 2001-10-02 22:38:43 +00:00
parent f2c657375d
commit a5dafa3177
1 changed files with 3 additions and 2 deletions

View File

@ -5,11 +5,12 @@
b. palmer, bpalmer@crimelabs.net 1-17-2001
*/
#include "postgres_fe.h"
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#ifdef HAVE_GETOPT_H
#include <getopt.h>
#endif
#include "libpq-fe.h"