diff options
author | Jim McDonough <jmcd@samba.org> | 2001-10-23 14:16:22 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2001-10-23 14:16:22 +0000 |
commit | be6edf50c4e76662cd80eab9d60182f2e4f02d24 (patch) | |
tree | 94b1de0f71446530fdbee48d46476b1742732897 /source3/include | |
parent | b0152aaea09a1d082ee90954cdc8512d22b8d8ae (diff) | |
download | samba-be6edf50c4e76662cd80eab9d60182f2e4f02d24.tar.gz samba-be6edf50c4e76662cd80eab9d60182f2e4f02d24.tar.bz2 samba-be6edf50c4e76662cd80eab9d60182f2e4f02d24.zip |
Add popt for parsing commandline options
(This used to be commit df34e11d84a6fe89dc6654eb10de0a49383e1dea)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/config.h.in | 5 | ||||
-rw-r--r-- | source3/include/includes.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/source3/include/config.h.in b/source3/include/config.h.in index 401ba5bef9..0fe73710bb 100644 --- a/source3/include/config.h.in +++ b/source3/include/config.h.in @@ -1,4 +1,4 @@ -/* include/config.h.in. Generated automatically from configure.in by autoheader 2.13. */ +/* include/config.h.in. Generated automatically from configure.in by autoheader. */ /* Define if on AIX 3. System headers sometimes define this. @@ -1037,6 +1037,9 @@ /* Define if you have the nsl_s library (-lnsl_s). */ #undef HAVE_LIBNSL_S +/* Define if you have the popt library (-lpopt). */ +#undef HAVE_LIBPOPT + /* Define if you have the resolv library (-lresolv). */ #undef HAVE_LIBRESOLV diff --git a/source3/include/includes.h b/source3/include/includes.h index 33e50ab4ea..7362aace9b 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -681,6 +681,8 @@ extern int errno; #include "asn1.h" +#include "popt.h" + #ifndef MAXCODEPAGELINES #define MAXCODEPAGELINES 256 #endif |