aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-09-27 12:43:13 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-09-27 12:43:13 +0000
commite64d01d199a043923a767e0a42856caa11b59729 (patch)
tree88f06b5146988e8a4c8a638f0c7a0bc5f4e42593
parentf2c135a2a35d2dad3fef5984e1c3c013b7eb403b (diff)
downloadfetchmail-e64d01d199a043923a767e0a42856caa11b59729.tar.gz
fetchmail-e64d01d199a043923a767e0a42856caa11b59729.tar.bz2
fetchmail-e64d01d199a043923a767e0a42856caa11b59729.zip
Fix the bad GETOPT_LONG patch.
svn path=/trunk/; revision=3495
-rw-r--r--NEWS2
-rw-r--r--acconfig.h2
-rw-r--r--configure.in3
-rw-r--r--options.c2
4 files changed, 6 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 8b3890b5..800743ee 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@
(The `lines' figures total .c, .h, .l, and .y files under version control.)
+* Fix configuration error in handling of long options.
+
fetchmail-5.9.2 (Wed Sep 26 12:47:00 EDT 2001), 21118 lines:
* Enable code to build on Solaris again (long options won't work).
diff --git a/acconfig.h b/acconfig.h
index 5a3d2e82..1c0a046d 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -19,7 +19,7 @@
#undef HAVE_CATGETS
/* Define if you have GNU's getopt family of functions. */
-#undef HAVE_GETOPTLONG
+#undef HAVE_GETOPT_LONG
/* Define as 1 if you have gettext and don't want to use GNU gettext. */
#undef HAVE_GETTEXT
diff --git a/configure.in b/configure.in
index 710a93fc..de4ddffc 100644
--- a/configure.in
+++ b/configure.in
@@ -129,7 +129,8 @@ AC_SUBST(EXTRAOBJ)
AC_CHECK_FUNCS(tcsetattr stty setsid geteuid seteuid gethostbyname \
res_search herror strrchr strerror setlinebuf syslog \
snprintf vprintf vsnprintf vsyslog \
- atexit inet_aton strftime setrlimit socketpair sigprocmask sigaction)
+ atexit inet_aton strftime setrlimit socketpair sigprocmask sigaction \
+ getopt_long)
# Under Red Hat 4.0 (and many other Linuxes) -lresolv is seriously flaky
# and breaks gethostbyname(2). It's better to use the bind stuff in the C
diff --git a/options.c b/options.c
index c51e9d72..ee320d95 100644
--- a/options.c
+++ b/options.c
@@ -276,7 +276,7 @@ struct query *ctl; /* option record to be initialized */
ctl->smtp_socket = -1;
while (!errflag &&
-#ifdef HAVE_GETOPTLONG
+#ifdef HAVE_GETOPT_LONG
(c = getopt_long(argc,argv,shortoptions,
longoptions, &option_index)) != -1)
#else