Changeset 903 for trunk/src/gmakenew/configure.in
- Timestamp:
- May 23, 2007, 7:31:19 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmakenew/configure.in
r503 r903 17 17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 18 19 AC_INIT([GNU make],[3.81 ],[bug-make@gnu.org])19 AC_INIT([GNU make],[3.81.90],[bug-make@gnu.org]) 20 20 21 21 AC_PREREQ(2.59) 22 AC_REVISION([[$Id: configure.in,v 1.14 2 2006/04/01 06:36:40psmith Exp $]])22 AC_REVISION([[$Id: configure.in,v 1.147 2007/05/09 02:01:53 psmith Exp $]]) 23 23 24 24 # Autoconf setup … … 45 45 AC_MINIX 46 46 47 # Needed for ansi2knr48 AM_C_PROTOTYPES49 50 47 # Enable gettext, in "external" mode. 51 48 … … 72 69 if test "$ac_cv_prog_cc_stdc" != no; then 73 70 AC_DEFINE(HAVE_ANSI_COMPILER, 1, 74 [Define if your compiler conforms to the ANSI C standard.])71 [Define to 1 if your compiler conforms to the ANSI C standard.]) 75 72 fi 76 73 … … 123 120 if test "$ac_cv_search_clock_gettime" != no; then 124 121 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, 125 [Define if you have the clock_gettime function.])122 [Define to 1 if you have the clock_gettime function.]) 126 123 fi 127 124 fi … … 147 144 if test "$ac_cv_func_gettimeofday" = yes; then 148 145 AC_DEFINE(HAVE_GETTIMEOFDAY, 1, 149 [Define if you have a standard gettimeofday function])150 fi 151 152 AC_CHECK_FUNCS( memcpy memmove strchrstrdup mkstemp mktemp fdopen \146 [Define to 1 if you have a standard gettimeofday function]) 147 fi 148 149 AC_CHECK_FUNCS( strdup mkstemp mktemp fdopen \ 153 150 bsd_signal dup2 getcwd realpath sigsetmask sigaction \ 154 151 getgroups seteuid setegid setlinebuf setreuid setregid \ … … 157 154 158 155 AC_FUNC_SETVBUF_REVERSED 156 157 # Rumor has it that strcasecmp lives in -lresolv on some odd systems. 158 # It doesn't hurt much to use our own if we can't find it so I don't 159 # make the effort here. 160 AC_CHECK_FUNCS(strcasecmp strcmpi stricmp) 159 161 160 162 # strcoll() is used by the GNU glob library … … 180 182 if test "$make_cv_nlist_struct" = yes; then 181 183 AC_DEFINE(NLIST_STRUCT, 1, 182 [Define if struct nlist.n_name is a pointer rather than an array.])184 [Define to 1 if struct nlist.n_name is a pointer rather than an array.]) 183 185 fi 184 186 fi … … 195 197 196 198 # Check out the wait reality. 197 AC_CHECK_HEADERS(sys/wait.h )199 AC_CHECK_HEADERS(sys/wait.h,,,[[#include <sys/types.h>]]) 198 200 AC_CHECK_FUNCS(waitpid wait3) 199 201 AC_MSG_CHECKING(for union wait) … … 221 223 if test "$make_cv_union_wait" = yes; then 222 224 AC_DEFINE(HAVE_UNION_WAIT, 1, 223 [Define t hisif you have the \`union wait' type in <sys/wait.h>.])225 [Define to 1 if you have the \`union wait' type in <sys/wait.h>.]) 224 226 fi 225 227 AC_MSG_RESULT($make_cv_union_wait) … … 229 231 if test "$PATH_SEPARATOR" = ';'; then 230 232 AC_DEFINE(HAVE_DOS_PATHS, 1, 231 [Define t hisif your system requires backslashes or drive specs in pathnames.])233 [Define to 1 if your system requires backslashes or drive specs in pathnames.]) 232 234 fi 233 235 … … 265 267 AC_ARG_ENABLE(case-insensitive-file-system, 266 268 AC_HELP_STRING([--enable-case-insensitive-file-system], 267 [enable case insensitive file system support]), 268 case_insensitive_fs="yes" AC_DEFINE(HAVE_CASE_INSENSITIVE_FS), 269 case_insensitive_fs="no") 269 [assume file systems are case insensitive]), 270 [case $enableval in 271 yes) AC_DEFINE(HAVE_CASE_INSENSITIVE_FS) ;; 272 esac]) 270 273 271 274 # See if we can handle the job server feature, and if the user wants it. … … 290 293 if test "$make_cv_sa_restart" != no; then 291 294 AC_DEFINE(HAVE_SA_RESTART, 1, 292 [Define if <signal.h> defines the SA_RESTART constant.])295 [Define to 1 if <signal.h> defines the SA_RESTART constant.]) 293 296 fi 294 297 … … 302 305 yes/yes/yes/yes/yes) 303 306 AC_DEFINE(MAKE_JOBSERVER, 1, 304 [Define t histo enable job server support in GNU make.]);;307 [Define to 1 to enable job server support in GNU make.]);; 305 308 esac 306 309 … … 310 313 yes/yes) 311 314 AC_DEFINE(MAKE_SYMLINKS, 1, 312 [Define t histo enable symbolic link timestamp checking.]);;315 [Define to 1 to enable symbolic link timestamp checking.]);; 313 316 esac 314 317 … … 337 340 case "$make_cv_sys_get_minus_G" in 338 341 yes) AC_DEFINE(SCCS_GET_MINUS_G, 1, 339 [Define t hisif the SCCS 'get' command understands the '-G<file>' option.]);;342 [Define to 1 if the SCCS 'get' command understands the '-G<file>' option.]);; 340 343 esac 341 344 fi … … 385 388 esac 386 389 390 AC_DEFINE_UNQUOTED(PATH_SEPARATOR_CHAR,'$PATH_SEPARATOR',[Define to the character that separates directories in PATH.]) 391 387 392 # Include the Maintainer's Makefile section, if it's here. 388 393
Note:
See TracChangeset
for help on using the changeset viewer.