gcc/libiberty
Andreas Schwab 90e72e20a3 configure.in (checkfuncs): Add gettimeofday.
* configure.in (checkfuncs): Add gettimeofday.
        * config.in, configure: Regenerated.

From-SVN: r27647
1999-06-20 23:01:18 -06:00
..
config
testsuite cplus-dem.c (demangle_template_value_parm): Handle pointers-to-members. 1999-04-11 18:46:52 +00:00
acconfig.h
alloca-conf.h
alloca.c
argv.c
asprintf.c
atexit.c
basename.c
bcmp.c
bcopy.c
bzero.c
calloc.c
ChangeLog configure.in (checkfuncs): Add gettimeofday. 1999-06-20 23:01:18 -06:00
choose-temp.c * choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32. 1999-04-24 18:23:06 -06:00
clock.c clock.c (HZ): Define in terms of (ISO C) CLOCKS_PER_SEC on platforms that don't have HZ. 1999-02-02 16:05:16 -07:00
concat.c
config.h-vms
config.in configure.in (checkfuncs): Add gettimeofday. 1999-06-20 23:01:18 -06:00
config.table Changes from official libiberty sources. 1999-04-06 21:31:24 -06:00
configure configure.in (checkfuncs): Add gettimeofday. 1999-06-20 23:01:18 -06:00
configure.bat
configure.in configure.in (checkfuncs): Add gettimeofday. 1999-06-20 23:01:18 -06:00
COPYING.LIB
copysign.c
cplus-dem.c cplus-dem.c (demangle_fund_type (near 'I' case)): Don't advance the *mangled pointer beyond the end of the string. 1999-05-16 18:44:09 -06:00
fdmatch.c
floatformat.c
fnmatch.c
getcwd.c getcwd.c (getcwd): If pathname is NULL, then obtain SIZE bytes of space using malloc. 1999-05-25 21:04:27 -06:00
getopt1.c
getopt.c
getpagesize.c
getruntime.c Fred Fish <fnf@be.com> 1999-05-06 13:57:01 -07:00
hex.c
index.c
insque.c
makefile.dos
Makefile.in Mike Stump <mrs@wrs.com> 1999-06-10 13:43:56 -07:00
makefile.vms
memchr.c
memcmp.c
memcpy.c
memmove.c
memset.c
mkstemps.c Makefile.in (REQUIRED_OFILES): remove mkstemp.o 1999-02-08 17:17:32 -07:00
mpw-config.in
mpw-make.sed
mpw.c
msdos.c
objalloc.c
obstack.c
pexecute.c pexecute.c: Change all references to __UWIN__ to _UWIN. 1999-04-11 16:21:28 -06:00
putenv.c putenv.c: Include ansidecl.h to define `const'. 1999-05-28 07:34:48 +00:00
random.c random.c (NULL): Don't redefine NULL if it is already defined. 1999-01-13 14:38:14 -07:00
README
rename.c
rindex.c
setenv.c putenv.c: Include ansidecl.h to define `const'. 1999-05-28 07:34:48 +00:00
sigsetmask.c
spaces.c
splay-tree.c splay-tree.h (splay_tree_compare_pointers): Declare. 1999-04-02 15:18:06 +00:00
strcasecmp.c
strchr.c
strdup.c
strerror.c
strncasecmp.c
strrchr.c
strsignal.c
strstr.c
strtod.c
strtol.c
strtoul.c
tmpnam.c * tmpnam.c (L_tmpnam): Fix typo. 1999-05-12 19:23:42 -06:00
vasprintf.c
vfork.c
vfprintf.c
vmsbuild.com
vprintf.c
vsprintf.c
waitpid.c
xatexit.c
xexit.c
xmalloc.c configure.in (checkfuncs): Check for sbrk. 1999-04-15 16:05:35 -06:00
xstrdup.c * xstrdup.c (xstrdup): Switch from strcpy to memcpy for speed. 1999-01-13 11:30:56 +00:00
xstrerror.c

This directory contains the -liberty library of free software.
It is a collection of subroutines used by various GNU programs.
Current members include:

	getopt -- get options from command line
	obstack -- stacks of arbitrarily-sized objects
	strerror -- error message strings corresponding to errno
	strtol -- string-to-long conversion
	strtoul -- string-to-unsigned-long conversion

We expect many of the GNU subroutines that are floating around to
eventually arrive here.

The library must be configured from the top source directory.  Don't
try to run configure in this directory.  Follow the configuration
instructions in ../README.

Please report bugs and fixes to "bug-gnu-utils@prep.ai.mit.edu".  Thank you.

ADDING A NEW FILE
=================

There are two sets of files:  Those that are "required" will be
included in the library for all configurations, while those
that are "optional" will be included in the library only if "needed."

To add a new required file, edit Makefile to add the source file
name to CFILES and the object file to REQUIRED_OFILES.

To add a new optional file, it must provide a single function, and the
name of the function must be the same as the name of the file.

    * Add the source file name to CFILES.

    * Add the function to name to the funcs shell variable in
      configure.in.

    * Add the function to the AC_CHECK_FUNCS lists just after the
      setting of the funcs shell variable.  These AC_CHECK_FUNCS calls
      are never executed; they are there to make autoheader work
      better.

    * Consider the special cases of building libiberty; as of this
      writing, the special cases are newlib and VxWorks.  If a
      particular special case provides the function, you do not need
      to do anything.  If it does not provide the function, add the
      object file to LIBOBJS, and add the function name to the case
      controlling whether to define HAVE_func.

The optional file you've added (e.g. getcwd.c) should compile and work
on all hosts where it is needed.  It does not have to work or even
compile on hosts where it is not needed.

ADDING A NEW CONFIGURATION
==========================

On most hosts you should be able to use the scheme for automatically
figuring out which files are needed.  In that case, you probably
don't need a special Makefile stub for that configuration.

If the fully automatic scheme doesn't work, you may be able to get
by with defining EXTRA_OFILES in your Makefile stub.  This is
a list of object file names that should be treated as required
for this configuration - they will be included in libiberty.a,
regardless of whatever might be in the C library.