Browse Source

* */*: Removed problematic stdin, stdout and stderr definitions.

Use std::cin, std::cout, std::cerr instead (obsoletes 2000-10-29).
        * Makefile.devel: Use bzip2.
        * Makefile.in: Target maintainer-clean remove cln-config cln-config.1.
master
Richard Kreckel 24 years ago
parent
commit
5769ad250e
  1. 5
      ChangeLog
  2. 6
      Makefile.devel
  3. 2
      Makefile.in

5
ChangeLog

@ -1,3 +1,8 @@
2000-11-24 Richard Kreckel <kreckel@ginac.de>
* */*: Removed problematic stdin, stdout and stderr definitions.
Use std::cin, std::cout, std::cerr instead (obsoletes 2000-10-29).
2000-11-20 Bruno Haible 2000-11-20 Bruno Haible
* cln-config.1: change title. * cln-config.1: change title.

6
Makefile.devel

@ -7,10 +7,10 @@ SHELL = /bin/sh
MAKE = make MAKE = make
# GNU tar together with GNU gzip. Excellent performance.
# GNU tar together with GNU bzip2. Excellent performance.
PACK = tar PACK = tar
PACKOPT = cvfhz
PACKEXT = .tar.z
PACKOPT = cvfhI
PACKEXT = .tar.bz2
all : configures documentation all : configures documentation

2
Makefile.in

@ -67,7 +67,7 @@ distclean : force
maintainer-clean : force maintainer-clean : force
cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
$(RM) config.status config.log config.cache Makefile $(RM) config.status config.log config.cache Makefile
$(RM) cln-config
$(RM) cln-config cln-config.1 cln.spec
$(RM) libtool $(RM) libtool
$(RM) include/cln/config.h include/cln/intparam.h include/cln/floatparam.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h $(RM) include/cln/config.h include/cln/intparam.h include/cln/floatparam.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h

Loading…
Cancel
Save