gcc/libiberty
Kaveh R. Ghazi c5f7c4459e pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining whether to include config.h.
* pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining
        whether to include config.h.  Possibly include unistd.h in the
        !IN_GCC case.  Define VFORK_STRING as a printable function call
        for error messages (either "vfork" or "fork".)  If HAVE_VFORK_H is
        defined, include vfork.h.  If VMS is defined, define vfork()
        appropriately.  Remove vfork check on USG, we're using autoconf.
        (pexecute): Set `errmsg_fmt' to VFORK_STRING instead of checking
        locally what string to use.

From-SVN: r23499
1998-11-02 07:24:47 +00:00
..
config
acconfig.h Initial revision 1998-05-16 00:20:36 -06:00
alloca-conf.h Initial revision 1998-05-16 00:20:36 -06:00
alloca.c pexecute.c: Updates from gcc. 1998-09-05 04:42:19 -06:00
argv.c
asprintf.c
atexit.c
basename.c
bcmp.c
bcopy.c
bzero.c
ChangeLog pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining whether to include config.h. 1998-11-02 07:24:47 +00:00
choose-temp.c Warning fixes: 1998-10-15 15:55:04 +00:00
clock.c
concat.c
config.h-vms
config.in mkstemp.c: Check HAVE_SYS_TIME_H before including sys/time.h 1998-10-13 17:08:18 -06:00
config.table Thu Oct 8 23:42:08 1998 Jeffrey A Law (law@cygnus.com) 1998-10-08 16:48:52 -06:00
configure mkstemp.c: Check HAVE_SYS_TIME_H before including sys/time.h 1998-10-13 17:08:18 -06:00
configure.bat
configure.in mkstemp.c: Check HAVE_SYS_TIME_H before including sys/time.h 1998-10-13 17:08:18 -06:00
COPYING.LIB
copysign.c
cplus-dem.c cplus-dem.c (gnu_special): Fix handling of virtual tables in anonymous namespaces. 1998-10-25 23:10:09 +00:00
fdmatch.c
floatformat.c
fnmatch.c
getcwd.c
getopt1.c pexecute.c: Updates from gcc. 1998-09-05 06:10:25 -06:00
getopt.c getopt.c: Check HAVE_STRINGS_H before including strings.h. 1998-10-13 16:59:40 -06:00
getpagesize.c configure.in: Check for unistd.h as well. 1998-05-21 07:52:41 +00:00
getruntime.c
hex.c
index.c
insque.c
makefile.dos
Makefile.in splay-tree.c: New file. 1998-10-21 09:19:13 +00:00
makefile.vms
memchr.c
memcmp.c
memcpy.c
memmove.c
memset.c
mkstemp.c Warning fixes: 1998-10-15 15:55:04 +00:00
mpw-config.in
mpw-make.sed
mpw.c
msdos.c
objalloc.c
obstack.c pexecute.c: Updates from gcc. 1998-09-05 06:24:41 -06:00
pexecute.c pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining whether to include config.h. 1998-11-02 07:24:47 +00:00
random.c
README
rename.c
rindex.c
sigsetmask.c
spaces.c
splay-tree.c splay-tree.c: Tweak include directives to make sure declarations of xmalloc and free are... 1998-10-26 23:24:48 +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
vasprintf.c mkstemp.c: Include config.h even when not IN_GCC. 1998-09-07 20:37:13 +00:00
vfork.c
vfprintf.c pexecute.c: Updates from gcc. 1998-09-05 04:42:19 -06:00
vmsbuild.com
vprintf.c mkstemp.c: Include config.h even when not IN_GCC. 1998-09-07 20:37:13 +00:00
vsprintf.c
waitpid.c
xatexit.c
xexit.c
xmalloc.c
xstrdup.c
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.