diff options
author | wlemb <wlemb> | 2001-08-13 12:18:26 +0000 |
---|---|---|
committer | wlemb <wlemb> | 2001-08-13 12:18:26 +0000 |
commit | 1cce6a2ecf0c58357b5e2187ea459bc165810ad8 (patch) | |
tree | bb3fb7887ee938f7ae90ab10f139c8a87931f22e /Makefile.in | |
parent | 53b5abaf04f16b21b2358c6848d3264a1ebdd37e (diff) | |
download | groff-1cce6a2ecf0c58357b5e2187ea459bc165810ad8.tar.gz |
* aclocal.m4 (GROFF_MKSTEMP): Define HAVE_MKSTEMP.
* configure.ac: Add declaration test for strcasecmp().
* Makefile.in: Updated.
* configure: Regenerated.
* src/include/lib.h [!HAVE_MKSTEMP]: Add prototype for mkstemp() --
this is necessary because groff's mkstemp.cc is C++.
Add declaration conditionally for strcasecmp().
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 89d03be4..cf79e738 100644 --- a/Makefile.in +++ b/Makefile.in @@ -198,6 +198,7 @@ man7dir=$(manroot)/man$(man7ext) # -DHAVE_FMOD if you have fmod() # -DHAVE_GETCWD if you have getcwd() # -DHAVE_GETTIMEOFDAY if you have gettimeofday() +# -DHAVE_MKSTEMP if you have mkstemp() # -DHAVE_MMAP if you have mmap() # -DHAVE_PUTENV if you have putenv() # -DHAVE_RENAME if you have rename() @@ -211,6 +212,8 @@ man7dir=$(manroot)/man$(man7ext) # -DNEED_DECLARATION_PCLOSE if your C++ <stdio.h> doesn't declare pclose() # -DNEED_DECLARATION_POPEN if your C++ <stdio.h> doesn't declare popen() # -DNEED_DECLARATION_PUTENV if your C++ <stdlib.h> doesn't declare putenv() +# -DNEED_DECLARATION_STRCASECMP if your C++ <string.h> doesn't declare +# strcasecmp() # -DNEED_DECLARATION_STRNCASECMP # if your C++ <string.h> doesn't declare # strncasecmp() @@ -228,8 +231,8 @@ man7dir=$(manroot)/man$(man7ext) # -DPAGEA4 if the the printer's page size is A4 DEFINES=@DEFS@ -# Include fmod.o, strtol.o, getcwd.o, strerror.o, putenv.o in LIBOBJS if -# your C library is missing the corresponding function. +# Include fmod.o, strtol.o, getcwd.o, strerror.o, putenv.o, mkstemp.o +# in LIBOBJS if your C library is missing the corresponding function. LIBOBJS=@LIBOBJS@ # CCC is the compiler for C++ (.cc) files. |