home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-diffs.gz / libg++-2.7.1-diffs
Text File  |  1996-10-13  |  107KB  |  3,059 lines

  1. This file contains patches that transform the baseline version into
  2. the amiga version.  Assuming that you have unarchived the baseline
  3. version in the current directory, just run the command:
  4.  
  5.     patch -p1 -E -b .pbak <diff-file
  6.  
  7. where 'diff-file' is this patch file.  After running patch you should
  8. remove all the generated *.pbak files, and look for any *.rej files
  9. that indicate a problem patching the baseline source.
  10.  
  11. diff -rup --new-file baseline/fsf/libg++/ChangeLog.amiga amiga/fsf/libg++/ChangeLog.amiga
  12. --- baseline/fsf/libg++/ChangeLog.amiga    Wed Dec 31 17:00:00 1969
  13. +++ amiga/fsf/libg++/ChangeLog.amiga    Sat Sep 28 00:00:00 1996
  14. @@ -0,0 +1,14 @@
  15. +Thu Jun 27 21:20:53 1996  Kamil Iskra <iskra@student.uci.agh.edu.pl>
  16. +
  17. +    * libg++/etc/ADT-examples/Patmain.cc - Remove obsolete hacks
  18. +    that were preventing inclussion of <String.h> where <string.h>
  19. +    was needed.
  20. +    * libg++/etc/benchmarks/dhrystone.cc - Ditto.
  21. +    * libg++/etc/trie-gen/test.cc - Ditto.
  22. +    * libg++/etc/trie-gen/trie.cc - Ditto.
  23. +    * libg++/src/BitSet.cc - Ditto.
  24. +    * libg++/tests/test_h.cc - Ditto.
  25. +
  26. +    * etc/cfg-paper.texi - Replace /gnu with /ade.
  27. +    * etc/configure.texi - Ditto.
  28. +    * etc/make-stds.texi - Ditto.
  29. diff -rup --new-file baseline/fsf/libg++/Makefile.in amiga/fsf/libg++/Makefile.in
  30. --- baseline/fsf/libg++/Makefile.in    Sun Nov 12 20:59:41 1995
  31. +++ amiga/fsf/libg++/Makefile.in    Sat Sep 28 00:00:00 1996
  32. @@ -19,7 +19,7 @@
  33.  
  34.  srcdir = .
  35.  
  36. -prefix = /usr/local
  37. +prefix = /ade
  38.  
  39.  exec_prefix = $(prefix)
  40.  bindir = $(exec_prefix)/bin
  41. @@ -56,7 +56,7 @@ INSTALL_DOSREL = install-dosrel-fake
  42.  AS = as
  43.  AR = ar
  44.  AR_FLAGS = rc
  45. -CC = cc
  46. +CC = gcc
  47.  
  48.  # Special variables passed down in EXTRA_GCC_FLAGS.  They are defined
  49.  # here so that they can be overridden by Makefile fragments.
  50. @@ -66,17 +66,19 @@ HOST_PREFIX_1 = loser-
  51.  
  52.  # We don't specify -g -O because many compilers don't support -g -O,
  53.  # and/or -O is broken in and of itself.
  54. -CFLAGS = -g
  55. +# Amiga hack - suppress use of -g which isn't really supported yet.
  56. +CFLAGS = -O2
  57.  LIBCFLAGS = $(CFLAGS)
  58.  CFLAGS_FOR_TARGET = $(CFLAGS)
  59.  LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
  60. -PICFLAG = 
  61. -PICFLAG_FOR_TARGET = 
  62. +PICFLAG = -resident
  63. +PICFLAG_FOR_TARGET = -resident
  64.  
  65.  CXX = gcc
  66.  
  67.  # Use -O2 to stress test the compiler.
  68. -CXXFLAGS = -g -O2
  69. +# Amiga hack - suppress use of -g which isn't really supported yet.
  70. +CXXFLAGS = -O2
  71.  LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
  72.  CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
  73.  LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
  74. @@ -842,7 +844,7 @@ $(CONFIGURE_TARGET_MODULES):
  75.          fi; \
  76.        else \
  77.          true; \
  78. -      fi \
  79. +      fi; \
  80.      else \
  81.        true; \
  82.      fi
  83. diff -rup --new-file baseline/fsf/libg++/Product-Info amiga/fsf/libg++/Product-Info
  84. --- baseline/fsf/libg++/Product-Info    Wed Dec 31 17:00:00 1969
  85. +++ amiga/fsf/libg++/Product-Info    Sat Sep 28 00:00:00 1996
  86. @@ -0,0 +1,16 @@
  87. +.name
  88. +libg++
  89. +.fullname
  90. +GNU C++ class library
  91. +.type
  92. +Programmer Tool
  93. +.short
  94. +GNU C++ class library
  95. +.description
  96. +A C++ class library for use with the GNU C++ compiler.
  97. +.version
  98. +2.7.1
  99. +.distribution
  100. +GNU Library Public License
  101. +.described-by
  102. +Fred Fish (fnf@amigalib.com)
  103. diff -rup --new-file baseline/fsf/libg++/config/mt-amigaos amiga/fsf/libg++/config/mt-amigaos
  104. --- baseline/fsf/libg++/config/mt-amigaos    Wed Dec 31 17:00:00 1969
  105. +++ amiga/fsf/libg++/config/mt-amigaos    Sat Sep 28 00:00:00 1996
  106. @@ -0,0 +1 @@
  107. +PICFLAG_FOR_TARGET=-resident
  108. diff -rup --new-file baseline/fsf/libg++/config.guess amiga/fsf/libg++/config.guess
  109. --- baseline/fsf/libg++/config.guess    Mon Oct 16 08:49:18 1995
  110. +++ amiga/fsf/libg++/config.guess    Sat Sep 28 00:00:00 1996
  111. @@ -1,4 +1,5 @@
  112.  #! /bin/sh
  113. +echo "m68k-unknown-amigaos" ; exit 0    #AmigaOS hack (fnf)
  114.  # Attempt to guess a canonical system name.
  115.  #   Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  116.  #
  117. diff -rup --new-file baseline/fsf/libg++/config.sub amiga/fsf/libg++/config.sub
  118. --- baseline/fsf/libg++/config.sub    Sun Nov 12 20:57:16 1995
  119. +++ amiga/fsf/libg++/config.sub    Sat Sep 28 00:00:00 1996
  120. @@ -211,11 +211,11 @@ case $basic_machine in
  121.          os=-sysv
  122.          ;;
  123.      amiga | amiga-*)
  124. -        basic_machine=m68k-cbm
  125. +        basic_machine=m68k-unknown
  126.          ;;
  127. -    amigados)
  128. -        basic_machine=m68k-cbm
  129. -        os=-amigados
  130. +    amigaos)
  131. +        basic_machine=m68k-unknown
  132. +        os=-amigaos
  133.          ;;
  134.      amigaunix | amix)
  135.          basic_machine=m68k-cbm
  136. @@ -806,7 +806,7 @@ case $os in
  137.      -gnu* | -bsd* | -mach* | -lites* | -minix* | -genix* | -ultrix* | -irix* \
  138.            | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[345]* \
  139.            | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
  140. -          | -amigados* | -msdos* | -moss* | -newsos* | -unicos* | -aos* \
  141. +          | -amigaos* | -msdos* | -moss* | -newsos* | -unicos* | -aos* \
  142.            | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \
  143.            | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
  144.            | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix*  | -lites* \
  145. @@ -967,7 +967,7 @@ case $basic_machine in
  146.          os=-sysv
  147.          ;;
  148.      *-cbm)
  149. -        os=-amigados
  150. +        os=-amigaos
  151.          ;;
  152.      *-dg)
  153.          os=-dgux
  154. diff -rup --new-file baseline/fsf/libg++/configure amiga/fsf/libg++/configure
  155. --- baseline/fsf/libg++/configure    Wed Nov  8 18:38:15 1995
  156. +++ amiga/fsf/libg++/configure    Sat Sep 28 00:00:00 1996
  157. @@ -30,11 +30,14 @@
  158.  #       config.status is removed.
  159.  #
  160.  
  161. +# In places where the argument to echo may start with a '-', use echo since
  162. +# the AmigaOS pdksh builtin echo botches this case.
  163. +
  164.  export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0 $argv; kill $$)
  165.  
  166.  remove=rm
  167. -hard_link=ln
  168. -symbolic_link='ln -s'
  169. +hard_link=cp
  170. +symbolic_link=cp
  171.  
  172.  #for Test
  173.  #remove="echo rm"
  174. @@ -61,7 +64,7 @@ moveifchange=
  175.  norecursion=
  176.  other_options=
  177.  package_makefile_frag=
  178. -prefix=/usr/local
  179. +prefix=/ade
  180.  progname=
  181.  program_prefix=
  182.  program_prefixoption=
  183. @@ -99,10 +102,13 @@ NO_EDIT="This file was generated automat
  184.  ##
  185.  
  186.  progname=$0
  187. +
  188.  # if PWD already has a value, it is probably wrong.
  189. -if [ -n "$PWD" ]; then PWD=`pwd`; fi
  190. +# AmigaOS change - pdksh treats PWD as readonly - fnf
  191. +#if [ -n "$PWD" ]; then PWD=`pwd`; fi
  192.  
  193.  case "${progname}" in
  194. +*:*) progname=/`echo $progname | sed -e 's@:@/@'`;;
  195.  /*) ;;
  196.  */*) ;;
  197.  *)
  198. @@ -1008,6 +1014,11 @@ EOF
  199.                  echo site_makefile_frag = ${invsubdir}${site_makefile_frag} >>${Makefile}
  200.              fi 
  201.  
  202. +        # make sure that some sort of reasonable default exists for these 
  203. +        # two variables
  204. +        CXX=${CXX-"g++ -O"}
  205. +        CC=${CC-gcc}
  206. +
  207.              # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
  208.              # remove any form feeds.
  209.              if [ -z "${subdirs}" ]; then
  210. @@ -1125,6 +1136,7 @@ done
  211.  
  212.  # If there are subdirectories, then recur. 
  213.  if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then 
  214. +    echo "Configure subdirectories ${configdirs}"
  215.          for configdir in ${configdirs} ; do
  216.  
  217.                  if [ -d ${srcdir}/${configdir} ] ; then
  218. @@ -1186,6 +1198,7 @@ if [ -z "${norecursion}" -a -n "${config
  219.  
  220.  ### The recursion line is here.
  221.              if [ ! -z "${recprog}" ] ; then
  222. +                echo ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} ${prefixoption} ${tmpdiroption} ${exec_prefixoption} ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${removing} ${other_options} ${redirect}
  223.                              if eval ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} \
  224.                                      ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
  225.                                      ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
  226. diff -rup --new-file baseline/fsf/libg++/configure.in amiga/fsf/libg++/configure.in
  227. --- baseline/fsf/libg++/configure.in    Sun Nov 12 21:05:45 1995
  228. +++ amiga/fsf/libg++/configure.in    Sat Sep 28 00:00:00 1996
  229. @@ -31,10 +31,13 @@ if [ "${enable_gdbgui}" = "yes" ] ; then
  230.  fi
  231.  
  232.  # these tools are built for the host environment
  233. +# Amiga hack - remove cvs since it causes configure to try to
  234. +# configure the CVS subdirectory because of the case independence
  235. +# of the Amiga filesystem.
  236.  #
  237.  host_tools="byacc flex bison binutils ld gas gcc gdb make patch
  238.          prms send-pr gprof gdbtest tgas etc expect dejagnu sim
  239. -            m4 autoconf ispell grep diff rcs cvs fileutils shellutils
  240. +            m4 autoconf ispell grep diff rcs fileutils shellutils
  241.          textutils wdiff find emacs emacs19 uudecode hello tar gzip indent
  242.          recode release sed utils"
  243.  
  244. @@ -78,8 +81,8 @@ cross_only="target-libiberty target-libg
  245.  ## ${configdirs} is directories we build using the host tools.
  246.  ## ${target_configdirs} is directories we build using the target tools.
  247.  #
  248. -configdirs=`echo ${host_libs} ${host_tools}`
  249. -target_configdirs=`echo ${target_libs} ${target_tools}`
  250. +configdirs=`/bin/echo ${host_libs} ${host_tools}`
  251. +target_configdirs=`/bin/echo ${target_libs} ${target_tools}`
  252.  
  253.  ################################################################################
  254.  
  255. @@ -294,7 +297,7 @@ fi
  256.  if [ x${with_newlib} = xno ]; then
  257.    skipdirs="${skipdirs} target-newlib"
  258.  elif [ x${with_newlib} = xyes ]; then
  259. -  skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
  260. +  skipdirs=`/bin/echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
  261.  fi
  262.  
  263.  # Handle ${copy_dirs}
  264. @@ -323,7 +326,7 @@ while [ $# != 0 ]; do
  265.      # symlinks.  If somebody can figure out how to handle them correctly
  266.      # here, feel free to add the code.
  267.  
  268. -    echo $1 > $2/COPIED
  269. +    /bin/echo $1 > $2/COPIED
  270.    fi
  271.    shift; shift
  272.  done
  273. @@ -403,7 +406,7 @@ case "${target}" in
  274.          noconfigdirs="$noconfigdirs gdb"
  275.      fi
  276.      # always build newlib.
  277. -    skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
  278. +    skipdirs=`/bin/echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
  279.      # and winsup
  280.      configdirs="$configdirs target-winsup" 
  281.      ;;    
  282. @@ -470,7 +473,7 @@ case "${target}" in
  283.      case "${host}" in
  284.        i[345]86-*-vsta) ;; # don't add gprof back in
  285.        i[345]86-*-go32) ;; # don't add gprof back in
  286. -      *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
  287. +      *) skipdirs=`/bin/echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
  288.      esac
  289.      ;;
  290.    sparc-*-sunos4*)
  291. @@ -507,23 +510,23 @@ fi
  292.  
  293.  notsupp=""
  294.  for dir in . $skipdirs $noconfigdirs ; do
  295. -  dirname=`echo $dir | sed -e s/target-//g`
  296. -  if [ $dir != . ]  && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  297. -    configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
  298. +  dirname=`/bin/echo $dir | sed -e s/target-//g`
  299. +  if [ $dir != . ]  && /bin/echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  300. +    configdirs=`/bin/echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
  301.      if [ -r $srcdir/$dirname/configure ] \
  302.      || [ -r $srcdir/$dirname/configure.in ]; then
  303. -      if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  304. +      if /bin/echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  305.      true
  306.        else
  307.      notsupp="$notsupp $dir"
  308.        fi
  309.      fi
  310.    fi
  311. -  if [ $dir != . ]  && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  312. -    target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
  313. +  if [ $dir != . ]  && /bin/echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  314. +    target_configdirs=`/bin/echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
  315.      if [ -r $srcdir/$dirname/configure ] \
  316.      || [ -r $srcdir/$dirname/configure.in ]; then
  317. -      if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  318. +      if /bin/echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  319.      true
  320.        else
  321.      notsupp="$notsupp $dir"
  322. @@ -536,7 +539,7 @@ done
  323.  # libraries.  In that case, we don't want to build target-libiberty.
  324.  if [ -n "${target_configdirs}" ]; then
  325.    others=
  326. -  for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
  327. +  for i in `/bin/echo ${target_configdirs} | sed -e s/target-//g` ; do
  328.      if [ "$i" != "libiberty" ]; then
  329.        if [ -r $srcdir/$i/configure ] || [ -r $srcdir/$i/configure.in ]; then
  330.      others=yes;
  331. @@ -553,12 +556,12 @@ fi
  332.  # configuration from one where a subdirectory is supported to one where it
  333.  # is not.
  334.  if [ -z "${norecursion}" -a -n "${configdirs}" ]; then
  335. -  for i in `echo ${configdirs} | sed -e s/target-//g` ; do
  336. +  for i in `/bin/echo ${configdirs} | sed -e s/target-//g` ; do
  337.      rm -f $i/Makefile
  338.    done
  339.  fi
  340.  if [ -z "${norecursion}" -a -n "${target_configdirs}" ]; then
  341. -  for i in `echo ${target_configdirs} | sed -e s/target-//` ; do
  342. +  for i in `/bin/echo ${target_configdirs} | sed -e s/target-//` ; do
  343.      rm -f ${target_subdir}/$i/Makefile
  344.    done
  345.  fi
  346. @@ -576,11 +579,11 @@ if [ -n "${notsupp}" ] && [ -z "${norecu
  347.    if [ -n "$appdirs" ]; then
  348.      for dir in $appdirs ; do
  349.        if [ -r $dir/Makefile.in ]; then
  350. -    if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  351. +    if /bin/echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  352.        appdirs=""
  353.        break
  354.      fi
  355. -    if echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  356. +    if /bin/echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
  357.        appdirs=""
  358.        break
  359.      fi
  360. @@ -612,14 +615,14 @@ fi
  361.  # --without-gnu-ld options for the configure script.
  362.  
  363.  if [ x${use_gnu_as} = x ] ; then
  364. -  if [ x${with_gnu_as} != xno ] && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
  365. +  if [ x${with_gnu_as} != xno ] && /bin/echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
  366.      with_gnu_as=yes
  367.      withoptions="$withoptions --with-gnu-as"
  368.    fi
  369.  fi
  370.  
  371.  if [ x${use_gnu_ld} = x ] ; then
  372. -  if [ x${with_gnu_ld} != xno ] && echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
  373. +  if [ x${with_gnu_ld} != xno ] && /bin/echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
  374.      with_gnu_ld=yes
  375.      withoptions="$withoptions --with-gnu-ld"
  376.    fi
  377. @@ -636,8 +639,8 @@ fi
  378.  # post-target:
  379.  
  380.  # Record target_configdirs and the configure arguments in Makefile.
  381. -target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
  382. -targargs=`echo "${arguments}" | \
  383. +target_configdirs=`/bin/echo "${target_configdirs}" | sed -e 's/target-//g'`
  384. +targargs=`/bin/echo "${arguments}" | \
  385.      sed -e 's/--*norecursion//' \
  386.          -e 's/--*cache[a-z-]*=[^     ]*//' \
  387.          -e 's/--*cache[a-z-]*[     ][     ]*[^     ]*//'`
  388. diff -rup --new-file baseline/fsf/libg++/etc/Makefile.in amiga/fsf/libg++/etc/Makefile.in
  389. --- baseline/fsf/libg++/etc/Makefile.in    Sun Nov 12 20:51:26 1995
  390. +++ amiga/fsf/libg++/etc/Makefile.in    Sat Sep 28 00:00:00 1996
  391. @@ -2,7 +2,7 @@
  392.  # Makefile.in for etc
  393.  #
  394.  
  395. -prefix         = /usr/local
  396. +prefix         = /ade
  397.  exec_prefix     = $(prefix)
  398.  
  399.  srcdir  = .
  400. diff -rup --new-file baseline/fsf/libg++/etc/cfg-paper.texi amiga/fsf/libg++/etc/cfg-paper.texi
  401. --- baseline/fsf/libg++/etc/cfg-paper.texi    Sun Nov 12 20:51:27 1995
  402. +++ amiga/fsf/libg++/etc/cfg-paper.texi    Sat Sep 28 00:00:00 1996
  403. @@ -241,7 +241,7 @@ that it is available.
  404.  
  405.  In order to actually install the program, the configuration system needs
  406.  to know where you would like the program installed.  The default
  407. -location is @file{/usr/local}.  We refer to this location as
  408. +location is @file{/ade}.  We refer to this location as
  409.  @code{$(prefix)}.  All user visible programs will be installed in
  410.  @file{@code{$(prefix)}/bin}.  All other programs and files will be
  411.  installed in a subdirectory of @file{@code{$(prefix)}/lib}.
  412. diff -rup --new-file baseline/fsf/libg++/etc/configure.man amiga/fsf/libg++/etc/configure.man
  413. --- baseline/fsf/libg++/etc/configure.man    Sun Nov 12 20:51:29 1995
  414. +++ amiga/fsf/libg++/etc/configure.man    Sat Sep 28 00:00:00 1996
  415. @@ -57,7 +57,7 @@ when building Makefiles.
  416.  .I \--prefix=DIR
  417.  sets the location in which to install files to
  418.  .I DIR.
  419. -The default is "/usr/local".
  420. +The default is "/ade".
  421.  
  422.  .TP
  423.  .I \--exec_prefix=DIR
  424. diff -rup --new-file baseline/fsf/libg++/etc/configure.texi amiga/fsf/libg++/etc/configure.texi
  425. --- baseline/fsf/libg++/etc/configure.texi    Sun Nov 12 20:51:30 1995
  426. +++ amiga/fsf/libg++/etc/configure.texi    Sat Sep 28 00:00:00 1996
  427. @@ -753,7 +753,7 @@ wish to build.
  428.  @emph{Caution:} If you build more than one configuration for a single program,
  429.  remember that you must also specify a different @samp{--prefix} for each
  430.  configuration at configure-time.  Otherwise, both configurations will be
  431. -installed in the same default location (@file{/usr/local}); the configuration
  432. +installed in the same default location (@file{/ade}); the configuration
  433.  to be installed last would overwrite previously installed configurations.
  434.  
  435.  @c ---------------------------------------------------------------------
  436. @@ -782,7 +782,7 @@ generates a @file{Makefile} which specif
  437.  
  438.  @item in the current directory, and which will be installed 
  439.  
  440. -@item in the default installation directory (@file{/usr/local}) when the code
  441. +@item in the default installation directory (@file{/ade}) when the code
  442.  is compiled with @code{make}.  
  443.  @end itemize
  444.  
  445. @@ -1226,7 +1226,7 @@ links="bison.hairy"
  446.  Using the default configuration, @samp{make install} creates a single tree of
  447.  files, some of which are programs.  The location of this tree is determined by
  448.  the value of the variable @samp{prefix}.  The default value of @samp{prefix} is
  449. -@samp{/usr/local}.  This is often correct for native tools installed on only
  450. +@samp{/ade}.  This is often correct for native tools installed on only
  451.  one host.
  452.  
  453.  @menu
  454. @@ -1245,7 +1245,7 @@ one host.
  455.  @vindex prefix
  456.  
  457.  In the default configuration, all files are installed in subdirectories
  458. -of @file{/usr/local}.  The location is determined by the value of
  459. +of @file{/ade}.  The location is determined by the value of
  460.  the @code{configure} variable @samp{prefix}; in turn, this determines the
  461.  value of the @file{Makefile} variable of the same name (@samp{prefix}).
  462.  
  463. @@ -1346,7 +1346,7 @@ defaults are set by corresponding @code{
  464.  The root of the installation tree.  You can set its @file{Makefile} default
  465.  with the @samp{--prefix=} command line option to @code{configure}
  466.  (@pxref{Invoking configure, , Invoking @code{configure}}).  The default value
  467. -for @samp{prefix} is @samp{/usr/local}.
  468. +for @samp{prefix} is @samp{/ade}.
  469.  
  470.  @item bindir
  471.  @cindex @code{bindir}
  472. diff -rup --new-file baseline/fsf/libg++/etc/make-stds.texi amiga/fsf/libg++/etc/make-stds.texi
  473. --- baseline/fsf/libg++/etc/make-stds.texi    Sat Mar 26 10:22:48 1994
  474. +++ amiga/fsf/libg++/etc/make-stds.texi    Sat Sep 28 00:00:00 1996
  475. @@ -384,7 +384,7 @@ variables are:
  476.  @table @samp
  477.  @item prefix
  478.  A prefix used in constructing the default values of the variables listed
  479. -below.  The default value of @code{prefix} should be @file{/usr/local}
  480. +below.  The default value of @code{prefix} should be @file{/ade}
  481.  (at least for now).
  482.  
  483.  @item exec_prefix
  484. @@ -398,7 +398,7 @@ while @code{$(prefix)} is used directly 
  485.  
  486.  @item bindir
  487.  The directory for installing executable programs that users can run.
  488. -This should normally be @file{/usr/local/bin}, but write it as
  489. +This should normally be @file{/ade/bin}, but write it as
  490.  @file{$(exec_prefix)/bin}.
  491.  
  492.  @item libdir
  493. @@ -407,30 +407,30 @@ rather than by users.  Object files and 
  494.  also go in this directory.  The idea is that this directory is used for
  495.  files that pertain to a specific machine architecture, but need not be
  496.  in the path for commands.  The value of @code{libdir} should normally be
  497. -@file{/usr/local/lib}, but write it as @file{$(exec_prefix)/lib}.
  498. +@file{/ade/lib}, but write it as @file{$(exec_prefix)/lib}.
  499.  
  500.  @item datadir
  501.  The directory for installing read-only data files which the programs
  502.  refer to while they run.  This directory is used for files which are
  503.  independent of the type of machine being used.  This should normally be
  504. -@file{/usr/local/lib}, but write it as @file{$(prefix)/lib}.
  505. +@file{/ade/lib}, but write it as @file{$(prefix)/lib}.
  506.  
  507.  @item statedir
  508.  The directory for installing data files which the programs modify while
  509.  they run.  These files should be independent of the type of machine
  510.  being used, and it should be possible to share them among machines at a
  511. -network installation.  This should normally be @file{/usr/local/lib},
  512. +network installation.  This should normally be @file{/ade/lib},
  513.  but write it as @file{$(prefix)/lib}.
  514.  
  515.  @item includedir
  516.  @c rewritten to avoid overfull hbox --roland
  517.  The directory for installing header files to be included by user
  518.  programs with the C @samp{#include} preprocessor directive.  This
  519. -should normally be @file{/usr/local/include}, but write it as
  520. +should normally be @file{/ade/include}, but write it as
  521.  @file{$(prefix)/include}.
  522.  
  523.  Most compilers other than GCC do not look for header files in
  524. -@file{/usr/local/include}.  So installing the header files this way is
  525. +@file{/ade/include}.  So installing the header files this way is
  526.  only useful with GCC.  Sometimes this is not a problem because some
  527.  libraries are only really intended to work with GCC.  But some libraries
  528.  are intended to work with other compilers.  They should install their
  529. @@ -459,7 +459,7 @@ string in the file---part of a comment--
  530.  The directory for installing the man pages (if any) for this package.
  531.  It should include the suffix for the proper section of the
  532.  manual---usually @samp{1} for a utility.  It will normally be
  533. -@file{/usr/local/man/man1}, but you should write it as
  534. +@file{/ade/man/man1}, but you should write it as
  535.  @file{$(prefix)/man/man1}. 
  536.  
  537.  @item man1dir
  538. @@ -489,7 +489,7 @@ pages in more than one section of the ma
  539.  
  540.  @item infodir
  541.  The directory for installing the Info files for this package.  By
  542. -default, it should be @file{/usr/local/info}, but it should be written
  543. +default, it should be @file{/ade/info}, but it should be written
  544.  as @file{$(prefix)/info}.
  545.  
  546.  @item srcdir
  547. @@ -504,7 +504,7 @@ For example:
  548.  @c hbox, so the make manual can format correctly. --roland
  549.  # Common prefix for installation directories.
  550.  # NOTE: This directory must exist when you start the install.
  551. -prefix = /usr/local
  552. +prefix = /ade
  553.  exec_prefix = $(prefix)
  554.  # Where to put the executable for the command `gcc'.
  555.  bindir = $(exec_prefix)/bin
  556. diff -rup --new-file baseline/fsf/libg++/libg++/etc/benchmarks/Makefile.in amiga/fsf/libg++/libg++/etc/benchmarks/Makefile.in
  557. --- baseline/fsf/libg++/libg++/etc/benchmarks/Makefile.in    Thu Feb 16 03:24:34 1995
  558. +++ amiga/fsf/libg++/libg++/etc/benchmarks/Makefile.in    Sat Sep 28 00:00:00 1996
  559. @@ -2,7 +2,7 @@
  560.  
  561.  srcdir = .
  562.  
  563. -prefix = /usr/local
  564. +prefix = /ade
  565.  
  566.  
  567.  # select QUICK= -DQUICK to get 50000 instead of 500000 iterations
  568. diff -rup --new-file baseline/fsf/libg++/libg++/old-stream/Makefile.in amiga/fsf/libg++/libg++/old-stream/Makefile.in
  569. --- baseline/fsf/libg++/libg++/old-stream/Makefile.in    Mon Apr 19 00:36:54 1993
  570. +++ amiga/fsf/libg++/libg++/old-stream/Makefile.in    Sat Sep 28 00:00:00 1996
  571. @@ -10,7 +10,7 @@ OBJS = File.o PlotFile.o Filebuf.o SFile
  572.  # should be installed where user programs can find them.
  573.  
  574.  USER_INCLUDES = File.h Filebuf.h Fmodes.h PlotFile.h SFile.h \
  575. -  filebuf.h istream.h ostream.h stream.h streambuf.h
  576. +  _filebuf.h istream.h ostream.h stream.h streambuf.h
  577.  
  578.  # The following include files are private to the implementation.
  579.  
  580. diff -rup --new-file baseline/fsf/libg++/libg++/old-stream/istream.h amiga/fsf/libg++/libg++/old-stream/istream.h
  581. --- baseline/fsf/libg++/libg++/old-stream/istream.h    Fri Jan 17 15:11:03 1992
  582. +++ amiga/fsf/libg++/libg++/old-stream/istream.h    Sat Sep 28 00:00:00 1996
  583. @@ -29,7 +29,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 
  584.  
  585.  #include <File.h>
  586.  #include <streambuf.h>
  587. -#include <filebuf.h>
  588. +#include <_filebuf.h>    /* Avoid name clash; Filebuf.h <==> filebuf.h */
  589.  #include <Filebuf.h>
  590.  
  591.  class whitespace                // a class used only to input and
  592. diff -rup --new-file baseline/fsf/libg++/libg++/old-stream/ostream.h amiga/fsf/libg++/libg++/old-stream/ostream.h
  593. --- baseline/fsf/libg++/libg++/old-stream/ostream.h    Fri Jan 17 15:11:08 1992
  594. +++ amiga/fsf/libg++/libg++/old-stream/ostream.h    Sat Sep 28 00:00:00 1996
  595. @@ -32,7 +32,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 
  596.  
  597.  #include <File.h>
  598.  #include <streambuf.h>
  599. -#include <filebuf.h>
  600. +#include <_filebuf.h>    /* Avoid name clash; Filebuf.h <==> filebuf.h */
  601.  #include <Filebuf.h>
  602.  
  603.  class istream;
  604. diff -rup --new-file baseline/fsf/libg++/libg++/proto-kit/Makefile amiga/fsf/libg++/libg++/proto-kit/Makefile
  605. --- baseline/fsf/libg++/libg++/proto-kit/Makefile    Fri Jun 28 14:24:19 1991
  606. +++ amiga/fsf/libg++/libg++/proto-kit/Makefile    Sat Sep 28 00:00:00 1996
  607. @@ -70,7 +70,7 @@ MACH := $(BASE)/usr/mach
  608.  CS   := $(BASE)/usr/cs
  609.  
  610.  # GNU directories
  611. -GNULIBDIR := $(BASE)/usr/local/lib
  612. +GNULIBDIR := /ade/lib
  613.  GNUIDIR := $(GNULIBDIR)/g++-include
  614.  
  615.  # the g++ library prototypes...
  616. diff -rup --new-file baseline/fsf/libg++/libg++/proto-kit/Makefile.new amiga/fsf/libg++/libg++/proto-kit/Makefile.new
  617. --- baseline/fsf/libg++/libg++/proto-kit/Makefile.new    Tue Jul 30 10:19:13 1991
  618. +++ amiga/fsf/libg++/libg++/proto-kit/Makefile.new    Sat Sep 28 00:00:00 1996
  619. @@ -70,7 +70,7 @@ MACH := $(BASE)/usr/mach
  620.  CS   := $(BASE)/usr/cs
  621.  
  622.  # GNU directories
  623. -GNULIBDIR := $(BASE)/usr/local/lib
  624. +GNULIBDIR := /ade/lib
  625.  GNUIDIR := $(GNULIBDIR)/g++-include
  626.  
  627.  # the g++ library prototypes...
  628. diff -rup --new-file baseline/fsf/libg++/libg++/proto-kit/hierarchy amiga/fsf/libg++/libg++/proto-kit/hierarchy
  629. --- baseline/fsf/libg++/libg++/proto-kit/hierarchy    Fri Jun 28 14:24:37 1991
  630. +++ amiga/fsf/libg++/libg++/proto-kit/hierarchy    Sat Sep 28 00:00:00 1996
  631. @@ -1,4 +1,4 @@
  632. -#!/usr/local/bin/gawk -f
  633. +#! /ade/bin/gawk -f
  634.  #**************************************************************************************
  635.  #
  636.  # hierarchy:
  637. diff -rup --new-file baseline/fsf/libg++/libg++/proto-kit/prototype amiga/fsf/libg++/libg++/proto-kit/prototype
  638. --- baseline/fsf/libg++/libg++/proto-kit/prototype    Fri Jun 28 14:24:51 1991
  639. +++ amiga/fsf/libg++/libg++/proto-kit/prototype    Sat Sep 28 00:00:00 1996
  640. @@ -1,4 +1,4 @@
  641. -#!/usr/local/bin/gawk -f
  642. +#! /ade/bin/gawk -f
  643.  #
  644.  # types: types[x] = 1 for each type 'x' we have completed.  'x' has separators
  645.  #
  646. diff -rup --new-file baseline/fsf/libg++/libg++/src/CursesW.h amiga/fsf/libg++/libg++/src/CursesW.h
  647. --- baseline/fsf/libg++/libg++/src/CursesW.h    Wed Aug  2 17:29:33 1995
  648. +++ amiga/fsf/libg++/libg++/src/CursesW.h    Sat Sep 28 00:00:00 1996
  649. @@ -138,11 +138,11 @@ extern "C" int scrollok(WINDOW*, char);
  650.  #endif
  651.  #endif
  652.  #ifdef standend
  653. -inline int (standend)()  { return standend(); }
  654. +inline int (standend)()  { return (int) standend(); }
  655.  #undef standend
  656.  #endif
  657.  #ifdef standout
  658. -inline int (standout)()  { return standout(); }
  659. +inline int (standout)()  { return (int) standout(); }
  660.  #undef standout
  661.  #endif
  662.  #ifdef wstandend
  663. @@ -363,6 +363,19 @@ public:
  664.  };
  665.  
  666.  
  667. +#ifdef __amigaos__
  668. +
  669. +/* The <curses.h> file in the ixemul environment is a port of the BSD 4.4 lite
  670. +   distribution.  This one doesn't have leading underscores on some of the
  671. +   __window members. */
  672. +
  673. +#define _begx begx
  674. +#define _begy begy
  675. +#define _maxx maxx
  676. +#define _maxy maxy
  677. +
  678. +#endif /* __amigaos__ */
  679. +
  680.  inline int CursesWindow::begx()
  681.  {
  682.    return w->_begx;
  683. @@ -566,12 +579,12 @@ inline void CursesWindow::getyx(int& y, 
  684.  
  685.  inline int CursesWindow::standout()                   
  686.  {
  687. -  return ::wstandout(w); 
  688. +  return (int) ::wstandout(w); 
  689.  }
  690.  
  691.  inline int CursesWindow::standend()                   
  692.  {
  693. -  return ::wstandend(w); 
  694. +  return (int) ::wstandend(w); 
  695.  }
  696.  
  697.  inline int CursesWindow::lines()                      
  698. diff -rup --new-file baseline/fsf/libg++/libg++/src/Makefile.in amiga/fsf/libg++/libg++/src/Makefile.in
  699. --- baseline/fsf/libg++/libg++/src/Makefile.in    Mon Aug 21 11:44:47 1995
  700. +++ amiga/fsf/libg++/libg++/src/Makefile.in    Sat Sep 28 00:00:00 1996
  701. @@ -41,7 +41,7 @@ OBJS =  AllocRing.o Obstack.o builtin.o 
  702.   Normal.o NegExp.o Weibull.o Erlang.o DiscUnif.o \
  703.   Uniform.o Poisson.o HypGeom.o Geom.o Binomial.o \
  704.   RNG.o ACG.o MLCG.o  RndInt.o  \
  705. - Fix.o Fix16.o Fix24.o CursesW.o GetOpt.o \
  706. + Fix.o Fix16.o Fix24.o GetOpt.o \
  707.   chr.o error.o gcd.o hash.o \
  708.   lg.o fmtq.o ioob.o pow.o sqrt.o str.o timer.o \
  709.   compare.o $(BIT_OBJS) \
  710. diff -rup --new-file baseline/fsf/libg++/libg++/tests/Makefile.sh amiga/fsf/libg++/libg++/tests/Makefile.sh
  711. --- baseline/fsf/libg++/libg++/tests/Makefile.sh    Mon Aug 21 11:45:48 1995
  712. +++ amiga/fsf/libg++/libg++/tests/Makefile.sh    Sat Sep 28 00:00:00 1996
  713. @@ -134,10 +134,14 @@ LIB_FOR_tFix16=-lm
  714.  LIB_FOR_tFix24=-lm
  715.  LIB_FOR_tCurses="-lcurses -ltermcap"
  716.  
  717. +# Note: The eval line below causes a command of the form "echo -lcurses ..."
  718. +# to be run, which is not handled properly on the Amiga with pdksh's
  719. +# internal echo.  Force the GNU echo (/bin/echo) to be used.  -fnf
  720. +
  721.  for TEST in $TESTS0 tiLList tCurses tGetOpt; do
  722.    echo "${TEST}: ${TEST}.o"
  723.    echo '    $(CXX) $(LDFLAGS)' "${TEST}.o" '-o $@ $(LIBS)' \
  724. -    `eval echo '$LIB_FOR_'$TEST`
  725. +    `eval /bin/echo '$LIB_FOR_'$TEST`
  726.    echo ""
  727.  done
  728.  for TEST in twrapper tgwrapper $TESTS1; do
  729. diff -rup --new-file baseline/fsf/libg++/libiberty/Makefile.in amiga/fsf/libg++/libiberty/Makefile.in
  730. --- baseline/fsf/libg++/libiberty/Makefile.in    Sun Nov  5 20:24:54 1995
  731. +++ amiga/fsf/libg++/libiberty/Makefile.in    Sat Sep 28 00:00:00 1996
  732. @@ -28,7 +28,7 @@
  733.  
  734.  srcdir = .
  735.  
  736. -prefix = /usr/local
  737. +prefix = /ade
  738.  
  739.  exec_prefix = $(prefix)
  740.  bindir = $(exec_prefix)/bin
  741. @@ -69,12 +69,13 @@ AR_FLAGS = rc
  742.  
  743.  ERRORS_CC = $(CC)
  744.  CC = cc
  745. -CFLAGS = -g
  746. +#AmigaOS hack - suppress use of -g which isn't really supported yet.
  747. +CFLAGS = -O2
  748.  LIBCFLAGS = $(CFLAGS)
  749.  MAKEINFO = makeinfo
  750.  RANLIB = ranlib
  751.  
  752. -PICFLAG =
  753. +PICFLAG = -resident
  754.  
  755.  MAKEOVERRIDES =
  756.  
  757. @@ -123,7 +124,7 @@ all: stamp-picdir $(TARGETLIB)
  758.  .PHONY: check installcheck
  759.  check installcheck:
  760.  
  761. -
  762. +CC=gcc
  763.  #### Host, target, and site specific Makefile fragments come in here.
  764.  ###
  765.  
  766. diff -rup --new-file baseline/fsf/libg++/libiberty/config/mt-amigaos amiga/fsf/libg++/libiberty/config/mt-amigaos
  767. --- baseline/fsf/libg++/libiberty/config/mt-amigaos    Wed Dec 31 17:00:00 1969
  768. +++ amiga/fsf/libg++/libiberty/config/mt-amigaos    Sat Sep 28 00:00:00 1996
  769. @@ -0,0 +1 @@
  770. +PICFLAG = -resident
  771. diff -rup --new-file baseline/fsf/libg++/libio/config.shared amiga/fsf/libg++/libio/config.shared
  772. --- baseline/fsf/libg++/libio/config.shared    Sun Nov 12 17:35:09 1995
  773. +++ amiga/fsf/libg++/libio/config.shared    Sat Sep 28 00:00:00 1996
  774. @@ -55,7 +55,7 @@ SUBDIRS=${SUBDIRS-${configdirs}}
  775.  echo "srcdir = ${srcdir}"
  776.  echo "SUBDIRS = ${SUBDIRS}"
  777.  
  778. -echo "prefix = ${prefix-/usr/local}"
  779. +echo "prefix = ${prefix-/ade}"
  780.  echo "exec_prefix = ${exec_prefix-'${prefix}'}"
  781.  
  782.  echo 'bindir = $(exec_prefix)/bin'
  783. @@ -119,11 +119,11 @@ if true ; then
  784.  else
  785.    echo 'WRAP_C_INCLUDES = -I$(srcdir)'/${TOLIBGXX}g++-include
  786.  fi
  787. -echo 'CFLAGS = -g'
  788. -echo 'CXXFLAGS = -g -O3'
  789. +echo 'CFLAGS = -O2'
  790. +echo 'CXXFLAGS = -O3'
  791.  echo 'LIBCFLAGS = $(CFLAGS)'
  792.  echo 'LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates'
  793. -echo 'PICFLAG ='
  794. +echo 'PICFLAG = -resident'
  795.  if [ "${LIBDIR}" = "yes" ]; then
  796.    echo 'PICDIR = stamp-picdir'
  797.  else
  798. diff -rup --new-file baseline/fsf/libg++/libio/dbz/Makefile.in amiga/fsf/libg++/libio/dbz/Makefile.in
  799. --- baseline/fsf/libg++/libio/dbz/Makefile.in    Wed Sep 20 10:55:44 1995
  800. +++ amiga/fsf/libg++/libio/dbz/Makefile.in    Sat Sep 28 00:00:00 1996
  801. @@ -1,5 +1,5 @@
  802.  srcdir = .
  803. -CFLAGS = -g
  804. +CFLAGS = -O2
  805.  C_FLAGS = $(CFLAGS) -I$(srcdir) -I.. -I$(srcdir)/.. -DDBZ_FINISH='_IO_flush_all()'
  806.  CC = `if [ -f ../../../gcc/gcc ] ; \
  807.      then echo ../../../gcc/gcc -B../../../gcc/ ; \
  808. @@ -117,6 +117,7 @@ r2a: rdbz stamp-r1
  809.      mkdir xx
  810.      chmod -w xx
  811.      ./rdbz -E 1000 -0 -M -i -S -u -U -C xx dbase
  812. +    sleep 5  # Give lock time to go away (AmigaOS hack)
  813.      rmdir xx
  814.      sed '/>    0/d' $(RHIST) >dbase.used
  815.      test "`cat dbase.used | wc -l`" -eq "`sed -n '2s/ .*//p' dbase.dir`" ;
  816. diff -rup --new-file baseline/fsf/libg++/libio/gen-params amiga/fsf/libg++/libio/gen-params
  817. --- baseline/fsf/libg++/libio/gen-params    Fri Nov  3 17:48:50 1995
  818. +++ amiga/fsf/libg++/libio/gen-params    Sat Sep 28 00:00:00 1996
  819. @@ -50,7 +50,7 @@ gccdir=${gccdir-${rootdir}/gcc}
  820.  binutilsdir=${binutilsdir-${rootdir}/binutils}
  821.  CC=${CC-`if [ -f ${gccdir}/xgcc ] ; \
  822.      then echo ${gccdir}/xgcc -B${gccdir}/ ; \
  823. -    else echo cc ; fi`}
  824. +    else echo gcc ; fi`}
  825.  CXX=${CXX-`if [ -f ${gccdir}/xgcc ] ; \
  826.      then echo ${gccdir}/xgcc -B${gccdir}/ ; \
  827.      else echo gcc ; fi`}
  828. diff -rup --new-file baseline/fsf/libg++/libio/tests/Makefile.in amiga/fsf/libg++/libio/tests/Makefile.in
  829. --- baseline/fsf/libg++/libio/tests/Makefile.in    Sun Feb 12 22:24:24 1995
  830. +++ amiga/fsf/libg++/libio/tests/Makefile.in    Sat Sep 28 00:00:00 1996
  831. @@ -17,9 +17,11 @@
  832.  
  833.  srcdir = .
  834.  
  835. -CFLAGS = -g
  836. +# AmigaOS hack - suppress use of -g which isn't really supported yet.
  837. +CFLAGS = -O2
  838.  C_FLAGS = $(CFLAGS) -I. -I.. -I$(srcdir) -I$(srcdir)/..
  839. -CXXFLAGS = -g
  840. +# AmigaOS hack - suppress use of -g which isn't really supported yet.
  841. +CXXFLAGS = -O2
  842.  CC = gcc
  843.  CXX = gcc
  844.  
  845. @@ -161,7 +163,7 @@ tfformat: $(srcdir)/tfformat.c
  846.        -o tfformat $(srcdir)/tfformat.c $(IOSTDIOLIB)
  847.  
  848.  check-tfformat: tfformat
  849. -    ./tfformat
  850. +    -./tfformat
  851.  
  852.  tiformat: $(srcdir)/tiformat.c
  853.      $(CC) $(C_FLAGS) -DTEST_LIBIO -o tiformat $(srcdir)/tiformat.c $(IOSTDIOLIB)
  854. diff -rup --new-file baseline/fsf/libg++/librx/Makefile.in amiga/fsf/libg++/librx/Makefile.in
  855. --- baseline/fsf/libg++/librx/Makefile.in    Wed Sep 20 10:56:25 1995
  856. +++ amiga/fsf/libg++/librx/Makefile.in    Sat Sep 28 00:00:00 1996
  857. @@ -38,7 +38,7 @@ LIBCFLAGS = $(CFLAGS)
  858.  AR = ar
  859.  AR_FLAGS = rc
  860.  RANLIB = @RANLIB@
  861. -PICFLAG =
  862. +PICFLAG = -resident
  863.  
  864.  # @target_frag@
  865.  
  866. diff -rup --new-file baseline/fsf/libg++/librx/configure amiga/fsf/libg++/librx/configure
  867. --- baseline/fsf/libg++/librx/configure    Wed Oct  4 09:11:48 1995
  868. +++ amiga/fsf/libg++/librx/configure    Mon Sep 30 22:47:07 1996
  869. @@ -1,8 +1,8 @@
  870.  #! /bin/sh
  871.  
  872.  # Guess values for system-dependent variables and create Makefiles.
  873. -# Generated automatically using autoconf version 2.4 
  874. -# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  875. +# Generated automatically using autoconf version 2.10 
  876. +# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
  877.  #
  878.  # This configure script is free software; the Free Software Foundation
  879.  # gives unlimited permission to copy, distribute and modify it.
  880. @@ -33,9 +33,25 @@ target=NONE
  881.  verbose=
  882.  x_includes=NONE
  883.  x_libraries=NONE
  884. +bindir='${exec_prefix}/bin'
  885. +sbindir='${exec_prefix}/sbin'
  886. +libexecdir='${exec_prefix}/libexec'
  887. +datadir='${prefix}/share'
  888. +sysconfdir='${prefix}/etc'
  889. +sharedstatedir='${prefix}/com'
  890. +localstatedir='${prefix}/var'
  891. +libdir='${exec_prefix}/lib'
  892. +includedir='${prefix}/include'
  893. +oldincludedir='/usr/include'
  894. +infodir='${prefix}/info'
  895. +guidedir='${prefix}/guide'
  896. +psdir='${prefix}/ps'
  897. +dvidir='${prefix}/dvi'
  898. +mandir='${prefix}/man'
  899.  
  900.  # Initialize some other variables.
  901.  subdirs=
  902. +MFLAGS= MAKEFLAGS=
  903.  
  904.  ac_prev=
  905.  for ac_option
  906. @@ -57,9 +73,14 @@ do
  907.  
  908.    case "$ac_option" in
  909.  
  910. -  -build | --build | --buil | --bui | --bu | --b)
  911. +  -bindir | --bindir | --bindi | --bind | --bin | --bi)
  912. +    ac_prev=bindir ;;
  913. +  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  914. +    bindir="$ac_optarg" ;;
  915. +
  916. +  -build | --build | --buil | --bui | --bu)
  917.      ac_prev=build ;;
  918. -  -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  919. +  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  920.      build="$ac_optarg" ;;
  921.  
  922.    -cache-file | --cache-file | --cache-fil | --cache-fi \
  923. @@ -69,6 +90,12 @@ do
  924.    | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  925.      cache_file="$ac_optarg" ;;
  926.  
  927. +  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
  928. +    ac_prev=datadir ;;
  929. +  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
  930. +  | --da=*)
  931. +    datadir="$ac_optarg" ;;
  932. +
  933.    -disable-* | --disable-*)
  934.      ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  935.      # Reject names that are not valid shell variable names.
  936. @@ -119,12 +146,32 @@ Configuration:
  937.  Directory and file names:
  938.    --prefix=PREFIX         install architecture-independent files in PREFIX
  939.                            [$ac_default_prefix]
  940. -  --exec-prefix=PREFIX    install architecture-dependent files in PREFIX
  941. +  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  942.                            [same as prefix]
  943. +  --bindir=DIR            user executables in DIR [EPREFIX/bin]
  944. +  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  945. +  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  946. +  --datadir=DIR           read-only architecture-independent data in DIR
  947. +                          [PREFIX/share]
  948. +  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  949. +  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
  950. +                          [PREFIX/com]
  951. +  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  952. +  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  953. +  --includedir=DIR        C header files in DIR [PREFIX/include]
  954. +  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  955. +  --infodir=DIR           info documentation in DIR [PREFIX/info]
  956. +  --guidedir=DIR          Amigaguide documentation in DIR [PREFIX/guide]
  957. +  --psdir=DIR             postscript documentation in DIR [PREFIX/ps]
  958. +  --dvidir=DIR            TeX dvi documentation in DIR [PREFIX/dvi]
  959. +  --mandir=DIR            man documentation in DIR [PREFIX/man]
  960.    --srcdir=DIR            find the sources in DIR [configure dir or ..]
  961.    --program-prefix=PREFIX prepend PREFIX to installed program names
  962.    --program-suffix=SUFFIX append SUFFIX to installed program names
  963. -  --program-transform-name=PROGRAM run sed PROGRAM on installed program names
  964. +  --program-transform-name=PROGRAM
  965. +                          run sed PROGRAM on installed program names
  966. +EOF
  967. +    cat << EOF
  968.  Host type:
  969.    --build=BUILD           configure for building on BUILD [BUILD=HOST]
  970.    --host=HOST             configure for HOST [guessed]
  971. @@ -136,8 +183,10 @@ Features and packages:
  972.    --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  973.    --x-includes=DIR        X include files are in DIR
  974.    --x-libraries=DIR       X library files are in DIR
  975. ---enable and --with options recognized:$ac_help
  976.  EOF
  977. +    if test -n "$ac_help"; then
  978. +      echo "--enable and --with options recognized:$ac_help"
  979. +    fi
  980.      exit 0 ;;
  981.  
  982.    -host | --host | --hos | --ho)
  983. @@ -145,6 +194,56 @@ EOF
  984.    -host=* | --host=* | --hos=* | --ho=*)
  985.      host="$ac_optarg" ;;
  986.  
  987. +  -includedir | --includedir | --includedi | --included | --include \
  988. +  | --includ | --inclu | --incl | --inc)
  989. +    ac_prev=includedir ;;
  990. +  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  991. +  | --includ=* | --inclu=* | --incl=* | --inc=*)
  992. +    includedir="$ac_optarg" ;;
  993. +
  994. +  -infodir | --infodir | --infodi | --infod | --info | --inf)
  995. +    ac_prev=infodir ;;
  996. +  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  997. +    infodir="$ac_optarg" ;;
  998. +
  999. + -guidedir | --guidedir | --guidedi | --guided | --guide | --gui)
  1000. +   ac_prev=guidedir ;;
  1001. + -guidedir=* | --guidedir=* | --guidedi=* | --guided=* | --guide=* |--gui=*)+    guidedir="$ac_optarg" ;;
  1002. +
  1003. + -psdir | --psdir | --psdi | --psd | --ps)
  1004. +   ac_prev=psdir ;;
  1005. + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)+    psdir="$ac_optarg" ;;
  1006. +
  1007. + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
  1008. +   ac_prev=dvidir ;;
  1009. + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* |--dv=*)+    dvidir="$ac_optarg" ;;
  1010. +
  1011. +  -libdir | --libdir | --libdi | --libd)
  1012. +    ac_prev=libdir ;;
  1013. +  -libdir=* | --libdir=* | --libdi=* | --libd=*)
  1014. +    libdir="$ac_optarg" ;;
  1015. +
  1016. +  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  1017. +  | --libexe | --libex | --libe)
  1018. +    ac_prev=libexecdir ;;
  1019. +  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  1020. +  | --libexe=* | --libex=* | --libe=*)
  1021. +    libexecdir="$ac_optarg" ;;
  1022. +
  1023. +  -localstatedir | --localstatedir | --localstatedi | --localstated \
  1024. +  | --localstate | --localstat | --localsta | --localst \
  1025. +  | --locals | --local | --loca | --loc | --lo)
  1026. +    ac_prev=localstatedir ;;
  1027. +  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  1028. +  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
  1029. +  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
  1030. +    localstatedir="$ac_optarg" ;;
  1031. +
  1032. +  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  1033. +    ac_prev=mandir ;;
  1034. +  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  1035. +    mandir="$ac_optarg" ;;
  1036. +
  1037.    -nfp | --nfp | --nf)
  1038.      # Obsolete; use --without-fp.
  1039.      with_fp=no ;;
  1040. @@ -157,6 +256,15 @@ EOF
  1041.    | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  1042.      no_recursion=yes ;;
  1043.  
  1044. +  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  1045. +  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  1046. +  | --oldin | --oldi | --old | --ol | --o)
  1047. +    ac_prev=oldincludedir ;;
  1048. +  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  1049. +  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  1050. +  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  1051. +    oldincludedir="$ac_optarg" ;;
  1052. +
  1053.    -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  1054.      ac_prev=prefix ;;
  1055.    -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  1056. @@ -197,6 +305,23 @@ EOF
  1057.    | -silent | --silent | --silen | --sile | --sil)
  1058.      silent=yes ;;
  1059.  
  1060. +  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  1061. +    ac_prev=sbindir ;;
  1062. +  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  1063. +  | --sbi=* | --sb=*)
  1064. +    sbindir="$ac_optarg" ;;
  1065. +
  1066. +  -sharedstatedir | --sharedstatedir | --sharedstatedi \
  1067. +  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  1068. +  | --sharedst | --shareds | --shared | --share | --shar \
  1069. +  | --sha | --sh)
  1070. +    ac_prev=sharedstatedir ;;
  1071. +  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  1072. +  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  1073. +  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  1074. +  | --sha=* | --sh=*)
  1075. +    sharedstatedir="$ac_optarg" ;;
  1076. +
  1077.    -site | --site | --sit)
  1078.      ac_prev=site ;;
  1079.    -site=* | --site=* | --sit=*)
  1080. @@ -207,6 +332,13 @@ EOF
  1081.    -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  1082.      srcdir="$ac_optarg" ;;
  1083.  
  1084. +  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  1085. +  | --syscon | --sysco | --sysc | --sys | --sy)
  1086. +    ac_prev=sysconfdir ;;
  1087. +  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  1088. +  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  1089. +    sysconfdir="$ac_optarg" ;;
  1090. +
  1091.    -target | --target | --targe | --targ | --tar | --ta | --t)
  1092.      ac_prev=target ;;
  1093.    -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  1094. @@ -216,7 +348,7 @@ EOF
  1095.      verbose=yes ;;
  1096.  
  1097.    -version | --version | --versio | --versi | --vers)
  1098. -    echo "configure generated by autoconf version 2.4"
  1099. +    echo "configure generated by autoconf version 2.10"
  1100.      exit 0 ;;
  1101.  
  1102.    -with-* | --with-*)
  1103. @@ -262,7 +394,7 @@ EOF
  1104.    -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
  1105.      ;;
  1106.  
  1107. -  *) 
  1108. +  *)
  1109.      if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  1110.        echo "configure: warning: $ac_option: invalid host type" 1>&2
  1111.      fi
  1112. @@ -382,8 +514,8 @@ fi
  1113.  ac_ext=c
  1114.  # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  1115.  ac_cpp='$CPP $CPPFLAGS'
  1116. -ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5 2>&5'
  1117. -ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5 2>&5'
  1118. +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  1119. +ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  1120.  
  1121.  if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  1122.    # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  1123. @@ -417,7 +549,6 @@ else
  1124.      fi
  1125.    done
  1126.    IFS="$ac_save_ifs"
  1127. -  test -z "$ac_cv_prog_CC" && ac_cv_prog_CC="cc"
  1128.  fi
  1129.  fi
  1130.  CC="$ac_cv_prog_CC"
  1131. @@ -427,6 +558,55 @@ else
  1132.    echo "$ac_t""no" 1>&6
  1133.  fi
  1134.  
  1135. +if test -z "$CC"; then
  1136. +  # Extract the first word of "cc", so it can be a program name with args.
  1137. +set dummy cc; ac_word=$2
  1138. +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1139. +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  1140. +  echo $ac_n "(cached) $ac_c" 1>&6
  1141. +else
  1142. +  if test -n "$CC"; then
  1143. +  ac_cv_prog_CC="$CC" # Let the user override the test.
  1144. +else
  1145. +  IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1146. +  ac_prog_rejected=no
  1147. +  for ac_dir in $PATH; do
  1148. +    test -z "$ac_dir" && ac_dir=.
  1149. +    if test -f $ac_dir/$ac_word; then
  1150. +      if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
  1151. +        ac_prog_rejected=yes
  1152. +    continue
  1153. +      fi
  1154. +      ac_cv_prog_CC="cc"
  1155. +      break
  1156. +    fi
  1157. +  done
  1158. +  IFS="$ac_save_ifs"
  1159. +if test $ac_prog_rejected = yes; then
  1160. +  # We found a bogon in the path, so make sure we never use it.
  1161. +  set dummy $ac_cv_prog_CC
  1162. +  shift
  1163. +  if test $# -gt 0; then
  1164. +    # We chose a different compiler from the bogus one.
  1165. +    # However, it has the same basename, so the bogon will be chosen
  1166. +    # first if we set CC to just the basename; use the full file name.
  1167. +    shift
  1168. +    set dummy "$ac_dir/$ac_word" "$@"
  1169. +    shift
  1170. +    ac_cv_prog_CC="$@"
  1171. +  fi
  1172. +fi
  1173. +fi
  1174. +fi
  1175. +CC="$ac_cv_prog_CC"
  1176. +if test -n "$CC"; then
  1177. +  echo "$ac_t""$CC" 1>&6
  1178. +else
  1179. +  echo "$ac_t""no" 1>&6
  1180. +fi
  1181. +
  1182. +  test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
  1183. +fi
  1184.  
  1185.  echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
  1186.  if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
  1187. @@ -437,12 +617,13 @@ else
  1188.    yes;
  1189.  #endif
  1190.  EOF
  1191. -if ${CC-cc} -E conftest.c 2>&5 | egrep yes >/dev/null 2>&1; then
  1192. +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:621: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  1193.    ac_cv_prog_gcc=yes
  1194.  else
  1195.    ac_cv_prog_gcc=no
  1196.  fi
  1197.  fi
  1198. +
  1199.  echo "$ac_t""$ac_cv_prog_gcc" 1>&6
  1200.  if test $ac_cv_prog_gcc = yes; then
  1201.    GCC=yes
  1202. @@ -460,11 +641,12 @@ fi
  1203.  rm -f conftest*
  1204.  
  1205.  fi
  1206. -    echo "$ac_t""$ac_cv_prog_gcc_g" 1>&6
  1207. +
  1208. +echo "$ac_t""$ac_cv_prog_gcc_g" 1>&6
  1209.      if test $ac_cv_prog_gcc_g = yes; then
  1210. -      CFLAGS="-g -O"
  1211. +      CFLAGS="-g -O2"
  1212.      else
  1213. -      CFLAGS="-O"
  1214. +      CFLAGS="-O2"
  1215.      fi
  1216.    fi
  1217.  else
  1218. @@ -487,12 +669,13 @@ else
  1219.    # On the NeXT, cc -E runs the code through the compiler's parser,
  1220.    # not just through cpp.
  1221.    cat > conftest.$ac_ext <<EOF
  1222. -#line 491 "configure"
  1223. +#line 673 "configure"
  1224.  #include "confdefs.h"
  1225.  #include <assert.h>
  1226.  Syntax Error
  1227.  EOF
  1228. -eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1229. +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1230. +{ (eval echo configure:679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1231.  ac_err=`grep -v '^ *+' conftest.out`
  1232.  if test -z "$ac_err"; then
  1233.    :
  1234. @@ -501,12 +684,13 @@ else
  1235.    rm -rf conftest*
  1236.    CPP="${CC-cc} -E -traditional-cpp"
  1237.    cat > conftest.$ac_ext <<EOF
  1238. -#line 505 "configure"
  1239. +#line 688 "configure"
  1240.  #include "confdefs.h"
  1241.  #include <assert.h>
  1242.  Syntax Error
  1243.  EOF
  1244. -eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1245. +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1246. +{ (eval echo configure:694: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1247.  ac_err=`grep -v '^ *+' conftest.out`
  1248.  if test -z "$ac_err"; then
  1249.    :
  1250. @@ -580,6 +764,7 @@ ac_configure=$ac_aux_dir/configure # Thi
  1251.  # SunOS /usr/etc/install
  1252.  # IRIX /sbin/install
  1253.  # AIX /bin/install
  1254. +# AmigaOS /c/install
  1255.  # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  1256.  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  1257.  # ./install, which can be erroneously created by make from ./install.sh.
  1258. @@ -592,7 +777,7 @@ else
  1259.    for ac_dir in $PATH; do
  1260.      # Account for people who put trailing slashes in PATH elements.
  1261.      case "$ac_dir/" in
  1262. -    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
  1263. +    /|./|.//|/etc/*|/c/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
  1264.      *)
  1265.        # OSF1 and SCO ODT 3.0 have their own names for install.
  1266.        for ac_prog in ginstall installbsd scoinst install; do
  1267. @@ -612,10 +797,17 @@ else
  1268.      esac
  1269.    done
  1270.    IFS="$ac_save_ifs"
  1271. -  # As a last resort, use the slow shell script.
  1272. -  test -z "$ac_cv_path_install" && ac_cv_path_install="$ac_install_sh"
  1273. +
  1274.  fi
  1275. -  INSTALL="$ac_cv_path_install"
  1276. +  if test "${ac_cv_path_install+set}" = set; then
  1277. +    INSTALL="$ac_cv_path_install"
  1278. +  else
  1279. +    # As a last resort, use the slow shell script.  We don't cache a
  1280. +    # path for INSTALL within a source directory, because that will
  1281. +    # break other packages using the cache if that directory is
  1282. +    # removed, or if the path is relative.
  1283. +    INSTALL="$ac_install_sh"
  1284. +  fi
  1285.  fi
  1286.  echo "$ac_t""$INSTALL" 1>&6
  1287.  
  1288. @@ -641,11 +833,11 @@ else
  1289.    ac_cv_c_cross=yes
  1290.  else
  1291.  cat > conftest.$ac_ext <<EOF
  1292. -#line 645 "configure"
  1293. +#line 837 "configure"
  1294.  #include "confdefs.h"
  1295.  main(){return(0);}
  1296.  EOF
  1297. -eval $ac_link
  1298. +{ (eval echo configure:841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }
  1299.  if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1300.    ac_cv_c_cross=no
  1301.  else
  1302. @@ -654,8 +846,9 @@ fi
  1303.  fi
  1304.  rm -fr conftest*
  1305.  fi
  1306. -cross_compiling=$ac_cv_c_cross
  1307. +
  1308.  echo "$ac_t""$ac_cv_c_cross" 1>&6
  1309. +cross_compiling=$ac_cv_c_cross
  1310.  
  1311.  # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1312.  # for constant arguments.  Useless!
  1313. @@ -664,15 +857,15 @@ if eval "test \"`echo '$''{'ac_cv_header
  1314.    echo $ac_n "(cached) $ac_c" 1>&6
  1315.  else
  1316.    cat > conftest.$ac_ext <<EOF
  1317. -#line 668 "configure"
  1318. +#line 861 "configure"
  1319.  #include "confdefs.h"
  1320.  #include <alloca.h>
  1321. -int main() { return 0; }
  1322. +int main() { t(); return 0; }
  1323.  int t() {
  1324.  char *p = alloca(2 * sizeof(int));
  1325.  ; return 0; }
  1326.  EOF
  1327. -if eval $ac_link; then
  1328. +if { (eval echo configure:869: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
  1329.    rm -rf conftest*
  1330.    ac_cv_header_alloca_h=yes
  1331.  else
  1332. @@ -682,6 +875,7 @@ fi
  1333.  rm -f conftest*
  1334.  
  1335.  fi
  1336. +
  1337.  echo "$ac_t""$ac_cv_header_alloca_h" 1>&6
  1338.  if test $ac_cv_header_alloca_h = yes; then
  1339.    cat >> confdefs.h <<\EOF
  1340. @@ -695,7 +889,7 @@ if eval "test \"`echo '$''{'ac_cv_func_a
  1341.    echo $ac_n "(cached) $ac_c" 1>&6
  1342.  else
  1343.    cat > conftest.$ac_ext <<EOF
  1344. -#line 699 "configure"
  1345. +#line 893 "configure"
  1346.  #include "confdefs.h"
  1347.  
  1348.  #ifdef __GNUC__
  1349. @@ -714,12 +908,12 @@ char *alloca ();
  1350.  # endif
  1351.  #endif
  1352.  
  1353. -int main() { return 0; }
  1354. +int main() { t(); return 0; }
  1355.  int t() {
  1356.  char *p = (char *) alloca(1);
  1357.  ; return 0; }
  1358.  EOF
  1359. -if eval $ac_link; then
  1360. +if { (eval echo configure:917: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
  1361.    rm -rf conftest*
  1362.    ac_cv_func_alloca=yes
  1363.  else
  1364. @@ -729,6 +923,7 @@ fi
  1365.  rm -f conftest*
  1366.  
  1367.  fi
  1368. +
  1369.  echo "$ac_t""$ac_cv_func_alloca" 1>&6
  1370.  if test $ac_cv_func_alloca = yes; then
  1371.    cat >> confdefs.h <<\EOF
  1372. @@ -753,7 +948,7 @@ if eval "test \"`echo '$''{'ac_cv_os_cra
  1373.    echo $ac_n "(cached) $ac_c" 1>&6
  1374.  else
  1375.    cat > conftest.$ac_ext <<EOF
  1376. -#line 757 "configure"
  1377. +#line 952 "configure"
  1378.  #include "confdefs.h"
  1379.  #if defined(CRAY) && ! defined(CRAY2)
  1380.  webecray
  1381. @@ -773,6 +968,7 @@ fi
  1382.  rm -f conftest*
  1383.  
  1384.  fi
  1385. +
  1386.  echo "$ac_t""$ac_cv_os_cray" 1>&6
  1387.  if test $ac_cv_os_cray = yes; then
  1388.  for ac_func in _getb67 GETB67 getb67; do
  1389. @@ -781,15 +977,17 @@ if eval "test \"`echo '$''{'ac_cv_func_$
  1390.    echo $ac_n "(cached) $ac_c" 1>&6
  1391.  else
  1392.    cat > conftest.$ac_ext <<EOF
  1393. -#line 785 "configure"
  1394. +#line 981 "configure"
  1395.  #include "confdefs.h"
  1396.  /* System header to define __stub macros and hopefully few prototypes,
  1397.      which can conflict with char $ac_func(); below.  */
  1398.  #include <assert.h>
  1399.  /* Override any gcc2 internal prototype to avoid an error.  */
  1400. -char $ac_func(); 
  1401. +/* We use char because int might match the return type of a gcc2
  1402. +    builtin and then its argument prototype would still apply.  */
  1403. +char $ac_func();
  1404.  
  1405. -int main() { return 0; }
  1406. +int main() { t(); return 0; }
  1407.  int t() {
  1408.  
  1409.  /* The GNU C library defines this for functions which it implements
  1410. @@ -803,7 +1001,7 @@ $ac_func();
  1411.  
  1412.  ; return 0; }
  1413.  EOF
  1414. -if eval $ac_link; then
  1415. +if { (eval echo configure:1005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
  1416.    rm -rf conftest*
  1417.    eval "ac_cv_func_$ac_func=yes"
  1418.  else
  1419. @@ -835,7 +1033,7 @@ else
  1420.    ac_cv_c_stack_direction=0
  1421.  else
  1422.  cat > conftest.$ac_ext <<EOF
  1423. -#line 839 "configure"
  1424. +#line 1037 "configure"
  1425.  #include "confdefs.h"
  1426.  find_stack_direction ()
  1427.  {
  1428. @@ -854,7 +1052,7 @@ main ()
  1429.    exit (find_stack_direction() < 0);
  1430.  }
  1431.  EOF
  1432. -eval $ac_link
  1433. +{ (eval echo configure:1056: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }
  1434.  if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1435.    ac_cv_c_stack_direction=1
  1436.  else
  1437. @@ -863,6 +1061,7 @@ fi
  1438.  fi
  1439.  rm -fr conftest*
  1440.  fi
  1441. +
  1442.  echo "$ac_t""$ac_cv_c_stack_direction" 1>&6
  1443.  cat >> confdefs.h <<EOF
  1444.  #define STACK_DIRECTION $ac_cv_c_stack_direction
  1445. @@ -876,14 +1075,15 @@ if eval "test \"`echo '$''{'ac_cv_header
  1446.    echo $ac_n "(cached) $ac_c" 1>&6
  1447.  else
  1448.    cat > conftest.$ac_ext <<EOF
  1449. -#line 880 "configure"
  1450. +#line 1079 "configure"
  1451.  #include "confdefs.h"
  1452.  #include <stdlib.h>
  1453.  #include <stdarg.h>
  1454.  #include <string.h>
  1455.  #include <float.h>
  1456.  EOF
  1457. -eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1458. +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1459. +{ (eval echo configure:1087: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1460.  ac_err=`grep -v '^ *+' conftest.out`
  1461.  if test -z "$ac_err"; then
  1462.    rm -rf conftest*
  1463. @@ -898,7 +1098,7 @@ rm -f conftest*
  1464.  if test $ac_cv_header_stdc = yes; then
  1465.    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1466.  cat > conftest.$ac_ext <<EOF
  1467. -#line 902 "configure"
  1468. +#line 1102 "configure"
  1469.  #include "confdefs.h"
  1470.  #include <string.h>
  1471.  EOF
  1472. @@ -916,7 +1116,7 @@ fi
  1473.  if test $ac_cv_header_stdc = yes; then
  1474.    # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1475.  cat > conftest.$ac_ext <<EOF
  1476. -#line 920 "configure"
  1477. +#line 1120 "configure"
  1478.  #include "confdefs.h"
  1479.  #include <stdlib.h>
  1480.  EOF
  1481. @@ -934,10 +1134,10 @@ fi
  1482.  if test $ac_cv_header_stdc = yes; then
  1483.    # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  1484.  if test "$cross_compiling" = yes; then
  1485. -  ac_cv_header_stdc=no
  1486. +  :
  1487.  else
  1488.  cat > conftest.$ac_ext <<EOF
  1489. -#line 941 "configure"
  1490. +#line 1141 "configure"
  1491.  #include "confdefs.h"
  1492.  #include <ctype.h>
  1493.  #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1494. @@ -948,7 +1148,7 @@ if (XOR (islower (i), ISLOWER (i)) || to
  1495.  exit (0); }
  1496.  
  1497.  EOF
  1498. -eval $ac_link
  1499. +{ (eval echo configure:1152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }
  1500.  if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1501.    :
  1502.  else
  1503. @@ -958,6 +1158,7 @@ fi
  1504.  rm -fr conftest*
  1505.  fi
  1506.  fi
  1507. +
  1508.  echo "$ac_t""$ac_cv_header_stdc" 1>&6
  1509.  if test $ac_cv_header_stdc = yes; then
  1510.    cat >> confdefs.h <<\EOF
  1511. @@ -974,11 +1175,12 @@ if eval "test \"`echo '$''{'ac_cv_header
  1512.    echo $ac_n "(cached) $ac_c" 1>&6
  1513.  else
  1514.    cat > conftest.$ac_ext <<EOF
  1515. -#line 978 "configure"
  1516. +#line 1179 "configure"
  1517.  #include "confdefs.h"
  1518.  #include <$ac_hdr>
  1519.  EOF
  1520. -eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1521. +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1522. +{ (eval echo configure:1184: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1523.  ac_err=`grep -v '^ *+' conftest.out`
  1524.  if test -z "$ac_err"; then
  1525.    rm -rf conftest*
  1526. @@ -992,7 +1194,7 @@ rm -f conftest*
  1527.  fi
  1528.  if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  1529.    echo "$ac_t""yes" 1>&6
  1530. -    ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  1531. +    ac_tr_hdr=HAVE_`echo $ac_hdr | tr 'abcdefghijklmnopqrstuvwxyz./\055' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ___'`
  1532.    cat >> confdefs.h <<EOF
  1533.  #define $ac_tr_hdr 1
  1534.  EOF
  1535. @@ -1010,7 +1212,7 @@ done
  1536.  #
  1537.  # The rules are:
  1538.  # 1. You are not allowed to specify --host, --target, and nonopt at the
  1539. -#    same time. 
  1540. +#    same time.
  1541.  # 2. Host defaults to nonopt.
  1542.  # 3. If nonopt is not specified, then host defaults to the current host,
  1543.  #    as determined by config.guess.
  1544. @@ -1160,7 +1362,7 @@ trap 'rm -f $CONFIG_STATUS conftest*; ex
  1545.  # Protect against shell expansion while executing Makefile rules.
  1546.  # Protect against Makefile macro expansion.
  1547.  cat > conftest.defs <<\EOF
  1548. -s%#define \([A-Za-z_][A-Za-z0-9_]*\) \(.*\)%-D\1=\2%g
  1549. +s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
  1550.  s%[     `~#$^&*(){}\\|;'"<>?]%\\&%g
  1551.  s%\[%\\&%g
  1552.  s%\]%\\&%g
  1553. @@ -1174,7 +1376,9 @@ rm -f conftest.defs
  1554.  : ${CONFIG_STATUS=./config.status}
  1555.  
  1556.  echo creating $CONFIG_STATUS
  1557. -rm -f $CONFIG_STATUS
  1558. +# Some systems, like AmigaOS, won't allow you to remove a script that is
  1559. +# being executed, so just move it out of the way instead.
  1560. +if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
  1561.  cat > $CONFIG_STATUS <<EOF
  1562.  #! /bin/sh
  1563.  # Generated automatically by configure.
  1564. @@ -1195,7 +1399,7 @@ do
  1565.      echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  1566.      exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  1567.    -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1568. -    echo "$CONFIG_STATUS generated by autoconf version 2.4"
  1569. +    echo "$CONFIG_STATUS generated by autoconf version 2.10"
  1570.      exit 0 ;;
  1571.    -help | --help | --hel | --he | --h)
  1572.      echo "\$ac_cs_usage"; exit 0 ;;
  1573. @@ -1207,10 +1411,12 @@ ac_given_srcdir=$srcdir
  1574.  ac_given_INSTALL="$INSTALL"
  1575.  
  1576.  trap 'rm -fr `echo "Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
  1577. +EOF
  1578. +cat >> $CONFIG_STATUS <<EOF
  1579.  
  1580. -# Protect against being on the right side of a sed subst in config.status. 
  1581. -sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\\\&%]/\\\\&/g; 
  1582. - s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
  1583. +# Protect against being on the right side of a sed subst in config.status.
  1584. +sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
  1585. + s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
  1586.  $ac_vpsub
  1587.  $extrasub
  1588.  s%@CFLAGS@%$CFLAGS%g
  1589. @@ -1222,6 +1428,21 @@ s%@LIBS@%$LIBS%g
  1590.  s%@exec_prefix@%$exec_prefix%g
  1591.  s%@prefix@%$prefix%g
  1592.  s%@program_transform_name@%$program_transform_name%g
  1593. +s%@bindir@%$bindir%g
  1594. +s%@sbindir@%$sbindir%g
  1595. +s%@libexecdir@%$libexecdir%g
  1596. +s%@datadir@%$datadir%g
  1597. +s%@sysconfdir@%$sysconfdir%g
  1598. +s%@sharedstatedir@%$sharedstatedir%g
  1599. +s%@localstatedir@%$localstatedir%g
  1600. +s%@libdir@%$libdir%g
  1601. +s%@includedir@%$includedir%g
  1602. +s%@oldincludedir@%$oldincludedir%g
  1603. +s%@infodir@%$infodir%g
  1604. +s%@guidedir@%$guidedir%g
  1605. +s%@psdir@%$psdir%g
  1606. +s%@dvidir@%$dvidir%g
  1607. +s%@mandir@%$mandir%g
  1608.  s%@CC@%$CC%g
  1609.  s%@CPP@%$CPP%g
  1610.  s%@RANLIB@%$RANLIB%g
  1611. @@ -1311,6 +1532,7 @@ rm -f conftest.subs
  1612.  exit 0
  1613.  EOF
  1614.  chmod +x $CONFIG_STATUS
  1615. +rm -f CONFIG.STATUS.old
  1616.  rm -fr confdefs* $ac_clean_files
  1617.  test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
  1618.  
  1619. diff -rup --new-file baseline/fsf/libg++/manifests/bin amiga/fsf/libg++/manifests/bin
  1620. --- baseline/fsf/libg++/manifests/bin    Wed Dec 31 17:00:00 1969
  1621. +++ amiga/fsf/libg++/manifests/bin    Sat Sep 28 00:00:00 1996
  1622. @@ -0,0 +1,329 @@
  1623. +COPYING
  1624. +COPYING.LIB
  1625. +COPYING.LIB.info
  1626. +COPYING.info
  1627. +bin/genclass
  1628. +bin/gperf
  1629. +lib/g++-include/ACG.h
  1630. +lib/g++-include/AllocRing.h
  1631. +lib/g++-include/Binomial.h
  1632. +lib/g++-include/BitSet.h
  1633. +lib/g++-include/BitString.h
  1634. +lib/g++-include/Complex.h
  1635. +lib/g++-include/CursesW.h
  1636. +lib/g++-include/DLList.h
  1637. +lib/g++-include/DiscUnif.h
  1638. +lib/g++-include/Erlang.h
  1639. +lib/g++-include/Fix.h
  1640. +lib/g++-include/Fix16.h
  1641. +lib/g++-include/Fix24.h
  1642. +lib/g++-include/Geom.h
  1643. +lib/g++-include/GetOpt.h
  1644. +lib/g++-include/HypGeom.h
  1645. +lib/g++-include/Incremental.h
  1646. +lib/g++-include/Integer.h
  1647. +lib/g++-include/LogNorm.h
  1648. +lib/g++-include/MLCG.h
  1649. +lib/g++-include/NegExp.h
  1650. +lib/g++-include/Normal.h
  1651. +lib/g++-include/Obstack.h
  1652. +lib/g++-include/Pix.h
  1653. +lib/g++-include/PlotFile.h
  1654. +lib/g++-include/Poisson.h
  1655. +lib/g++-include/RNG.h
  1656. +lib/g++-include/Random.h
  1657. +lib/g++-include/Rational.h
  1658. +lib/g++-include/Regex.h
  1659. +lib/g++-include/RndInt.h
  1660. +lib/g++-include/SFile.h
  1661. +lib/g++-include/SLList.h
  1662. +lib/g++-include/SmplHist.h
  1663. +lib/g++-include/SmplStat.h
  1664. +lib/g++-include/String.h
  1665. +lib/g++-include/Uniform.h
  1666. +lib/g++-include/Weibull.h
  1667. +lib/g++-include/algo.h
  1668. +lib/g++-include/algobase.h
  1669. +lib/g++-include/algorithm
  1670. +lib/g++-include/bitdo1.h
  1671. +lib/g++-include/bitdo2.h
  1672. +lib/g++-include/bitprims.h
  1673. +lib/g++-include/bool.h
  1674. +lib/g++-include/builtin.h
  1675. +lib/g++-include/builtinbuf.h
  1676. +lib/g++-include/bvector.h
  1677. +lib/g++-include/cassert
  1678. +lib/g++-include/cctype
  1679. +lib/g++-include/cerrno
  1680. +lib/g++-include/cfloat
  1681. +lib/g++-include/ciso646
  1682. +lib/g++-include/climits
  1683. +lib/g++-include/clocale
  1684. +lib/g++-include/cmath
  1685. +lib/g++-include/compare.h
  1686. +lib/g++-include/complex
  1687. +lib/g++-include/csetjmp
  1688. +lib/g++-include/csignal
  1689. +lib/g++-include/cstdarg
  1690. +lib/g++-include/cstddef
  1691. +lib/g++-include/cstdio
  1692. +lib/g++-include/cstdlib
  1693. +lib/g++-include/cstring
  1694. +lib/g++-include/ctime
  1695. +lib/g++-include/cwchar
  1696. +lib/g++-include/cwctype
  1697. +lib/g++-include/defalloc.h
  1698. +lib/g++-include/deque
  1699. +lib/g++-include/deque.h
  1700. +lib/g++-include/editbuf.h
  1701. +lib/g++-include/exception
  1702. +lib/g++-include/faralloc.h
  1703. +lib/g++-include/fdeque.h
  1704. +lib/g++-include/flist.h
  1705. +lib/g++-include/floatio.h
  1706. +lib/g++-include/fmap.h
  1707. +lib/g++-include/fmultmap.h
  1708. +lib/g++-include/fmultset.h
  1709. +lib/g++-include/fset.h
  1710. +lib/g++-include/fstream.h
  1711. +lib/g++-include/function.h
  1712. +lib/g++-include/functional
  1713. +lib/g++-include/gen/AVLMap.ccP
  1714. +lib/g++-include/gen/AVLMap.hP
  1715. +lib/g++-include/gen/AVLSet.ccP
  1716. +lib/g++-include/gen/AVLSet.hP
  1717. +lib/g++-include/gen/AVec.ccP
  1718. +lib/g++-include/gen/AVec.hP
  1719. +lib/g++-include/gen/BSTSet.ccP
  1720. +lib/g++-include/gen/BSTSet.hP
  1721. +lib/g++-include/gen/Bag.ccP
  1722. +lib/g++-include/gen/Bag.hP
  1723. +lib/g++-include/gen/CHBag.ccP
  1724. +lib/g++-include/gen/CHBag.hP
  1725. +lib/g++-include/gen/CHMap.ccP
  1726. +lib/g++-include/gen/CHMap.hP
  1727. +lib/g++-include/gen/CHNode.ccP
  1728. +lib/g++-include/gen/CHNode.hP
  1729. +lib/g++-include/gen/CHSet.ccP
  1730. +lib/g++-include/gen/CHSet.hP
  1731. +lib/g++-include/gen/DLDeque.ccP
  1732. +lib/g++-include/gen/DLDeque.hP
  1733. +lib/g++-include/gen/DLList.ccP
  1734. +lib/g++-include/gen/DLList.hP
  1735. +lib/g++-include/gen/Deque.ccP
  1736. +lib/g++-include/gen/Deque.hP
  1737. +lib/g++-include/gen/FPQueue.ccP
  1738. +lib/g++-include/gen/FPQueue.hP
  1739. +lib/g++-include/gen/FPStack.ccP
  1740. +lib/g++-include/gen/FPStack.hP
  1741. +lib/g++-include/gen/FPlex.ccP
  1742. +lib/g++-include/gen/FPlex.hP
  1743. +lib/g++-include/gen/List.ccP
  1744. +lib/g++-include/gen/List.hP
  1745. +lib/g++-include/gen/MPlex.ccP
  1746. +lib/g++-include/gen/MPlex.hP
  1747. +lib/g++-include/gen/Map.ccP
  1748. +lib/g++-include/gen/Map.hP
  1749. +lib/g++-include/gen/OSLBag.ccP
  1750. +lib/g++-include/gen/OSLBag.hP
  1751. +lib/g++-include/gen/OSLSet.ccP
  1752. +lib/g++-include/gen/OSLSet.hP
  1753. +lib/g++-include/gen/OXPBag.ccP
  1754. +lib/g++-include/gen/OXPBag.hP
  1755. +lib/g++-include/gen/OXPSet.ccP
  1756. +lib/g++-include/gen/OXPSet.hP
  1757. +lib/g++-include/gen/PHPQ.ccP
  1758. +lib/g++-include/gen/PHPQ.hP
  1759. +lib/g++-include/gen/PQ.ccP
  1760. +lib/g++-include/gen/PQ.hP
  1761. +lib/g++-include/gen/PSList.hP
  1762. +lib/g++-include/gen/PVec.hP
  1763. +lib/g++-include/gen/Plex.ccP
  1764. +lib/g++-include/gen/Plex.hP
  1765. +lib/g++-include/gen/Queue.ccP
  1766. +lib/g++-include/gen/Queue.hP
  1767. +lib/g++-include/gen/RAVLMap.ccP
  1768. +lib/g++-include/gen/RAVLMap.hP
  1769. +lib/g++-include/gen/RPlex.ccP
  1770. +lib/g++-include/gen/RPlex.hP
  1771. +lib/g++-include/gen/SLBag.ccP
  1772. +lib/g++-include/gen/SLBag.hP
  1773. +lib/g++-include/gen/SLList.ccP
  1774. +lib/g++-include/gen/SLList.hP
  1775. +lib/g++-include/gen/SLQueue.ccP
  1776. +lib/g++-include/gen/SLQueue.hP
  1777. +lib/g++-include/gen/SLSet.ccP
  1778. +lib/g++-include/gen/SLSet.hP
  1779. +lib/g++-include/gen/SLStack.ccP
  1780. +lib/g++-include/gen/SLStack.hP
  1781. +lib/g++-include/gen/Set.ccP
  1782. +lib/g++-include/gen/Set.hP
  1783. +lib/g++-include/gen/SkipBag.ccP
  1784. +lib/g++-include/gen/SkipBag.hP
  1785. +lib/g++-include/gen/SkipMap.ccP
  1786. +lib/g++-include/gen/SkipMap.hP
  1787. +lib/g++-include/gen/SkipSet.ccP
  1788. +lib/g++-include/gen/SkipSet.hP
  1789. +lib/g++-include/gen/SplayBag.ccP
  1790. +lib/g++-include/gen/SplayBag.hP
  1791. +lib/g++-include/gen/SplayMap.ccP
  1792. +lib/g++-include/gen/SplayMap.hP
  1793. +lib/g++-include/gen/SplayNode.ccP
  1794. +lib/g++-include/gen/SplayNode.hP
  1795. +lib/g++-include/gen/SplayPQ.ccP
  1796. +lib/g++-include/gen/SplayPQ.hP
  1797. +lib/g++-include/gen/SplaySet.ccP
  1798. +lib/g++-include/gen/SplaySet.hP
  1799. +lib/g++-include/gen/Stack.ccP
  1800. +lib/g++-include/gen/Stack.hP
  1801. +lib/g++-include/gen/VHBag.ccP
  1802. +lib/g++-include/gen/VHBag.hP
  1803. +lib/g++-include/gen/VHMap.ccP
  1804. +lib/g++-include/gen/VHMap.hP
  1805. +lib/g++-include/gen/VHSet.ccP
  1806. +lib/g++-include/gen/VHSet.hP
  1807. +lib/g++-include/gen/VOHSet.ccP
  1808. +lib/g++-include/gen/VOHSet.hP
  1809. +lib/g++-include/gen/VQueue.ccP
  1810. +lib/g++-include/gen/VQueue.hP
  1811. +lib/g++-include/gen/VStack.ccP
  1812. +lib/g++-include/gen/VStack.hP
  1813. +lib/g++-include/gen/Vec.ccP
  1814. +lib/g++-include/gen/Vec.hP
  1815. +lib/g++-include/gen/XPBag.ccP
  1816. +lib/g++-include/gen/XPBag.hP
  1817. +lib/g++-include/gen/XPDeque.ccP
  1818. +lib/g++-include/gen/XPDeque.hP
  1819. +lib/g++-include/gen/XPPQ.ccP
  1820. +lib/g++-include/gen/XPPQ.hP
  1821. +lib/g++-include/gen/XPQueue.ccP
  1822. +lib/g++-include/gen/XPQueue.hP
  1823. +lib/g++-include/gen/XPSet.ccP
  1824. +lib/g++-include/gen/XPSet.hP
  1825. +lib/g++-include/gen/XPStack.ccP
  1826. +lib/g++-include/gen/XPStack.hP
  1827. +lib/g++-include/gen/XPlex.ccP
  1828. +lib/g++-include/gen/XPlex.hP
  1829. +lib/g++-include/gen/defs.hP
  1830. +lib/g++-include/gen/intSList.hP
  1831. +lib/g++-include/gen/intVec.hP
  1832. +lib/g++-include/generic.h
  1833. +lib/g++-include/getpagesize.h
  1834. +lib/g++-include/hdeque.h
  1835. +lib/g++-include/heap.h
  1836. +lib/g++-include/hlist.h
  1837. +lib/g++-include/hmap.h
  1838. +lib/g++-include/hmultmap.h
  1839. +lib/g++-include/hmultset.h
  1840. +lib/g++-include/hset.h
  1841. +lib/g++-include/hugalloc.h
  1842. +lib/g++-include/hvector.h
  1843. +lib/g++-include/indstream.h
  1844. +lib/g++-include/iolibio.h
  1845. +lib/g++-include/iomanip.h
  1846. +lib/g++-include/iostdio.h
  1847. +lib/g++-include/iostream.h
  1848. +lib/g++-include/iostreamP.h
  1849. +lib/g++-include/istream.h
  1850. +lib/g++-include/iterator
  1851. +lib/g++-include/iterator.h
  1852. +lib/g++-include/lbvector.h
  1853. +lib/g++-include/ldeque.h
  1854. +lib/g++-include/libc.h
  1855. +lib/g++-include/libio.h
  1856. +lib/g++-include/libioP.h
  1857. +lib/g++-include/list
  1858. +lib/g++-include/list.h
  1859. +lib/g++-include/llist.h
  1860. +lib/g++-include/lmap.h
  1861. +lib/g++-include/lmultmap.h
  1862. +lib/g++-include/lmultset.h
  1863. +lib/g++-include/lngalloc.h
  1864. +lib/g++-include/lset.h
  1865. +lib/g++-include/map
  1866. +lib/g++-include/map.h
  1867. +lib/g++-include/memory
  1868. +lib/g++-include/minmax.h
  1869. +lib/g++-include/multimap.h
  1870. +lib/g++-include/multiset.h
  1871. +lib/g++-include/neralloc.h
  1872. +lib/g++-include/new
  1873. +lib/g++-include/new.h
  1874. +lib/g++-include/nmap.h
  1875. +lib/g++-include/nmultmap.h
  1876. +lib/g++-include/nmultset.h
  1877. +lib/g++-include/nset.h
  1878. +lib/g++-include/numeric
  1879. +lib/g++-include/osfcn.h
  1880. +lib/g++-include/ostream.h
  1881. +lib/g++-include/pair.h
  1882. +lib/g++-include/parsestream.h
  1883. +lib/g++-include/pfstream.h
  1884. +lib/g++-include/procbuf.h
  1885. +lib/g++-include/projectn.h
  1886. +lib/g++-include/queue
  1887. +lib/g++-include/set
  1888. +lib/g++-include/set.h
  1889. +lib/g++-include/stack
  1890. +lib/g++-include/stack.h
  1891. +lib/g++-include/std.h
  1892. +lib/g++-include/std/bastring.cc
  1893. +lib/g++-include/std/bastring.h
  1894. +lib/g++-include/std/cassert.h
  1895. +lib/g++-include/std/cctype.h
  1896. +lib/g++-include/std/cerrno.h
  1897. +lib/g++-include/std/cfloat.h
  1898. +lib/g++-include/std/cinst.h
  1899. +lib/g++-include/std/ciso646.h
  1900. +lib/g++-include/std/climits.h
  1901. +lib/g++-include/std/clocale.h
  1902. +lib/g++-include/std/cmath.h
  1903. +lib/g++-include/std/complex.h
  1904. +lib/g++-include/std/complext.cc
  1905. +lib/g++-include/std/complext.h
  1906. +lib/g++-include/std/csetjmp.h
  1907. +lib/g++-include/std/csignal.h
  1908. +lib/g++-include/std/cstdarg.h
  1909. +lib/g++-include/std/cstddef.h
  1910. +lib/g++-include/std/cstdio.h
  1911. +lib/g++-include/std/cstdlib.h
  1912. +lib/g++-include/std/cstring.h
  1913. +lib/g++-include/std/ctime.h
  1914. +lib/g++-include/std/cwchar.h
  1915. +lib/g++-include/std/cwctype.h
  1916. +lib/g++-include/std/dcomplex.h
  1917. +lib/g++-include/std/exception.h
  1918. +lib/g++-include/std/fcomplex.h
  1919. +lib/g++-include/std/ldcomplex.h
  1920. +lib/g++-include/std/new.h
  1921. +lib/g++-include/std/sinst.h
  1922. +lib/g++-include/std/stddef.h
  1923. +lib/g++-include/std/stdexcept.h
  1924. +lib/g++-include/std/straits.h
  1925. +lib/g++-include/std/string.h
  1926. +lib/g++-include/std/typeinfo.h
  1927. +lib/g++-include/stddef
  1928. +lib/g++-include/stdexcept
  1929. +lib/g++-include/stdiostream.h
  1930. +lib/g++-include/stl.h
  1931. +lib/g++-include/strclass.h
  1932. +lib/g++-include/stream.h
  1933. +lib/g++-include/streambuf.h
  1934. +lib/g++-include/strfile.h
  1935. +lib/g++-include/string
  1936. +lib/g++-include/strstream.h
  1937. +lib/g++-include/swap.h
  1938. +lib/g++-include/sysent.h
  1939. +lib/g++-include/tempbuf.h
  1940. +lib/g++-include/tree.h
  1941. +lib/g++-include/typeinfo
  1942. +lib/g++-include/typemacros.h
  1943. +lib/g++-include/utility
  1944. +lib/g++-include/vector
  1945. +lib/g++-include/vector.h
  1946. +lib/libg++.a
  1947. +lib/libiberty.a
  1948. +lib/libstdc++.a
  1949. +m68k-amigaos/include/_G_config.h
  1950. +man/man1/configure.1
  1951. +man/man1/gperf.1
  1952. diff -rup --new-file baseline/fsf/libg++/manifests/src amiga/fsf/libg++/manifests/src
  1953. --- baseline/fsf/libg++/manifests/src    Wed Dec 31 17:00:00 1969
  1954. +++ amiga/fsf/libg++/manifests/src    Sat Sep 28 00:00:00 1996
  1955. @@ -0,0 +1,1103 @@
  1956. +fsf/libg++/COPYING
  1957. +fsf/libg++/COPYING.LIB
  1958. +fsf/libg++/ChangeLog.amiga
  1959. +fsf/libg++/Makefile.in
  1960. +fsf/libg++/Product-Info
  1961. +fsf/libg++/README
  1962. +fsf/libg++/cfg-ml-com.in
  1963. +fsf/libg++/cfg-ml-pos.in
  1964. +fsf/libg++/config.guess
  1965. +fsf/libg++/config.sub
  1966. +fsf/libg++/config/ChangeLog
  1967. +fsf/libg++/config/mh-a68bsd
  1968. +fsf/libg++/config/mh-aix386
  1969. +fsf/libg++/config/mh-apollo68
  1970. +fsf/libg++/config/mh-cxux
  1971. +fsf/libg++/config/mh-decstation
  1972. +fsf/libg++/config/mh-delta88
  1973. +fsf/libg++/config/mh-dgux
  1974. +fsf/libg++/config/mh-go32
  1975. +fsf/libg++/config/mh-hp300
  1976. +fsf/libg++/config/mh-hpux
  1977. +fsf/libg++/config/mh-hpux8
  1978. +fsf/libg++/config/mh-i386win32
  1979. +fsf/libg++/config/mh-irix4
  1980. +fsf/libg++/config/mh-irix5
  1981. +fsf/libg++/config/mh-linux
  1982. +fsf/libg++/config/mh-lynxos
  1983. +fsf/libg++/config/mh-lynxrs6k
  1984. +fsf/libg++/config/mh-ncr3000
  1985. +fsf/libg++/config/mh-ncrsvr43
  1986. +fsf/libg++/config/mh-papic
  1987. +fsf/libg++/config/mh-riscos
  1988. +fsf/libg++/config/mh-sco
  1989. +fsf/libg++/config/mh-solaris
  1990. +fsf/libg++/config/mh-sparcpic
  1991. +fsf/libg++/config/mh-sun3
  1992. +fsf/libg++/config/mh-sysv
  1993. +fsf/libg++/config/mh-sysv4
  1994. +fsf/libg++/config/mh-vaxult2
  1995. +fsf/libg++/config/mh-x86pic
  1996. +fsf/libg++/config/mpw-mh-mpw
  1997. +fsf/libg++/config/mt-amigaos
  1998. +fsf/libg++/config/mt-netware
  1999. +fsf/libg++/config/mt-papic
  2000. +fsf/libg++/config/mt-sparcpic
  2001. +fsf/libg++/config/mt-v810
  2002. +fsf/libg++/config/mt-x86pic
  2003. +fsf/libg++/configure
  2004. +fsf/libg++/configure.in
  2005. +fsf/libg++/etc/Makefile.in
  2006. +fsf/libg++/etc/cfg-paper.info
  2007. +fsf/libg++/etc/cfg-paper.texi
  2008. +fsf/libg++/etc/configure.in
  2009. +fsf/libg++/etc/configure.info
  2010. +fsf/libg++/etc/configure.info-1
  2011. +fsf/libg++/etc/configure.info-2
  2012. +fsf/libg++/etc/configure.man
  2013. +fsf/libg++/etc/configure.texi
  2014. +fsf/libg++/etc/make-stds.texi
  2015. +fsf/libg++/etc/standards.info
  2016. +fsf/libg++/etc/standards.info-1
  2017. +fsf/libg++/etc/standards.info-2
  2018. +fsf/libg++/etc/standards.texi
  2019. +fsf/libg++/include/COPYING
  2020. +fsf/libg++/include/ChangeLog
  2021. +fsf/libg++/include/ansidecl.h
  2022. +fsf/libg++/include/demangle.h
  2023. +fsf/libg++/include/floatformat.h
  2024. +fsf/libg++/include/getopt.h
  2025. +fsf/libg++/include/libiberty.h
  2026. +fsf/libg++/include/obstack.h
  2027. +fsf/libg++/install.sh
  2028. +fsf/libg++/libg++/ChangeLog
  2029. +fsf/libg++/libg++/Makefile.in
  2030. +fsf/libg++/libg++/NEWS
  2031. +fsf/libg++/libg++/README
  2032. +fsf/libg++/libg++/README.SHLIB
  2033. +fsf/libg++/libg++/TODO
  2034. +fsf/libg++/libg++/config.shared
  2035. +fsf/libg++/libg++/config/aix.ml
  2036. +fsf/libg++/libg++/config/dec-osf.ml
  2037. +fsf/libg++/libg++/config/elf.ml
  2038. +fsf/libg++/libg++/config/elfshlibm.ml
  2039. +fsf/libg++/libg++/config/hpux.ml
  2040. +fsf/libg++/libg++/config/irix5.ml
  2041. +fsf/libg++/libg++/config/linux.ml
  2042. +fsf/libg++/libg++/config/linux.mt
  2043. +fsf/libg++/libg++/config/sol2shm.ml
  2044. +fsf/libg++/libg++/config/solaris2.mt
  2045. +fsf/libg++/libg++/config/sunos4.ml
  2046. +fsf/libg++/libg++/configure.in
  2047. +fsf/libg++/libg++/etc/ADT-examples/Makefile.in
  2048. +fsf/libg++/libg++/etc/ADT-examples/Patmain.cc
  2049. +fsf/libg++/libg++/etc/ADT-examples/Patricia.cc
  2050. +fsf/libg++/libg++/etc/ADT-examples/Patricia.h
  2051. +fsf/libg++/libg++/etc/ADT-examples/configure.in
  2052. +fsf/libg++/libg++/etc/ADT-examples/depend
  2053. +fsf/libg++/libg++/etc/ADT-examples/genPatkey.cc
  2054. +fsf/libg++/libg++/etc/ADT-examples/generic-q.cc
  2055. +fsf/libg++/libg++/etc/ADT-examples/keyhash.cc
  2056. +fsf/libg++/libg++/etc/ADT-examples/kmp.cc
  2057. +fsf/libg++/libg++/etc/ADT-examples/search.cc
  2058. +fsf/libg++/libg++/etc/ADT-examples/tsort.cc
  2059. +fsf/libg++/libg++/etc/ADT-examples/tsortinp.cc
  2060. +fsf/libg++/libg++/etc/ChangeLog
  2061. +fsf/libg++/libg++/etc/HINTS
  2062. +fsf/libg++/libg++/etc/Makefile.in
  2063. +fsf/libg++/libg++/etc/PlotFile3D/Makefile.in
  2064. +fsf/libg++/libg++/etc/PlotFile3D/PlotFile3D.cc
  2065. +fsf/libg++/libg++/etc/PlotFile3D/PlotFile3D.h
  2066. +fsf/libg++/libg++/etc/PlotFile3D/README
  2067. +fsf/libg++/libg++/etc/PlotFile3D/Vec3D.h
  2068. +fsf/libg++/libg++/etc/PlotFile3D/configure.in
  2069. +fsf/libg++/libg++/etc/PlotFile3D/depend
  2070. +fsf/libg++/libg++/etc/PlotFile3D/tPlotFile3D.cc
  2071. +fsf/libg++/libg++/etc/benchmarks/ChangeLog
  2072. +fsf/libg++/libg++/etc/benchmarks/Char.h
  2073. +fsf/libg++/libg++/etc/benchmarks/Int.h
  2074. +fsf/libg++/libg++/etc/benchmarks/Makefile.in
  2075. +fsf/libg++/libg++/etc/benchmarks/configure.in
  2076. +fsf/libg++/libg++/etc/benchmarks/dhrystone.cc
  2077. +fsf/libg++/libg++/etc/configure.in
  2078. +fsf/libg++/libg++/etc/fib/Makefile.in
  2079. +fsf/libg++/libg++/etc/fib/configure.in
  2080. +fsf/libg++/libg++/etc/fib/fib.cc
  2081. +fsf/libg++/libg++/etc/graph/ChangeLog
  2082. +fsf/libg++/libg++/etc/graph/Makefile.in
  2083. +fsf/libg++/libg++/etc/graph/configure.in
  2084. +fsf/libg++/libg++/etc/graph/depend
  2085. +fsf/libg++/libg++/etc/graph/eGetOpt.cc
  2086. +fsf/libg++/libg++/etc/graph/eGetOpt.h
  2087. +fsf/libg++/libg++/etc/graph/ePlotFile.cc
  2088. +fsf/libg++/libg++/etc/graph/ePlotFile.h
  2089. +fsf/libg++/libg++/etc/graph/graph.cc
  2090. +fsf/libg++/libg++/etc/graph/graph.tex
  2091. +fsf/libg++/libg++/etc/graph/pdefs.h
  2092. +fsf/libg++/libg++/etc/graph/read_data.cc
  2093. +fsf/libg++/libg++/etc/graph/read_data.h
  2094. +fsf/libg++/libg++/etc/graph/test.dat
  2095. +fsf/libg++/libg++/etc/graph/test2.dat
  2096. +fsf/libg++/libg++/etc/graph/tick_intrvl.cc
  2097. +fsf/libg++/libg++/etc/graph/tick_intrvl.h
  2098. +fsf/libg++/libg++/etc/lf/ChangeLog
  2099. +fsf/libg++/libg++/etc/lf/Dirent.cc
  2100. +fsf/libg++/libg++/etc/lf/Dirent.h
  2101. +fsf/libg++/libg++/etc/lf/Makefile.in
  2102. +fsf/libg++/libg++/etc/lf/configure.in
  2103. +fsf/libg++/libg++/etc/lf/depend
  2104. +fsf/libg++/libg++/etc/lf/directory.cc
  2105. +fsf/libg++/libg++/etc/lf/directory.h
  2106. +fsf/libg++/libg++/etc/lf/entry.cc
  2107. +fsf/libg++/libg++/etc/lf/entry.h
  2108. +fsf/libg++/libg++/etc/lf/lf.cc
  2109. +fsf/libg++/libg++/etc/lf/option.cc
  2110. +fsf/libg++/libg++/etc/lf/option.h
  2111. +fsf/libg++/libg++/etc/lf/screen.cc
  2112. +fsf/libg++/libg++/etc/lf/screen.h
  2113. +fsf/libg++/libg++/etc/lf/sort.cc
  2114. +fsf/libg++/libg++/etc/trie-gen/ChangeLog
  2115. +fsf/libg++/libg++/etc/trie-gen/Makefile.in
  2116. +fsf/libg++/libg++/etc/trie-gen/compact.cc
  2117. +fsf/libg++/libg++/etc/trie-gen/compact.h
  2118. +fsf/libg++/libg++/etc/trie-gen/configure.in
  2119. +fsf/libg++/libg++/etc/trie-gen/depend
  2120. +fsf/libg++/libg++/etc/trie-gen/main.cc
  2121. +fsf/libg++/libg++/etc/trie-gen/options.cc
  2122. +fsf/libg++/libg++/etc/trie-gen/options.h
  2123. +fsf/libg++/libg++/etc/trie-gen/renew.h
  2124. +fsf/libg++/libg++/etc/trie-gen/test.cc
  2125. +fsf/libg++/libg++/etc/trie-gen/trie-gen.1
  2126. +fsf/libg++/libg++/etc/trie-gen/trie.cc
  2127. +fsf/libg++/libg++/etc/trie-gen/trie.h
  2128. +fsf/libg++/libg++/etc/trie-gen/version.cc
  2129. +fsf/libg++/libg++/g++FAQ.texi
  2130. +fsf/libg++/libg++/g++FAQ.txt
  2131. +fsf/libg++/libg++/genclass/ChangeLog
  2132. +fsf/libg++/libg++/genclass/Makefile.in
  2133. +fsf/libg++/libg++/genclass/configure.in
  2134. +fsf/libg++/libg++/genclass/expected.out
  2135. +fsf/libg++/libg++/genclass/genclass.sh
  2136. +fsf/libg++/libg++/genclass/gentest.sh
  2137. +fsf/libg++/libg++/gperf/COPYING
  2138. +fsf/libg++/libg++/gperf/ChangeLog
  2139. +fsf/libg++/libg++/gperf/Makefile.in
  2140. +fsf/libg++/libg++/gperf/README
  2141. +fsf/libg++/libg++/gperf/configure.in
  2142. +fsf/libg++/libg++/gperf/gperf.1
  2143. +fsf/libg++/libg++/gperf/gperf.info
  2144. +fsf/libg++/libg++/gperf/gperf.texi
  2145. +fsf/libg++/libg++/gperf/src/Makefile.in
  2146. +fsf/libg++/libg++/gperf/src/bool-array.cc
  2147. +fsf/libg++/libg++/gperf/src/bool-array.h
  2148. +fsf/libg++/libg++/gperf/src/configure.in
  2149. +fsf/libg++/libg++/gperf/src/depend
  2150. +fsf/libg++/libg++/gperf/src/gen-perf.cc
  2151. +fsf/libg++/libg++/gperf/src/gen-perf.h
  2152. +fsf/libg++/libg++/gperf/src/hash-table.cc
  2153. +fsf/libg++/libg++/gperf/src/hash-table.h
  2154. +fsf/libg++/libg++/gperf/src/iterator.cc
  2155. +fsf/libg++/libg++/gperf/src/iterator.h
  2156. +fsf/libg++/libg++/gperf/src/key-list.cc
  2157. +fsf/libg++/libg++/gperf/src/key-list.h
  2158. +fsf/libg++/libg++/gperf/src/list-node.cc
  2159. +fsf/libg++/libg++/gperf/src/list-node.h
  2160. +fsf/libg++/libg++/gperf/src/main.cc
  2161. +fsf/libg++/libg++/gperf/src/new.cc
  2162. +fsf/libg++/libg++/gperf/src/options.cc
  2163. +fsf/libg++/libg++/gperf/src/options.h
  2164. +fsf/libg++/libg++/gperf/src/read-line.cc
  2165. +fsf/libg++/libg++/gperf/src/read-line.h
  2166. +fsf/libg++/libg++/gperf/src/std-err.cc
  2167. +fsf/libg++/libg++/gperf/src/std-err.h
  2168. +fsf/libg++/libg++/gperf/src/trace.h
  2169. +fsf/libg++/libg++/gperf/src/vectors.h
  2170. +fsf/libg++/libg++/gperf/src/version.cc
  2171. +fsf/libg++/libg++/gperf/tests/Makefile.in
  2172. +fsf/libg++/libg++/gperf/tests/ada-pred.exp
  2173. +fsf/libg++/libg++/gperf/tests/ada-res.exp
  2174. +fsf/libg++/libg++/gperf/tests/ada.gperf
  2175. +fsf/libg++/libg++/gperf/tests/adadefs.gperf
  2176. +fsf/libg++/libg++/gperf/tests/c++.gperf
  2177. +fsf/libg++/libg++/gperf/tests/c-parse.gperf
  2178. +fsf/libg++/libg++/gperf/tests/c.exp
  2179. +fsf/libg++/libg++/gperf/tests/c.gperf
  2180. +fsf/libg++/libg++/gperf/tests/configure.in
  2181. +fsf/libg++/libg++/gperf/tests/gpc.gperf
  2182. +fsf/libg++/libg++/gperf/tests/gplus.gperf
  2183. +fsf/libg++/libg++/gperf/tests/irc.gperf
  2184. +fsf/libg++/libg++/gperf/tests/makeinfo.gperf
  2185. +fsf/libg++/libg++/gperf/tests/modula.exp
  2186. +fsf/libg++/libg++/gperf/tests/modula2.gperf
  2187. +fsf/libg++/libg++/gperf/tests/modula3.gperf
  2188. +fsf/libg++/libg++/gperf/tests/pascal.exp
  2189. +fsf/libg++/libg++/gperf/tests/pascal.gperf
  2190. +fsf/libg++/libg++/gperf/tests/test-1.exp
  2191. +fsf/libg++/libg++/gperf/tests/test-2.exp
  2192. +fsf/libg++/libg++/gperf/tests/test-3.exp
  2193. +fsf/libg++/libg++/gperf/tests/test-4.exp
  2194. +fsf/libg++/libg++/gperf/tests/test-5.exp
  2195. +fsf/libg++/libg++/gperf/tests/test-6.exp
  2196. +fsf/libg++/libg++/gperf/tests/test-7.exp
  2197. +fsf/libg++/libg++/gperf/tests/test.c
  2198. +fsf/libg++/libg++/libg++.info
  2199. +fsf/libg++/libg++/libg++.info-1
  2200. +fsf/libg++/libg++/libg++.info-2
  2201. +fsf/libg++/libg++/libg++.info-3
  2202. +fsf/libg++/libg++/libg++.info-4
  2203. +fsf/libg++/libg++/libg++.info-5
  2204. +fsf/libg++/libg++/libg++.texi
  2205. +fsf/libg++/libg++/no-stream/.cvsignore
  2206. +fsf/libg++/libg++/no-stream/Makefile.in
  2207. +fsf/libg++/libg++/no-stream/configure.in
  2208. +fsf/libg++/libg++/old-stream/.cvsignore
  2209. +fsf/libg++/libg++/old-stream/ChangeLog
  2210. +fsf/libg++/libg++/old-stream/File.cc
  2211. +fsf/libg++/libg++/old-stream/File.h
  2212. +fsf/libg++/libg++/old-stream/Filebuf.cc
  2213. +fsf/libg++/libg++/old-stream/Filebuf.h
  2214. +fsf/libg++/libg++/old-stream/Fmodes.h
  2215. +fsf/libg++/libg++/old-stream/Makefile.in
  2216. +fsf/libg++/libg++/old-stream/PlotFile.cc
  2217. +fsf/libg++/libg++/old-stream/PlotFile.h
  2218. +fsf/libg++/libg++/old-stream/SFile.cc
  2219. +fsf/libg++/libg++/old-stream/SFile.h
  2220. +fsf/libg++/libg++/old-stream/_filebuf.cc
  2221. +fsf/libg++/libg++/old-stream/_filebuf.h
  2222. +fsf/libg++/libg++/old-stream/configure.in
  2223. +fsf/libg++/libg++/old-stream/depend
  2224. +fsf/libg++/libg++/old-stream/form.cc
  2225. +fsf/libg++/libg++/old-stream/istream.cc
  2226. +fsf/libg++/libg++/old-stream/istream.h
  2227. +fsf/libg++/libg++/old-stream/itoa.cc
  2228. +fsf/libg++/libg++/old-stream/ostream.cc
  2229. +fsf/libg++/libg++/old-stream/ostream.h
  2230. +fsf/libg++/libg++/old-stream/stream.h
  2231. +fsf/libg++/libg++/old-stream/streambuf.cc
  2232. +fsf/libg++/libg++/old-stream/streambuf.h
  2233. +fsf/libg++/libg++/proto-kit/Makefile
  2234. +fsf/libg++/libg++/proto-kit/Makefile.new
  2235. +fsf/libg++/libg++/proto-kit/file_types.hierarchy
  2236. +fsf/libg++/libg++/proto-kit/file_types.includes.h
  2237. +fsf/libg++/libg++/proto-kit/file_types.operation.h
  2238. +fsf/libg++/libg++/proto-kit/file_types.type.h
  2239. +fsf/libg++/libg++/proto-kit/genclass.extnsn
  2240. +fsf/libg++/libg++/proto-kit/hierarchy
  2241. +fsf/libg++/libg++/proto-kit/make-defs-file
  2242. +fsf/libg++/libg++/proto-kit/make-source-dependencies
  2243. +fsf/libg++/libg++/proto-kit/make-types
  2244. +fsf/libg++/libg++/proto-kit/prepend
  2245. +fsf/libg++/libg++/proto-kit/prepend-header
  2246. +fsf/libg++/libg++/proto-kit/prototype
  2247. +fsf/libg++/libg++/proto-kit/prototype.dependencies
  2248. +fsf/libg++/libg++/src/.cvsignore
  2249. +fsf/libg++/libg++/src/ACG.cc
  2250. +fsf/libg++/libg++/src/ACG.h
  2251. +fsf/libg++/libg++/src/AllocRing.cc
  2252. +fsf/libg++/libg++/src/AllocRing.h
  2253. +fsf/libg++/libg++/src/Binomial.cc
  2254. +fsf/libg++/libg++/src/Binomial.h
  2255. +fsf/libg++/libg++/src/BitSet.cc
  2256. +fsf/libg++/libg++/src/BitSet.h
  2257. +fsf/libg++/libg++/src/BitString.cc
  2258. +fsf/libg++/libg++/src/BitString.h
  2259. +fsf/libg++/libg++/src/ChangeLog
  2260. +fsf/libg++/libg++/src/Complex.h
  2261. +fsf/libg++/libg++/src/CursesW.cc
  2262. +fsf/libg++/libg++/src/CursesW.h
  2263. +fsf/libg++/libg++/src/DLList.cc
  2264. +fsf/libg++/libg++/src/DLList.h
  2265. +fsf/libg++/libg++/src/DiscUnif.cc
  2266. +fsf/libg++/libg++/src/DiscUnif.h
  2267. +fsf/libg++/libg++/src/Erlang.cc
  2268. +fsf/libg++/libg++/src/Erlang.h
  2269. +fsf/libg++/libg++/src/Fix.cc
  2270. +fsf/libg++/libg++/src/Fix.h
  2271. +fsf/libg++/libg++/src/Fix16.cc
  2272. +fsf/libg++/libg++/src/Fix16.h
  2273. +fsf/libg++/libg++/src/Fix24.cc
  2274. +fsf/libg++/libg++/src/Fix24.h
  2275. +fsf/libg++/libg++/src/Geom.cc
  2276. +fsf/libg++/libg++/src/Geom.h
  2277. +fsf/libg++/libg++/src/GetOpt.cc
  2278. +fsf/libg++/libg++/src/GetOpt.h
  2279. +fsf/libg++/libg++/src/HypGeom.cc
  2280. +fsf/libg++/libg++/src/HypGeom.h
  2281. +fsf/libg++/libg++/src/Incremental.h
  2282. +fsf/libg++/libg++/src/Intdouble.cc
  2283. +fsf/libg++/libg++/src/Integer.cc
  2284. +fsf/libg++/libg++/src/Integer.h
  2285. +fsf/libg++/libg++/src/Integer.hP
  2286. +fsf/libg++/libg++/src/LogNorm.cc
  2287. +fsf/libg++/libg++/src/LogNorm.h
  2288. +fsf/libg++/libg++/src/MLCG.cc
  2289. +fsf/libg++/libg++/src/MLCG.h
  2290. +fsf/libg++/libg++/src/Makefile.in
  2291. +fsf/libg++/libg++/src/NegExp.cc
  2292. +fsf/libg++/libg++/src/NegExp.h
  2293. +fsf/libg++/libg++/src/Normal.cc
  2294. +fsf/libg++/libg++/src/Normal.h
  2295. +fsf/libg++/libg++/src/Obstack.cc
  2296. +fsf/libg++/libg++/src/Obstack.h
  2297. +fsf/libg++/libg++/src/Pix.h
  2298. +fsf/libg++/libg++/src/Poisson.cc
  2299. +fsf/libg++/libg++/src/Poisson.h
  2300. +fsf/libg++/libg++/src/RNG.cc
  2301. +fsf/libg++/libg++/src/RNG.h
  2302. +fsf/libg++/libg++/src/Random.cc
  2303. +fsf/libg++/libg++/src/Random.h
  2304. +fsf/libg++/libg++/src/Rational.cc
  2305. +fsf/libg++/libg++/src/Rational.h
  2306. +fsf/libg++/libg++/src/Regex.cc
  2307. +fsf/libg++/libg++/src/Regex.h
  2308. +fsf/libg++/libg++/src/RndInt.cc
  2309. +fsf/libg++/libg++/src/RndInt.h
  2310. +fsf/libg++/libg++/src/SLList.cc
  2311. +fsf/libg++/libg++/src/SLList.h
  2312. +fsf/libg++/libg++/src/Sample.cc
  2313. +fsf/libg++/libg++/src/SmplHist.cc
  2314. +fsf/libg++/libg++/src/SmplHist.h
  2315. +fsf/libg++/libg++/src/SmplStat.cc
  2316. +fsf/libg++/libg++/src/SmplStat.h
  2317. +fsf/libg++/libg++/src/String.cc
  2318. +fsf/libg++/libg++/src/String.h
  2319. +fsf/libg++/libg++/src/Uniform.cc
  2320. +fsf/libg++/libg++/src/Uniform.h
  2321. +fsf/libg++/libg++/src/Weibull.cc
  2322. +fsf/libg++/libg++/src/Weibull.h
  2323. +fsf/libg++/libg++/src/bitand.c
  2324. +fsf/libg++/libg++/src/bitany.c
  2325. +fsf/libg++/libg++/src/bitblt.c
  2326. +fsf/libg++/libg++/src/bitclear.c
  2327. +fsf/libg++/libg++/src/bitcopy.c
  2328. +fsf/libg++/libg++/src/bitcount.c
  2329. +fsf/libg++/libg++/src/bitdo1.h
  2330. +fsf/libg++/libg++/src/bitdo2.h
  2331. +fsf/libg++/libg++/src/bitinvert.c
  2332. +fsf/libg++/libg++/src/bitlcomp.c
  2333. +fsf/libg++/libg++/src/bitprims.h
  2334. +fsf/libg++/libg++/src/bitset1.c
  2335. +fsf/libg++/libg++/src/bitxor.c
  2336. +fsf/libg++/libg++/src/bool.h
  2337. +fsf/libg++/libg++/src/builtin.cc
  2338. +fsf/libg++/libg++/src/builtin.h
  2339. +fsf/libg++/libg++/src/chr.cc
  2340. +fsf/libg++/libg++/src/compare.cc
  2341. +fsf/libg++/libg++/src/compare.h
  2342. +fsf/libg++/libg++/src/configure.in
  2343. +fsf/libg++/libg++/src/depend
  2344. +fsf/libg++/libg++/src/dtoa.cc
  2345. +fsf/libg++/libg++/src/error.cc
  2346. +fsf/libg++/libg++/src/fmtq.cc
  2347. +fsf/libg++/libg++/src/gcd.cc
  2348. +fsf/libg++/libg++/src/gen/AVLMap.ccP
  2349. +fsf/libg++/libg++/src/gen/AVLMap.hP
  2350. +fsf/libg++/libg++/src/gen/AVLSet.ccP
  2351. +fsf/libg++/libg++/src/gen/AVLSet.hP
  2352. +fsf/libg++/libg++/src/gen/AVec.ccP
  2353. +fsf/libg++/libg++/src/gen/AVec.hP
  2354. +fsf/libg++/libg++/src/gen/BSTSet.ccP
  2355. +fsf/libg++/libg++/src/gen/BSTSet.hP
  2356. +fsf/libg++/libg++/src/gen/Bag.ccP
  2357. +fsf/libg++/libg++/src/gen/Bag.hP
  2358. +fsf/libg++/libg++/src/gen/CHBag.ccP
  2359. +fsf/libg++/libg++/src/gen/CHBag.hP
  2360. +fsf/libg++/libg++/src/gen/CHMap.ccP
  2361. +fsf/libg++/libg++/src/gen/CHMap.hP
  2362. +fsf/libg++/libg++/src/gen/CHNode.ccP
  2363. +fsf/libg++/libg++/src/gen/CHNode.hP
  2364. +fsf/libg++/libg++/src/gen/CHSet.ccP
  2365. +fsf/libg++/libg++/src/gen/CHSet.hP
  2366. +fsf/libg++/libg++/src/gen/DLDeque.ccP
  2367. +fsf/libg++/libg++/src/gen/DLDeque.hP
  2368. +fsf/libg++/libg++/src/gen/DLList.ccP
  2369. +fsf/libg++/libg++/src/gen/DLList.hP
  2370. +fsf/libg++/libg++/src/gen/Deque.ccP
  2371. +fsf/libg++/libg++/src/gen/Deque.hP
  2372. +fsf/libg++/libg++/src/gen/FPQueue.ccP
  2373. +fsf/libg++/libg++/src/gen/FPQueue.hP
  2374. +fsf/libg++/libg++/src/gen/FPStack.ccP
  2375. +fsf/libg++/libg++/src/gen/FPStack.hP
  2376. +fsf/libg++/libg++/src/gen/FPlex.ccP
  2377. +fsf/libg++/libg++/src/gen/FPlex.hP
  2378. +fsf/libg++/libg++/src/gen/List.ccP
  2379. +fsf/libg++/libg++/src/gen/List.hP
  2380. +fsf/libg++/libg++/src/gen/MPlex.ccP
  2381. +fsf/libg++/libg++/src/gen/MPlex.hP
  2382. +fsf/libg++/libg++/src/gen/Map.ccP
  2383. +fsf/libg++/libg++/src/gen/Map.hP
  2384. +fsf/libg++/libg++/src/gen/OSLBag.ccP
  2385. +fsf/libg++/libg++/src/gen/OSLBag.hP
  2386. +fsf/libg++/libg++/src/gen/OSLSet.ccP
  2387. +fsf/libg++/libg++/src/gen/OSLSet.hP
  2388. +fsf/libg++/libg++/src/gen/OXPBag.ccP
  2389. +fsf/libg++/libg++/src/gen/OXPBag.hP
  2390. +fsf/libg++/libg++/src/gen/OXPSet.ccP
  2391. +fsf/libg++/libg++/src/gen/OXPSet.hP
  2392. +fsf/libg++/libg++/src/gen/PHPQ.ccP
  2393. +fsf/libg++/libg++/src/gen/PHPQ.hP
  2394. +fsf/libg++/libg++/src/gen/PQ.ccP
  2395. +fsf/libg++/libg++/src/gen/PQ.hP
  2396. +fsf/libg++/libg++/src/gen/PSList.hP
  2397. +fsf/libg++/libg++/src/gen/PVec.hP
  2398. +fsf/libg++/libg++/src/gen/Plex.ccP
  2399. +fsf/libg++/libg++/src/gen/Plex.hP
  2400. +fsf/libg++/libg++/src/gen/Queue.ccP
  2401. +fsf/libg++/libg++/src/gen/Queue.hP
  2402. +fsf/libg++/libg++/src/gen/RAVLMap.ccP
  2403. +fsf/libg++/libg++/src/gen/RAVLMap.hP
  2404. +fsf/libg++/libg++/src/gen/RPlex.ccP
  2405. +fsf/libg++/libg++/src/gen/RPlex.hP
  2406. +fsf/libg++/libg++/src/gen/SLBag.ccP
  2407. +fsf/libg++/libg++/src/gen/SLBag.hP
  2408. +fsf/libg++/libg++/src/gen/SLList.ccP
  2409. +fsf/libg++/libg++/src/gen/SLList.hP
  2410. +fsf/libg++/libg++/src/gen/SLQueue.ccP
  2411. +fsf/libg++/libg++/src/gen/SLQueue.hP
  2412. +fsf/libg++/libg++/src/gen/SLSet.ccP
  2413. +fsf/libg++/libg++/src/gen/SLSet.hP
  2414. +fsf/libg++/libg++/src/gen/SLStack.ccP
  2415. +fsf/libg++/libg++/src/gen/SLStack.hP
  2416. +fsf/libg++/libg++/src/gen/Set.ccP
  2417. +fsf/libg++/libg++/src/gen/Set.hP
  2418. +fsf/libg++/libg++/src/gen/SkipBag.ccP
  2419. +fsf/libg++/libg++/src/gen/SkipBag.hP
  2420. +fsf/libg++/libg++/src/gen/SkipMap.ccP
  2421. +fsf/libg++/libg++/src/gen/SkipMap.hP
  2422. +fsf/libg++/libg++/src/gen/SkipSet.ccP
  2423. +fsf/libg++/libg++/src/gen/SkipSet.hP
  2424. +fsf/libg++/libg++/src/gen/SplayBag.ccP
  2425. +fsf/libg++/libg++/src/gen/SplayBag.hP
  2426. +fsf/libg++/libg++/src/gen/SplayMap.ccP
  2427. +fsf/libg++/libg++/src/gen/SplayMap.hP
  2428. +fsf/libg++/libg++/src/gen/SplayNode.ccP
  2429. +fsf/libg++/libg++/src/gen/SplayNode.hP
  2430. +fsf/libg++/libg++/src/gen/SplayPQ.ccP
  2431. +fsf/libg++/libg++/src/gen/SplayPQ.hP
  2432. +fsf/libg++/libg++/src/gen/SplaySet.ccP
  2433. +fsf/libg++/libg++/src/gen/SplaySet.hP
  2434. +fsf/libg++/libg++/src/gen/Stack.ccP
  2435. +fsf/libg++/libg++/src/gen/Stack.hP
  2436. +fsf/libg++/libg++/src/gen/VHBag.ccP
  2437. +fsf/libg++/libg++/src/gen/VHBag.hP
  2438. +fsf/libg++/libg++/src/gen/VHMap.ccP
  2439. +fsf/libg++/libg++/src/gen/VHMap.hP
  2440. +fsf/libg++/libg++/src/gen/VHSet.ccP
  2441. +fsf/libg++/libg++/src/gen/VHSet.hP
  2442. +fsf/libg++/libg++/src/gen/VOHSet.ccP
  2443. +fsf/libg++/libg++/src/gen/VOHSet.hP
  2444. +fsf/libg++/libg++/src/gen/VQueue.ccP
  2445. +fsf/libg++/libg++/src/gen/VQueue.hP
  2446. +fsf/libg++/libg++/src/gen/VStack.ccP
  2447. +fsf/libg++/libg++/src/gen/VStack.hP
  2448. +fsf/libg++/libg++/src/gen/Vec.ccP
  2449. +fsf/libg++/libg++/src/gen/Vec.hP
  2450. +fsf/libg++/libg++/src/gen/XPBag.ccP
  2451. +fsf/libg++/libg++/src/gen/XPBag.hP
  2452. +fsf/libg++/libg++/src/gen/XPDeque.ccP
  2453. +fsf/libg++/libg++/src/gen/XPDeque.hP
  2454. +fsf/libg++/libg++/src/gen/XPPQ.ccP
  2455. +fsf/libg++/libg++/src/gen/XPPQ.hP
  2456. +fsf/libg++/libg++/src/gen/XPQueue.ccP
  2457. +fsf/libg++/libg++/src/gen/XPQueue.hP
  2458. +fsf/libg++/libg++/src/gen/XPSet.ccP
  2459. +fsf/libg++/libg++/src/gen/XPSet.hP
  2460. +fsf/libg++/libg++/src/gen/XPStack.ccP
  2461. +fsf/libg++/libg++/src/gen/XPStack.hP
  2462. +fsf/libg++/libg++/src/gen/XPlex.ccP
  2463. +fsf/libg++/libg++/src/gen/XPlex.hP
  2464. +fsf/libg++/libg++/src/gen/defs.hP
  2465. +fsf/libg++/libg++/src/gen/intSList.hP
  2466. +fsf/libg++/libg++/src/gen/intVec.hP
  2467. +fsf/libg++/libg++/src/generic.h
  2468. +fsf/libg++/libg++/src/getpagesize.h
  2469. +fsf/libg++/libg++/src/hash.cc
  2470. +fsf/libg++/libg++/src/ioob.cc
  2471. +fsf/libg++/libg++/src/lg.cc
  2472. +fsf/libg++/libg++/src/libc.h
  2473. +fsf/libg++/libg++/src/malloc.c
  2474. +fsf/libg++/libg++/src/minmax.cc
  2475. +fsf/libg++/libg++/src/minmax.h
  2476. +fsf/libg++/libg++/src/osfcn.h
  2477. +fsf/libg++/libg++/src/pow.cc
  2478. +fsf/libg++/libg++/src/sqrt.cc
  2479. +fsf/libg++/libg++/src/std.h
  2480. +fsf/libg++/libg++/src/str.cc
  2481. +fsf/libg++/libg++/src/strclass.h
  2482. +fsf/libg++/libg++/src/swap.h
  2483. +fsf/libg++/libg++/src/sysent.h
  2484. +fsf/libg++/libg++/src/timer.c
  2485. +fsf/libg++/libg++/src/typemacros.h
  2486. +fsf/libg++/libg++/test-install/.cvsignore
  2487. +fsf/libg++/libg++/test-install/ChangeLog
  2488. +fsf/libg++/libg++/test-install/Foo.cc
  2489. +fsf/libg++/libg++/test-install/Foo.h
  2490. +fsf/libg++/libg++/test-install/Makefile.in
  2491. +fsf/libg++/libg++/test-install/a.cc
  2492. +fsf/libg++/libg++/test-install/bf.cc
  2493. +fsf/libg++/libg++/test-install/bm.cc
  2494. +fsf/libg++/libg++/test-install/configure.in
  2495. +fsf/libg++/libg++/test-install/ex_bar.cc
  2496. +fsf/libg++/libg++/test-install/expected.out
  2497. +fsf/libg++/libg++/test-install/foo_func.cc
  2498. +fsf/libg++/libg++/test-install/foo_main.cc
  2499. +fsf/libg++/libg++/tests/.cvsignore
  2500. +fsf/libg++/libg++/tests/ChangeLog
  2501. +fsf/libg++/libg++/tests/Makefile.in
  2502. +fsf/libg++/libg++/tests/Makefile.sh
  2503. +fsf/libg++/libg++/tests/configure.in
  2504. +fsf/libg++/libg++/tests/depend
  2505. +fsf/libg++/libg++/tests/tBag.cc
  2506. +fsf/libg++/libg++/tests/tBag.exp
  2507. +fsf/libg++/libg++/tests/tBag.inp
  2508. +fsf/libg++/libg++/tests/tBitSet.cc
  2509. +fsf/libg++/libg++/tests/tBitSet.exp
  2510. +fsf/libg++/libg++/tests/tBitSet.inp
  2511. +fsf/libg++/libg++/tests/tBitString.cc
  2512. +fsf/libg++/libg++/tests/tBitString.exp
  2513. +fsf/libg++/libg++/tests/tBitString.inp
  2514. +fsf/libg++/libg++/tests/tCurses.cc
  2515. +fsf/libg++/libg++/tests/tCurses.inp
  2516. +fsf/libg++/libg++/tests/tDeque.cc
  2517. +fsf/libg++/libg++/tests/tDeque.exp
  2518. +fsf/libg++/libg++/tests/tDeque.inp
  2519. +fsf/libg++/libg++/tests/tFile.cc
  2520. +fsf/libg++/libg++/tests/tFile.exp
  2521. +fsf/libg++/libg++/tests/tFile.inp
  2522. +fsf/libg++/libg++/tests/tFix.cc
  2523. +fsf/libg++/libg++/tests/tFix.exp
  2524. +fsf/libg++/libg++/tests/tFix.inp
  2525. +fsf/libg++/libg++/tests/tFix16.cc
  2526. +fsf/libg++/libg++/tests/tFix16.exp
  2527. +fsf/libg++/libg++/tests/tFix16.inp
  2528. +fsf/libg++/libg++/tests/tFix24.cc
  2529. +fsf/libg++/libg++/tests/tFix24.exp
  2530. +fsf/libg++/libg++/tests/tFix24.inp
  2531. +fsf/libg++/libg++/tests/tGetOpt.cc
  2532. +fsf/libg++/libg++/tests/tGetOpt.exp
  2533. +fsf/libg++/libg++/tests/tGetOpt.inp
  2534. +fsf/libg++/libg++/tests/tInteger.cc
  2535. +fsf/libg++/libg++/tests/tInteger.exp
  2536. +fsf/libg++/libg++/tests/tInteger.inp
  2537. +fsf/libg++/libg++/tests/tLList.cc
  2538. +fsf/libg++/libg++/tests/tLList.exp
  2539. +fsf/libg++/libg++/tests/tLList.inp
  2540. +fsf/libg++/libg++/tests/tList.cc
  2541. +fsf/libg++/libg++/tests/tList.exp
  2542. +fsf/libg++/libg++/tests/tList.inp
  2543. +fsf/libg++/libg++/tests/tMap.cc
  2544. +fsf/libg++/libg++/tests/tMap.exp
  2545. +fsf/libg++/libg++/tests/tMap.inp
  2546. +fsf/libg++/libg++/tests/tObstack.cc
  2547. +fsf/libg++/libg++/tests/tObstack.exp
  2548. +fsf/libg++/libg++/tests/tObstack.inp
  2549. +fsf/libg++/libg++/tests/tPQ.cc
  2550. +fsf/libg++/libg++/tests/tPQ.exp
  2551. +fsf/libg++/libg++/tests/tPQ.inp
  2552. +fsf/libg++/libg++/tests/tPlex.cc
  2553. +fsf/libg++/libg++/tests/tPlex.exp
  2554. +fsf/libg++/libg++/tests/tPlex.inp
  2555. +fsf/libg++/libg++/tests/tQueue.cc
  2556. +fsf/libg++/libg++/tests/tQueue.exp
  2557. +fsf/libg++/libg++/tests/tQueue.inp
  2558. +fsf/libg++/libg++/tests/tRandom.cc
  2559. +fsf/libg++/libg++/tests/tRandom.exp
  2560. +fsf/libg++/libg++/tests/tRandom.inp
  2561. +fsf/libg++/libg++/tests/tRational.cc
  2562. +fsf/libg++/libg++/tests/tRational.exp
  2563. +fsf/libg++/libg++/tests/tRational.inp
  2564. +fsf/libg++/libg++/tests/tSet.cc
  2565. +fsf/libg++/libg++/tests/tSet.exp
  2566. +fsf/libg++/libg++/tests/tSet.inp
  2567. +fsf/libg++/libg++/tests/tStack.cc
  2568. +fsf/libg++/libg++/tests/tStack.exp
  2569. +fsf/libg++/libg++/tests/tStack.inp
  2570. +fsf/libg++/libg++/tests/tString.cc
  2571. +fsf/libg++/libg++/tests/tString.exp
  2572. +fsf/libg++/libg++/tests/tString.inp
  2573. +fsf/libg++/libg++/tests/tVec.cc
  2574. +fsf/libg++/libg++/tests/tVec.exp
  2575. +fsf/libg++/libg++/tests/tVec.inp
  2576. +fsf/libg++/libg++/tests/test_h.cc
  2577. +fsf/libg++/libg++/tests/tiLList.cc
  2578. +fsf/libg++/libg++/tests/tiLList.exp
  2579. +fsf/libg++/libg++/utils/.cvsignore
  2580. +fsf/libg++/libg++/utils/Makefile.in
  2581. +fsf/libg++/libg++/utils/configure.in
  2582. +fsf/libg++/libg++/utils/g++dep.sh
  2583. +fsf/libg++/libg++/utils/gendepend
  2584. +fsf/libg++/libg++/vms/AAAREADME.TXT
  2585. +fsf/libg++/libg++/vms/CXLINK.COM
  2586. +fsf/libg++/libg++/vms/CXSHARE.COM
  2587. +fsf/libg++/libg++/vms/EXPECTED.LIST
  2588. +fsf/libg++/libg++/vms/EXPECTED.VMS
  2589. +fsf/libg++/libg++/vms/FNDVEC.C
  2590. +fsf/libg++/libg++/vms/GENCLASS.COM
  2591. +fsf/libg++/libg++/vms/GENCLASS.TPU
  2592. +fsf/libg++/libg++/vms/GXX_MAIN_SHR.MAR
  2593. +fsf/libg++/libg++/vms/OPTIONS.OPT
  2594. +fsf/libg++/libg++/vms/VMS-BUILD-LIBGXX.COM
  2595. +fsf/libg++/libg++/vms/VMS-CURSES.C
  2596. +fsf/libg++/libg++/vms/VMS-GCCLIB.MAR
  2597. +fsf/libg++/libg++/vms/VMS-INSTALL-LIBGXX.COM
  2598. +fsf/libg++/libg++/vms/VMS-TEST-LIBGXX.COM
  2599. +fsf/libg++/libg++/vms/VMS_FIXINCLUDES.TPU
  2600. +fsf/libg++/libg++/vms/_G_config.h
  2601. +fsf/libg++/libiberty/COPYING.LIB
  2602. +fsf/libg++/libiberty/ChangeLog
  2603. +fsf/libg++/libiberty/Makefile.in
  2604. +fsf/libg++/libiberty/README
  2605. +fsf/libg++/libiberty/alloca-botch.h
  2606. +fsf/libg++/libiberty/alloca-norm.h
  2607. +fsf/libg++/libiberty/alloca.c
  2608. +fsf/libg++/libiberty/argv.c
  2609. +fsf/libg++/libiberty/basename.c
  2610. +fsf/libg++/libiberty/bcmp.c
  2611. +fsf/libg++/libiberty/bcopy.c
  2612. +fsf/libg++/libiberty/bzero.c
  2613. +fsf/libg++/libiberty/clock.c
  2614. +fsf/libg++/libiberty/concat.c
  2615. +fsf/libg++/libiberty/config.table
  2616. +fsf/libg++/libiberty/config/mh-a68bsd
  2617. +fsf/libg++/libiberty/config/mh-aix
  2618. +fsf/libg++/libiberty/config/mh-apollo68
  2619. +fsf/libg++/libiberty/config/mh-cxux7
  2620. +fsf/libg++/libiberty/config/mh-go32
  2621. +fsf/libg++/libiberty/config/mh-hpbsd
  2622. +fsf/libg++/libiberty/config/mh-hpux
  2623. +fsf/libg++/libiberty/config/mh-i386win32
  2624. +fsf/libg++/libiberty/config/mh-irix4
  2625. +fsf/libg++/libiberty/config/mh-lynxos
  2626. +fsf/libg++/libiberty/config/mh-ncr3000
  2627. +fsf/libg++/libiberty/config/mh-riscix
  2628. +fsf/libg++/libiberty/config/mh-sysv
  2629. +fsf/libg++/libiberty/config/mh-sysv4
  2630. +fsf/libg++/libiberty/config/mt-amigaos
  2631. +fsf/libg++/libiberty/config/mt-sunos4
  2632. +fsf/libg++/libiberty/config/mt-vxworks5
  2633. +fsf/libg++/libiberty/configure.bat
  2634. +fsf/libg++/libiberty/configure.in
  2635. +fsf/libg++/libiberty/copysign.c
  2636. +fsf/libg++/libiberty/cplus-dem.c
  2637. +fsf/libg++/libiberty/dummy.c
  2638. +fsf/libg++/libiberty/fdmatch.c
  2639. +fsf/libg++/libiberty/floatformat.c
  2640. +fsf/libg++/libiberty/functions.def
  2641. +fsf/libg++/libiberty/getcwd.c
  2642. +fsf/libg++/libiberty/getopt.c
  2643. +fsf/libg++/libiberty/getopt1.c
  2644. +fsf/libg++/libiberty/getpagesize.c
  2645. +fsf/libg++/libiberty/getruntime.c
  2646. +fsf/libg++/libiberty/hex.c
  2647. +fsf/libg++/libiberty/index.c
  2648. +fsf/libg++/libiberty/insque.c
  2649. +fsf/libg++/libiberty/makefile.dos
  2650. +fsf/libg++/libiberty/memchr.c
  2651. +fsf/libg++/libiberty/memcmp.c
  2652. +fsf/libg++/libiberty/memcpy.c
  2653. +fsf/libg++/libiberty/memmove.c
  2654. +fsf/libg++/libiberty/memset.c
  2655. +fsf/libg++/libiberty/mpw-config.in
  2656. +fsf/libg++/libiberty/mpw-make.sed
  2657. +fsf/libg++/libiberty/mpw.c
  2658. +fsf/libg++/libiberty/msdos.c
  2659. +fsf/libg++/libiberty/obstack.c
  2660. +fsf/libg++/libiberty/random.c
  2661. +fsf/libg++/libiberty/rename.c
  2662. +fsf/libg++/libiberty/rindex.c
  2663. +fsf/libg++/libiberty/sigsetmask.c
  2664. +fsf/libg++/libiberty/spaces.c
  2665. +fsf/libg++/libiberty/strcasecmp.c
  2666. +fsf/libg++/libiberty/strchr.c
  2667. +fsf/libg++/libiberty/strdup.c
  2668. +fsf/libg++/libiberty/strerror.c
  2669. +fsf/libg++/libiberty/strncasecmp.c
  2670. +fsf/libg++/libiberty/strrchr.c
  2671. +fsf/libg++/libiberty/strsignal.c
  2672. +fsf/libg++/libiberty/strstr.c
  2673. +fsf/libg++/libiberty/strtod.c
  2674. +fsf/libg++/libiberty/strtol.c
  2675. +fsf/libg++/libiberty/strtoul.c
  2676. +fsf/libg++/libiberty/tmpnam.c
  2677. +fsf/libg++/libiberty/vasprintf.c
  2678. +fsf/libg++/libiberty/vfork.c
  2679. +fsf/libg++/libiberty/vfprintf.c
  2680. +fsf/libg++/libiberty/vmsbuild.com
  2681. +fsf/libg++/libiberty/vprintf.c
  2682. +fsf/libg++/libiberty/vsprintf.c
  2683. +fsf/libg++/libiberty/waitpid.c
  2684. +fsf/libg++/libiberty/win32.c
  2685. +fsf/libg++/libiberty/xatexit.c
  2686. +fsf/libg++/libiberty/xexit.c
  2687. +fsf/libg++/libiberty/xmalloc.c
  2688. +fsf/libg++/libiberty/xstrerror.c
  2689. +fsf/libg++/libio/ChangeLog
  2690. +fsf/libg++/libio/Makefile.in
  2691. +fsf/libg++/libio/NEWS
  2692. +fsf/libg++/libio/PlotFile.cc
  2693. +fsf/libg++/libio/PlotFile.h
  2694. +fsf/libg++/libio/README
  2695. +fsf/libg++/libio/SFile.cc
  2696. +fsf/libg++/libio/SFile.h
  2697. +fsf/libg++/libio/builtinbuf.cc
  2698. +fsf/libg++/libio/builtinbuf.h
  2699. +fsf/libg++/libio/cleanup.c
  2700. +fsf/libg++/libio/config.shared
  2701. +fsf/libg++/libio/config/hpux.mt
  2702. +fsf/libg++/libio/config/isc.mt
  2703. +fsf/libg++/libio/config/linux.mt
  2704. +fsf/libg++/libio/config/netware.mt
  2705. +fsf/libg++/libio/config/sco4.mt
  2706. +fsf/libg++/libio/configure.in
  2707. +fsf/libg++/libio/dbz/Makefile.in
  2708. +fsf/libg++/libio/dbz/README
  2709. +fsf/libg++/libio/dbz/altbytes
  2710. +fsf/libg++/libio/dbz/byteflip.c
  2711. +fsf/libg++/libio/dbz/case.c
  2712. +fsf/libg++/libio/dbz/case.h
  2713. +fsf/libg++/libio/dbz/configure.in
  2714. +fsf/libg++/libio/dbz/dbz.1
  2715. +fsf/libg++/libio/dbz/dbz.3z
  2716. +fsf/libg++/libio/dbz/dbz.c
  2717. +fsf/libg++/libio/dbz/dbz.h
  2718. +fsf/libg++/libio/dbz/dbzmain.c
  2719. +fsf/libg++/libio/dbz/fake.c
  2720. +fsf/libg++/libio/dbz/firstlast25
  2721. +fsf/libg++/libio/dbz/getmap
  2722. +fsf/libg++/libio/dbz/random.c
  2723. +fsf/libg++/libio/dbz/revbytes
  2724. +fsf/libg++/libio/dbz/stdio.h
  2725. +fsf/libg++/libio/depend
  2726. +fsf/libg++/libio/editbuf.cc
  2727. +fsf/libg++/libio/editbuf.h
  2728. +fsf/libg++/libio/filebuf.cc
  2729. +fsf/libg++/libio/filedoalloc.c
  2730. +fsf/libg++/libio/fileops.c
  2731. +fsf/libg++/libio/floatconv.c
  2732. +fsf/libg++/libio/floatio.h
  2733. +fsf/libg++/libio/fstream.cc
  2734. +fsf/libg++/libio/fstream.h
  2735. +fsf/libg++/libio/gen-params
  2736. +fsf/libg++/libio/genops.c
  2737. +fsf/libg++/libio/indstream.cc
  2738. +fsf/libg++/libio/indstream.h
  2739. +fsf/libg++/libio/ioassign.cc
  2740. +fsf/libg++/libio/ioextend.cc
  2741. +fsf/libg++/libio/iofclose.c
  2742. +fsf/libg++/libio/iofdopen.c
  2743. +fsf/libg++/libio/iofflush.c
  2744. +fsf/libg++/libio/iofgetpos.c
  2745. +fsf/libg++/libio/iofgets.c
  2746. +fsf/libg++/libio/iofopen.c
  2747. +fsf/libg++/libio/iofprintf.c
  2748. +fsf/libg++/libio/iofputs.c
  2749. +fsf/libg++/libio/iofread.c
  2750. +fsf/libg++/libio/iofscanf.c
  2751. +fsf/libg++/libio/iofsetpos.c
  2752. +fsf/libg++/libio/ioftell.c
  2753. +fsf/libg++/libio/iofwrite.c
  2754. +fsf/libg++/libio/iogetdelim.c
  2755. +fsf/libg++/libio/iogetline.c
  2756. +fsf/libg++/libio/iogets.c
  2757. +fsf/libg++/libio/ioignore.c
  2758. +fsf/libg++/libio/iolibio.h
  2759. +fsf/libg++/libio/iomanip.cc
  2760. +fsf/libg++/libio/iomanip.h
  2761. +fsf/libg++/libio/iopadn.c
  2762. +fsf/libg++/libio/ioperror.c
  2763. +fsf/libg++/libio/iopopen.c
  2764. +fsf/libg++/libio/ioprims.c
  2765. +fsf/libg++/libio/ioprintf.c
  2766. +fsf/libg++/libio/ioputs.c
  2767. +fsf/libg++/libio/ioscanf.c
  2768. +fsf/libg++/libio/ioseekoff.c
  2769. +fsf/libg++/libio/ioseekpos.c
  2770. +fsf/libg++/libio/iosetbuffer.c
  2771. +fsf/libg++/libio/iosetvbuf.c
  2772. +fsf/libg++/libio/iosprintf.c
  2773. +fsf/libg++/libio/iosscanf.c
  2774. +fsf/libg++/libio/iostdio.h
  2775. +fsf/libg++/libio/iostream.cc
  2776. +fsf/libg++/libio/iostream.h
  2777. +fsf/libg++/libio/iostream.info
  2778. +fsf/libg++/libio/iostream.info-1
  2779. +fsf/libg++/libio/iostream.info-2
  2780. +fsf/libg++/libio/iostream.texi
  2781. +fsf/libg++/libio/iostreamP.h
  2782. +fsf/libg++/libio/iostrerror.c
  2783. +fsf/libg++/libio/ioungetc.c
  2784. +fsf/libg++/libio/iovfprintf.c
  2785. +fsf/libg++/libio/iovfscanf.c
  2786. +fsf/libg++/libio/iovsprintf.c
  2787. +fsf/libg++/libio/iovsscanf.c
  2788. +fsf/libg++/libio/isgetline.cc
  2789. +fsf/libg++/libio/isgetsb.cc
  2790. +fsf/libg++/libio/isscan.cc
  2791. +fsf/libg++/libio/istream.h
  2792. +fsf/libg++/libio/libio.h
  2793. +fsf/libg++/libio/libioP.h
  2794. +fsf/libg++/libio/osform.cc
  2795. +fsf/libg++/libio/ostream.h
  2796. +fsf/libg++/libio/outfloat.c
  2797. +fsf/libg++/libio/parsestream.cc
  2798. +fsf/libg++/libio/parsestream.h
  2799. +fsf/libg++/libio/pfstream.cc
  2800. +fsf/libg++/libio/pfstream.h
  2801. +fsf/libg++/libio/procbuf.cc
  2802. +fsf/libg++/libio/procbuf.h
  2803. +fsf/libg++/libio/sbform.cc
  2804. +fsf/libg++/libio/sbgetline.cc
  2805. +fsf/libg++/libio/sbscan.cc
  2806. +fsf/libg++/libio/stdfiles.c
  2807. +fsf/libg++/libio/stdio/ChangeLog
  2808. +fsf/libg++/libio/stdio/ChangeLog.old
  2809. +fsf/libg++/libio/stdio/Makefile.in
  2810. +fsf/libg++/libio/stdio/clearerr.c
  2811. +fsf/libg++/libio/stdio/configure.in
  2812. +fsf/libg++/libio/stdio/fdopen.c
  2813. +fsf/libg++/libio/stdio/feof.c
  2814. +fsf/libg++/libio/stdio/ferror.c
  2815. +fsf/libg++/libio/stdio/fgetc.c
  2816. +fsf/libg++/libio/stdio/fileno.c
  2817. +fsf/libg++/libio/stdio/fputc.c
  2818. +fsf/libg++/libio/stdio/freopen.c
  2819. +fsf/libg++/libio/stdio/fseek.c
  2820. +fsf/libg++/libio/stdio/getc.c
  2821. +fsf/libg++/libio/stdio/getchar.c
  2822. +fsf/libg++/libio/stdio/getline.c
  2823. +fsf/libg++/libio/stdio/getw.c
  2824. +fsf/libg++/libio/stdio/popen.c
  2825. +fsf/libg++/libio/stdio/putc.c
  2826. +fsf/libg++/libio/stdio/putchar.c
  2827. +fsf/libg++/libio/stdio/putw.c
  2828. +fsf/libg++/libio/stdio/rewind.c
  2829. +fsf/libg++/libio/stdio/setbuf.c
  2830. +fsf/libg++/libio/stdio/setfileno.c
  2831. +fsf/libg++/libio/stdio/setlinebuf.c
  2832. +fsf/libg++/libio/stdio/snprintf.c
  2833. +fsf/libg++/libio/stdio/stdio.h
  2834. +fsf/libg++/libio/stdio/vfprintf.c
  2835. +fsf/libg++/libio/stdio/vfscanf.c
  2836. +fsf/libg++/libio/stdio/vprintf.c
  2837. +fsf/libg++/libio/stdio/vscanf.c
  2838. +fsf/libg++/libio/stdio/vsnprintf.c
  2839. +fsf/libg++/libio/stdiostream.cc
  2840. +fsf/libg++/libio/stdiostream.h
  2841. +fsf/libg++/libio/stdstrbufs.cc
  2842. +fsf/libg++/libio/stdstreams.cc
  2843. +fsf/libg++/libio/stream.cc
  2844. +fsf/libg++/libio/stream.h
  2845. +fsf/libg++/libio/streambuf.cc
  2846. +fsf/libg++/libio/streambuf.h
  2847. +fsf/libg++/libio/strfile.h
  2848. +fsf/libg++/libio/strops.c
  2849. +fsf/libg++/libio/strstream.cc
  2850. +fsf/libg++/libio/strstream.h
  2851. +fsf/libg++/libio/tests/ChangeLog
  2852. +fsf/libg++/libio/tests/Makefile.in
  2853. +fsf/libg++/libio/tests/configure.in
  2854. +fsf/libg++/libio/tests/hounddog.cc
  2855. +fsf/libg++/libio/tests/hounddog.exp
  2856. +fsf/libg++/libio/tests/hounddog.inp
  2857. +fsf/libg++/libio/tests/putbackdog.cc
  2858. +fsf/libg++/libio/tests/tFile.cc
  2859. +fsf/libg++/libio/tests/tFile.exp
  2860. +fsf/libg++/libio/tests/tFile.inp
  2861. +fsf/libg++/libio/tests/tfformat.c
  2862. +fsf/libg++/libio/tests/tiformat.c
  2863. +fsf/libg++/libio/tests/tiomanip.cc
  2864. +fsf/libg++/libio/tests/tiomanip.exp
  2865. +fsf/libg++/libio/tests/tiomisc.cc
  2866. +fsf/libg++/libio/tests/tiomisc.exp
  2867. +fsf/libg++/libio/tests/tstdiomisc.c
  2868. +fsf/libg++/libio/tests/tstdiomisc.exp
  2869. +fsf/libg++/librx/COPYING.LIB
  2870. +fsf/libg++/librx/ChangeLog
  2871. +fsf/libg++/librx/DOC
  2872. +fsf/libg++/librx/INSTALL
  2873. +fsf/libg++/librx/INSTALL.rx
  2874. +fsf/libg++/librx/Makefile.in
  2875. +fsf/libg++/librx/configure
  2876. +fsf/libg++/librx/configure.in
  2877. +fsf/libg++/librx/rx.c
  2878. +fsf/libg++/librx/rx.h
  2879. +fsf/libg++/libstdc++/ChangeLog
  2880. +fsf/libg++/libstdc++/Make.pack
  2881. +fsf/libg++/libstdc++/Makefile.in
  2882. +fsf/libg++/libstdc++/algorithm
  2883. +fsf/libg++/libstdc++/cassert
  2884. +fsf/libg++/libstdc++/cctype
  2885. +fsf/libg++/libstdc++/cerrno
  2886. +fsf/libg++/libstdc++/cfloat
  2887. +fsf/libg++/libstdc++/cinst.cc
  2888. +fsf/libg++/libstdc++/ciso646
  2889. +fsf/libg++/libstdc++/climits
  2890. +fsf/libg++/libstdc++/clocale
  2891. +fsf/libg++/libstdc++/cmath
  2892. +fsf/libg++/libstdc++/cmathi.cc
  2893. +fsf/libg++/libstdc++/complex
  2894. +fsf/libg++/libstdc++/complex.h
  2895. +fsf/libg++/libstdc++/config/aix.ml
  2896. +fsf/libg++/libstdc++/config/dec-osf.ml
  2897. +fsf/libg++/libstdc++/config/elf.ml
  2898. +fsf/libg++/libstdc++/config/elfshlibm.ml
  2899. +fsf/libg++/libstdc++/config/hpux.ml
  2900. +fsf/libg++/libstdc++/config/irix5.ml
  2901. +fsf/libg++/libstdc++/config/linux.ml
  2902. +fsf/libg++/libstdc++/config/sol2shm.ml
  2903. +fsf/libg++/libstdc++/config/sunos4.ml
  2904. +fsf/libg++/libstdc++/configure.in
  2905. +fsf/libg++/libstdc++/csetjmp
  2906. +fsf/libg++/libstdc++/csignal
  2907. +fsf/libg++/libstdc++/cstdarg
  2908. +fsf/libg++/libstdc++/cstddef
  2909. +fsf/libg++/libstdc++/cstdio
  2910. +fsf/libg++/libstdc++/cstdlib
  2911. +fsf/libg++/libstdc++/cstdlibi.cc
  2912. +fsf/libg++/libstdc++/cstring
  2913. +fsf/libg++/libstdc++/cstringi.cc
  2914. +fsf/libg++/libstdc++/ctime
  2915. +fsf/libg++/libstdc++/cwchar
  2916. +fsf/libg++/libstdc++/cwctype
  2917. +fsf/libg++/libstdc++/deque
  2918. +fsf/libg++/libstdc++/exception
  2919. +fsf/libg++/libstdc++/exceptioni.cc
  2920. +fsf/libg++/libstdc++/functional
  2921. +fsf/libg++/libstdc++/iterator
  2922. +fsf/libg++/libstdc++/list
  2923. +fsf/libg++/libstdc++/map
  2924. +fsf/libg++/libstdc++/memory
  2925. +fsf/libg++/libstdc++/new
  2926. +fsf/libg++/libstdc++/new.h
  2927. +fsf/libg++/libstdc++/newi.cc
  2928. +fsf/libg++/libstdc++/numeric
  2929. +fsf/libg++/libstdc++/queue
  2930. +fsf/libg++/libstdc++/set
  2931. +fsf/libg++/libstdc++/sinst.cc
  2932. +fsf/libg++/libstdc++/stack
  2933. +fsf/libg++/libstdc++/std/bastring.cc
  2934. +fsf/libg++/libstdc++/std/bastring.h
  2935. +fsf/libg++/libstdc++/std/cassert.h
  2936. +fsf/libg++/libstdc++/std/cctype.h
  2937. +fsf/libg++/libstdc++/std/cerrno.h
  2938. +fsf/libg++/libstdc++/std/cfloat.h
  2939. +fsf/libg++/libstdc++/std/cinst.h
  2940. +fsf/libg++/libstdc++/std/ciso646.h
  2941. +fsf/libg++/libstdc++/std/climits.h
  2942. +fsf/libg++/libstdc++/std/clocale.h
  2943. +fsf/libg++/libstdc++/std/cmath.h
  2944. +fsf/libg++/libstdc++/std/complex.h
  2945. +fsf/libg++/libstdc++/std/complext.cc
  2946. +fsf/libg++/libstdc++/std/complext.h
  2947. +fsf/libg++/libstdc++/std/csetjmp.h
  2948. +fsf/libg++/libstdc++/std/csignal.h
  2949. +fsf/libg++/libstdc++/std/cstdarg.h
  2950. +fsf/libg++/libstdc++/std/cstddef.h
  2951. +fsf/libg++/libstdc++/std/cstdio.h
  2952. +fsf/libg++/libstdc++/std/cstdlib.h
  2953. +fsf/libg++/libstdc++/std/cstring.h
  2954. +fsf/libg++/libstdc++/std/ctime.h
  2955. +fsf/libg++/libstdc++/std/cwchar.h
  2956. +fsf/libg++/libstdc++/std/cwctype.h
  2957. +fsf/libg++/libstdc++/std/dcomplex.h
  2958. +fsf/libg++/libstdc++/std/exception.h
  2959. +fsf/libg++/libstdc++/std/fcomplex.h
  2960. +fsf/libg++/libstdc++/std/ldcomplex.h
  2961. +fsf/libg++/libstdc++/std/new.h
  2962. +fsf/libg++/libstdc++/std/sinst.h
  2963. +fsf/libg++/libstdc++/std/stddef.h
  2964. +fsf/libg++/libstdc++/std/stdexcept.h
  2965. +fsf/libg++/libstdc++/std/straits.h
  2966. +fsf/libg++/libstdc++/std/string.h
  2967. +fsf/libg++/libstdc++/std/typeinfo.h
  2968. +fsf/libg++/libstdc++/stddef
  2969. +fsf/libg++/libstdc++/stddefi.cc
  2970. +fsf/libg++/libstdc++/stdexcept
  2971. +fsf/libg++/libstdc++/stdexcepti.cc
  2972. +fsf/libg++/libstdc++/stl.h
  2973. +fsf/libg++/libstdc++/stl/ChangeLog
  2974. +fsf/libg++/libstdc++/stl/Makefile.in
  2975. +fsf/libg++/libstdc++/stl/README
  2976. +fsf/libg++/libstdc++/stl/algo.h
  2977. +fsf/libg++/libstdc++/stl/algobase.h
  2978. +fsf/libg++/libstdc++/stl/bool.h
  2979. +fsf/libg++/libstdc++/stl/bvector.h
  2980. +fsf/libg++/libstdc++/stl/configure.in
  2981. +fsf/libg++/libstdc++/stl/defalloc.h
  2982. +fsf/libg++/libstdc++/stl/deque.h
  2983. +fsf/libg++/libstdc++/stl/faralloc.h
  2984. +fsf/libg++/libstdc++/stl/fdeque.h
  2985. +fsf/libg++/libstdc++/stl/flist.h
  2986. +fsf/libg++/libstdc++/stl/fmap.h
  2987. +fsf/libg++/libstdc++/stl/fmultmap.h
  2988. +fsf/libg++/libstdc++/stl/fmultset.h
  2989. +fsf/libg++/libstdc++/stl/fset.h
  2990. +fsf/libg++/libstdc++/stl/function.h
  2991. +fsf/libg++/libstdc++/stl/hdeque.h
  2992. +fsf/libg++/libstdc++/stl/heap.h
  2993. +fsf/libg++/libstdc++/stl/hlist.h
  2994. +fsf/libg++/libstdc++/stl/hmap.h
  2995. +fsf/libg++/libstdc++/stl/hmultmap.h
  2996. +fsf/libg++/libstdc++/stl/hmultset.h
  2997. +fsf/libg++/libstdc++/stl/hset.h
  2998. +fsf/libg++/libstdc++/stl/hugalloc.h
  2999. +fsf/libg++/libstdc++/stl/hvector.h
  3000. +fsf/libg++/libstdc++/stl/iterator.h
  3001. +fsf/libg++/libstdc++/stl/lbvector.h
  3002. +fsf/libg++/libstdc++/stl/ldeque.h
  3003. +fsf/libg++/libstdc++/stl/list.h
  3004. +fsf/libg++/libstdc++/stl/llist.h
  3005. +fsf/libg++/libstdc++/stl/lmap.h
  3006. +fsf/libg++/libstdc++/stl/lmultmap.h
  3007. +fsf/libg++/libstdc++/stl/lmultset.h
  3008. +fsf/libg++/libstdc++/stl/lngalloc.h
  3009. +fsf/libg++/libstdc++/stl/lset.h
  3010. +fsf/libg++/libstdc++/stl/map.h
  3011. +fsf/libg++/libstdc++/stl/multimap.h
  3012. +fsf/libg++/libstdc++/stl/multiset.h
  3013. +fsf/libg++/libstdc++/stl/neralloc.h
  3014. +fsf/libg++/libstdc++/stl/nmap.h
  3015. +fsf/libg++/libstdc++/stl/nmultmap.h
  3016. +fsf/libg++/libstdc++/stl/nmultset.h
  3017. +fsf/libg++/libstdc++/stl/nset.h
  3018. +fsf/libg++/libstdc++/stl/pair.h
  3019. +fsf/libg++/libstdc++/stl/projectn.h
  3020. +fsf/libg++/libstdc++/stl/random.cc
  3021. +fsf/libg++/libstdc++/stl/set.h
  3022. +fsf/libg++/libstdc++/stl/stack.h
  3023. +fsf/libg++/libstdc++/stl/tempbuf.cc
  3024. +fsf/libg++/libstdc++/stl/tempbuf.h
  3025. +fsf/libg++/libstdc++/stl/tree.cc
  3026. +fsf/libg++/libstdc++/stl/tree.h
  3027. +fsf/libg++/libstdc++/stl/vector.h
  3028. +fsf/libg++/libstdc++/string
  3029. +fsf/libg++/libstdc++/tests/ChangeLog
  3030. +fsf/libg++/libstdc++/tests/Makefile.in
  3031. +fsf/libg++/libstdc++/tests/configure.in
  3032. +fsf/libg++/libstdc++/tests/tcomplex.cc
  3033. +fsf/libg++/libstdc++/tests/tcomplex.exp
  3034. +fsf/libg++/libstdc++/tests/tcomplex.inp
  3035. +fsf/libg++/libstdc++/tests/tlist.cc
  3036. +fsf/libg++/libstdc++/tests/tlist.exp
  3037. +fsf/libg++/libstdc++/tests/tmap.cc
  3038. +fsf/libg++/libstdc++/tests/tmap.exp
  3039. +fsf/libg++/libstdc++/tests/tstring.cc
  3040. +fsf/libg++/libstdc++/tests/tstring.exp
  3041. +fsf/libg++/libstdc++/tests/tstring.inp
  3042. +fsf/libg++/libstdc++/tests/tvector.cc
  3043. +fsf/libg++/libstdc++/tests/tvector.exp
  3044. +fsf/libg++/libstdc++/typeinfo
  3045. +fsf/libg++/libstdc++/typeinfoi.cc
  3046. +fsf/libg++/libstdc++/utility
  3047. +fsf/libg++/libstdc++/vector
  3048. +fsf/libg++/manifests/bin
  3049. +fsf/libg++/manifests/src
  3050. +fsf/libg++/move-if-change
  3051. +fsf/libg++/mpw-README
  3052. +fsf/libg++/mpw-build.in
  3053. +fsf/libg++/mpw-config.in
  3054. +fsf/libg++/mpw-configure
  3055. +fsf/libg++/texinfo/gpl.texinfo
  3056. +fsf/libg++/texinfo/lgpl.texinfo
  3057. +fsf/libg++/texinfo/tex3patch
  3058. +fsf/libg++/texinfo/texinfo.tex
  3059.