From f2cc99c25654f421f3a38d1ea44ee8af29478c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Fonseca?= Date: Wed, 9 Oct 2019 00:17:10 +0200 Subject: [PATCH] Clean up. --- Makefile.am | 60 --------- Makefile.dist | 110 ---------------- base/Makefile.am | 224 --------------------------------- base/archive/Makefile.am | 21 ---- base/base.rc | 2 +- base/collection/Makefile.am | 57 --------- base/communication/Makefile.am | 23 ---- base/compression/Makefile.am | 35 ------ base/concurrency/Makefile.am | 78 ------------ base/dl/Makefile.am | 24 ---- base/docs/.cvsignore | 3 - base/docs/Makefile.am | 16 --- base/docs/en/.cvsignore | 3 - base/docs/en/Makefile.am | 16 --- base/docs/en/index-1.html | 28 ----- base/docs/en/index-2.html | 58 --------- base/docs/en/index-3.html | 27 ---- base/docs/en/index-4.html | 24 ---- base/docs/en/index-5.html | 24 ---- base/docs/en/index-6.html | 37 ------ base/docs/en/index.html | 55 -------- base/docs/en/index.sgml | 74 ----------- base/extension/Makefile.am | 48 ------- base/extension/extension.am | 0 base/filesystem/Makefile.am | 21 ---- base/io/Makefile.am | 86 ------------- base/io/async/Makefile.am | 21 ---- base/iterator/Makefile.am | 21 ---- base/mathematics/Makefile.am | 48 ------- base/mem/Makefile.am | 62 --------- base/net/InetAddress.h | 4 +- base/net/InetEndPoint.h | 2 +- base/net/Makefile.am | 49 -------- base/net/Uri.h | 2 +- base/net/Url.h | 2 +- base/opengl/Makefile.am | 29 ----- base/platforms/Makefile.am | 54 -------- base/rmi/Makefile.am | 21 ---- base/rmi/OrbEncoding.h | 2 +- base/security/Makefile.am | 51 -------- base/sound/Makefile.am | 27 ---- base/string/Makefile.am | 54 -------- base/templates/.cvsignore | 3 - base/ui/Makefile.am | 65 ---------- base/xml/Makefile.am | 78 ------------ common.am | 18 --- config/Makefile.am | 4 - configure.ac | 2 +- static/Makefile.am | 25 ---- testsuite/Makefile.am | 148 ---------------------- testsuite/Makefile.dist | 86 ------------- testsuite/Makefile.test | 2 +- testsuite/io.cpp | 2 +- testsuite/orb/Makefile.am | 24 ---- testsuite/ui/Makefile.am | 26 ---- 55 files changed, 10 insertions(+), 2076 deletions(-) delete mode 100644 Makefile.am delete mode 100644 Makefile.dist delete mode 100644 base/Makefile.am delete mode 100644 base/archive/Makefile.am delete mode 100644 base/collection/Makefile.am delete mode 100644 base/communication/Makefile.am delete mode 100644 base/compression/Makefile.am delete mode 100644 base/concurrency/Makefile.am delete mode 100644 base/dl/Makefile.am delete mode 100644 base/docs/.cvsignore delete mode 100644 base/docs/Makefile.am delete mode 100644 base/docs/en/.cvsignore delete mode 100644 base/docs/en/Makefile.am delete mode 100644 base/docs/en/index-1.html delete mode 100644 base/docs/en/index-2.html delete mode 100644 base/docs/en/index-3.html delete mode 100644 base/docs/en/index-4.html delete mode 100644 base/docs/en/index-5.html delete mode 100644 base/docs/en/index-6.html delete mode 100644 base/docs/en/index.html delete mode 100644 base/docs/en/index.sgml delete mode 100644 base/extension/Makefile.am delete mode 100644 base/extension/extension.am delete mode 100644 base/filesystem/Makefile.am delete mode 100644 base/io/Makefile.am delete mode 100644 base/io/async/Makefile.am delete mode 100644 base/iterator/Makefile.am delete mode 100644 base/mathematics/Makefile.am delete mode 100644 base/mem/Makefile.am delete mode 100644 base/net/Makefile.am delete mode 100644 base/opengl/Makefile.am delete mode 100644 base/platforms/Makefile.am delete mode 100644 base/rmi/Makefile.am delete mode 100644 base/security/Makefile.am delete mode 100644 base/sound/Makefile.am delete mode 100644 base/string/Makefile.am delete mode 100644 base/templates/.cvsignore delete mode 100644 base/ui/Makefile.am delete mode 100644 base/xml/Makefile.am delete mode 100644 common.am delete mode 100644 config/Makefile.am delete mode 100644 static/Makefile.am delete mode 100644 testsuite/Makefile.am delete mode 100644 testsuite/Makefile.dist delete mode 100644 testsuite/orb/Makefile.am delete mode 100644 testsuite/ui/Makefile.am diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 5aa8d4dc..00000000 --- a/Makefile.am +++ /dev/null @@ -1,60 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -DEFS = -AUTOMAKE_OPTIONS = 1.4 foreign nostdinc dist-bzip2 dist-zip - -SUBDIRS = config static base # testsuite - -dist-hook: -# generate doxygen documentation - -module-testsuite-configure: - @if test ! -f testsuite/Makefile; then \ - echo "Configuring test suite..."; \ - MODULE_CC="@CC@"; \ - MODULE_CFLAGS="@CFLAGS@"; \ - MODULE_CXX="@CXX@"; \ - MODULE_CXXFLAGS="@CXXFLAGS@"; \ - MODULE_CPPFLAGS="@CPPFLAGS@"; \ - MODULE_LDFLAGS="@LDFLAGS@"; \ - mkdir -p testsuite; \ - if (cd testsuite; \ - export CC="$${MODULE_CC}"; \ - export CFLAGS="$${MODULE_CFLAGS}"; \ - export CXX="$${MODULE_CXX}"; \ - export CXXFLAGS="$${MODULE_CXXFLAGS}"; \ - export CPP="$${MODULE_CPP}"; \ - export CXXCPP="$${MODULE_CXXCPP}"; \ - export CPPFLAGS="-I.. -I../${srcdir}$${MODULE_CPPFLAGS:+ }$${MODULE_CPPFLAGS}"; \ - export LDFLAGS="-L../base$${MODULE_LDFLAGS:+ }$${MODULE_LDFLAGS}"; \ - ../${srcdir}/testsuite/configure @MODULE_ARGUMENTS_BASE@); then \ - echo "Test suite has been configured"; \ - else \ - echo "Test suite configuration failed"; \ - exit 1; \ - fi \ - fi -.phony: module-testsuite-configure - -module-testsuite-build: module-testsuite-configure - @echo "Building test suite" - @if test -f testsuite/Makefile; then \ - make -C testsuite; \ - fi -.phony: module-testsuite-build - -testsuite: module-testsuite-build -.phony: testsuite - -EXTRA_DIST = base.kdevprj AUTHORS COPYING ChangeLog INSTALL README TODO base.lsm common.am base.spec diff --git a/Makefile.dist b/Makefile.dist deleted file mode 100644 index 97b98e3b..00000000 --- a/Makefile.dist +++ /dev/null @@ -1,110 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -all: - aclocal - automake - autoconf - -dist: - @echo "This file is to make it easier for you to create all you need" - aclocal -# use --include-deps, if you want to release the stuff. Don't use it for -# yourself - automake --include-deps - autoconf - touch stamp-h.in - LIST=`find ./po -name "*.po"`; \ - for i in $$LIST; do \ - file2=`echo $$i | sed -e "s#\.po#\.gmo#"`; \ - msgfmt -o $$file2 $$i; \ - done - rm -f Makefile.dist - -debug: all - CXXFLAGS="-O0 -g3 -ansi" ./configure --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -normal: all - CXXFLAGS="-O2 -g2 -ansi" ./configure --prefix=/usr/local/base --enable-debug - -final: all - CXXFLAGS="-O3 -ansi" ./configure --prefix=/usr/local/base - - - -lendum-gcc-2.96: all - CC=/usr/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none" BASE_LIBS="-lm" ./configure --target=i386-pc-linux --prefix=/usr/local/base --enable-debug --enable-demangle=gccv2 --enable-regexp=pcre --enable-xml=xmlsoft - -lendum-gcc-3.0.4: all - CC="/usr/local/gcc-3.0.4/bin/gcc" CFLAGS="-pipe -x c" CXX="/usr/local/gcc-3.0.4/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none" BASE_LIBS="`/usr/local/gcc-3.0.4/bin/gcc -print-file-name=libgcc.a` `/usr/local/gcc-3.0.4/bin/gcc -print-file-name=libsupc++.a` -lm" ./configure --target=i386-pc-linux --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-regexp=pcre --enable-xml=xmlsoft - -lendum-gcc-3.0.4-profiling: all - CC="/usr/local/gcc-3.0.4/bin/gcc" CFLAGS="-pipe -x c" CXX="/usr/local/gcc-3.0.4/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O3 -g0 -pg -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations" LDFLAGS="-x none" BASE_LIBS="`/usr/local/gcc-3.0.4/bin/gcc -print-file-name=libgcc.a` `/usr/local/gcc-3.0.4/bin/gcc -print-file-name=libsupc++.a` -lm" ./configure --target=i686-pc-linux --prefix=/usr/local/base --enable-testsuite --enable-regexp=pcre --enable-xml=xmlsoft - -lendum-gcc-3.0.4-release: all - CC="/usr/local/gcc-3.0.4/bin/gcc" CFLAGS="-pipe -x c" CXX="/usr/local/gcc-3.0.4/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" BASE_LIBS="`/usr/local/gcc-3.0.4/bin/gcc -print-file-name=libgcc.a` `/usr/local/gcc-3.0.4/bin/gcc -print-file-name=libsupc++.a` -lm" ./configure --target=i686-pc-linux --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-regexp=pcre --enable-xml=xmlsoft - -# -g3 causes segmentation fault -lendum-gcc-3.1-release: all - CC="/usr/local/gcc-3.1/bin/gcc" CFLAGS="-pipe -x c" CXX="/usr/local/gcc-3.1/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O3 -g2 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" BASE_LIBS="`/usr/local/gcc-3.1/bin/gcc -print-file-name=libgcc.a` `/usr/local/gcc-3.1/bin/gcc -print-file-name=libsupc++.a` -lm" ./configure --target=i686-pc-linux --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-regexp=pcre --enable-xml=xmlsoft - -falster-gcc-3.0.4: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.0.4/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.0.4/lib" BASE_LIBS="-lsupc++ -lm" ./configure --target=sparc-sun-solaris --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -falster-gcc-3.0.4-release: - CC=/home/fonseca/gnu/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c" CXX=/home/fonseca/gnu/gcc-3.0.4/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -mcpu=ultrasparc -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fno-keep-static-consts" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.0.4/lib" BASE_LIBS="-lsupc++ -lm" configure --target=sparc-sun-solaris --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -falster-gcc-3.1-release: - CC=/home/fonseca/gnu/gcc-3.1/bin/gcc CFLAGS="-pipe -x c" CXX=/home/fonseca/gnu/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -mcpu=ultrasparc -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fno-keep-static-consts" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.1/lib" BASE_LIBS="-lsupc++ -lm" configure --target=sparc-sun-solaris --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -falster-gcc-3.1-64bit-release: - CC=/home/fonseca/gnu/gcc-3.1/bin/gcc CFLAGS="-pipe -x c -m64" CXX=/home/fonseca/gnu/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -mcpu=ultrasparc -m64 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fno-keep-static-consts" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.1/lib/sparcv9" BASE_LIBS="-lsupc++ -lm" configure --target=sparcv9-sun-solaris --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -fyn-gcc-3.0.4: all - CC="/home/fonseca/gnu/gcc-3.0.4/bin/gcc" CFLAGS="-pipe -x c" CXX="/home/fonseca/gnu/gcc-3.0.4/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.0.4/lib" BASE_LIBS="-lsupc++ -lm" ./configure --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -fyn-gcc-3.0.4-release: all - CC="/home/fonseca/gnu/gcc-3.0.4/bin/gcc" CFLAGS="-pipe -x c" CXX="/home/fonseca/gnu/gcc-3.0.4/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.0.4/lib" BASE_LIBS="-lsupc++ -lm" ./configure --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -fyn-gcc-3.1-release: all - CC="/home/fonseca/gnu/gcc-3.1/bin/gcc" CFLAGS="-pipe -x c" CXX="/home/fonseca/gnu/gcc-3.1/bin/gcc" CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.1/lib" BASE_LIBS="-lsupc++ -lm" ./configure --prefix=/usr/local/base --enable-debug --enable-regexp=posix - -klampenborg-cygwin-gcc-3.0.4: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.0.4/bin/g++ CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none" BASE_LIBS="-Wl,-L/usr/local/gcc-3.0.4/lib -Wl,-lstdc++" configure --target=i386-pc-cygwin --prefix=/usr/local/base --enable-debug --enable-regexp=pcre - -klampenborg-cygwin-gcc-3.0.4-release: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c -ansi" CXX=/usr/local/gcc-3.0.4/bin/g++ CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" BASE_LIBS="-Wl,-L/usr/local/gcc-3.0.4/lib -Wl,-lstdc++" configure --target=i686-pc-cygwin --prefix=/usr/local/base --enable-regexp=pcre - -klampenborg-cygwin-gcc-3.1: - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -x c -ansi" CXX=/usr/local/gcc-3.1/bin/g++ CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none" BASE_LIBS="-Wl,-L/usr/local/gcc-3.1/lib -Wl,-lstdc++" configure --target=i386-pc-cygwin --prefix=/usr/local/base --enable-debug --enable-regexp=pcre - -klampenborg-cygwin-gcc-3.1-release: - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -x c -ansi" CXX=/usr/local/gcc-3.1/bin/g++ CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" BASE_LIBS="-Wl,-L/usr/local/gcc-3.1/lib -Wl,-lstdc++" configure --target=i686-pc-cygwin --prefix=/usr/local/base --enable-regexp=pcre - -klampenborg-gcc: - CC=/usr/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c -ansi" CXX=/usr/bin/gcc CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O0 -g3" LDFLAGS="-x none" configure --build=i386-pc-mingw32 --prefix=/usr/local/base --disable-shared --enable-debug --disable-demangle --disable-regexp - -klampenborg-gcc-3.0.4: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c -ansi" CXX=/usr/local/gcc-3.0.4/bin/gcc CPPFLAGS="-I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward -I/usr/include/mingw/g++-3" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O0 -g3" LDFLAGS="-x none" BASE_LIBS="-L/usr/local/gcc-3.0.3/lib/gcc-lib/i386-pc-mingw32/3.0.3 -lsupc++" configure --build=i386-pc-mingw32 --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-memory --enable-regexp=no - -klampenborg-gcc-3.0.4-profiling: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.0.4/bin/gcc CPPFLAGS="-I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward -I/usr/include/mingw/g++-3" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations" LDFLAGS="-x none" BASE_LIBS="-L/usr/local/gcc-3.0.3/lib/gcc-lib/i386-pc-mingw32/3.0.3 -lsupc++" configure --build=i686-pc-mingw32 --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-regexp=no - -klampenborg-gcc-3.0.4-release: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.0.4/bin/gcc CPPFLAGS="-I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward -I/usr/include/mingw/g++-3" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" BASE_LIBS="-L/usr/local/gcc-3.0.3/lib/gcc-lib/i386-pc-mingw32/3.0.3 -lsupc++" configure --build=i686-pc-mingw32 --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-regexp=no - -klampenborg-gcc-3.1: - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.1/bin/gcc CPPFLAGS="-I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward -I/usr/include/mingw/g++-3" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O0 -g3" LDFLAGS="-x none" BASE_LIBS="-L/usr/local/gcc-3.0.3/lib/gcc-lib/i386-pc-mingw32/3.0.3 -lsupc++" configure --build=i386-pc-mingw32 --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-memory --enable-regexp=no - -klampenborg-gcc-3.1-release: - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.1/bin/gcc CPPFLAGS="-I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" BASE_LIBS="-L/usr/local/gcc-3.0.3/lib/gcc-lib/i386-pc-mingw32/3.0.3 -lsupc++" configure --build=i686-pc-mingw32 --prefix=/usr/local/base --enable-testsuite --enable-debug --enable-experimental --enable-extensions --enable-regexp=no diff --git a/base/Makefile.am b/base/Makefile.am deleted file mode 100644 index 753ec7f2..00000000 --- a/base/Makefile.am +++ /dev/null @@ -1,224 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2006 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -# the "platforms" directory must be built before all other sources -SUBDIRS = \ - docs \ - platforms \ - archive \ - collection \ - communication \ - compression \ - concurrency \ - dl \ - extension \ - filesystem \ - io \ - iterator \ - mathematics \ - mem \ - net \ - rmi \ - security \ - sound \ - string \ - xml \ - opengl \ - ui - -lib_LTLIBRARIES = libbase.la - -libbase_la_SOURCES = \ - AnyValue.cpp \ - Architecture.cpp \ - ArgumentException.cpp \ - ArgumentParser.cpp \ - Cast.cpp \ - CastException.cpp \ - Character.cpp \ - Construct.cpp \ - Date.cpp \ - DateException.cpp \ - Destruct.cpp \ - DeviceException.cpp \ - Dimension.cpp \ - Double.cpp \ - Exception.cpp \ - Float.cpp \ - FloatingPoint.cpp \ - Integer.cpp \ - Interface.cpp \ - InvalidException.cpp \ - UnsignedInteger.cpp \ - LongDouble.cpp \ - LongInteger.cpp \ - UnsignedLongInteger.cpp \ - MemoryException.cpp \ - Object.cpp \ - OutOfBounds.cpp \ - OutOfDomain.cpp \ - OutOfRange.cpp \ - Overflow.cpp \ - Owner.cpp \ - Polymorphic.cpp \ - Primitives.cpp \ - Property.cpp \ - Range2D.cpp \ - ResourceException.cpp \ - ShortInteger.cpp \ - Underflow.cpp \ - Trace.cpp \ - Timer.cpp \ - Type.cpp \ - TypeInfo.cpp \ - Application.cpp \ - SingletonException.cpp \ - Daemon.cpp \ - SystemLogger.cpp \ - NotImplemented.cpp \ - NotSupported.cpp \ - UnexpectedFailure.cpp \ - ValidifiedResult.cpp \ - Version.cpp \ - OperatingSystem.cpp \ - SystemInformation.cpp \ - ProcessPreinitialization.cpp \ - initialization.cpp - -sectiondir = $(includedir)/base -section_HEADERS = \ - configuration.h \ - features.h \ - AnyValue.h \ - Architecture.h \ - ArgumentException.h \ - ArgumentParser.h \ - AutomationObject.h \ - Cast.h \ - CastException.h \ - Dimension.h \ - Double.h \ - Exception.h \ - Float.h \ - FloatingPoint.h \ - Object.h \ - Character.h \ - Range2D.h \ - GetFunctionResult.h \ - GetMethodResult.h \ - IsSame.h \ - ShortInteger.h \ - Iterator.h \ - Trace.h \ - RandomIterator.h \ - ForwardIterator.h \ - BidirectionalIterator.h \ - Integer.h \ - Interface.h \ - InvalidException.h \ - UnsignedInteger.h \ - Literal.h \ - LongDouble.h \ - LongInteger.h \ - UnsignedLongInteger.h \ - Overflow.h \ - Underflow.h \ - OutOfRange.h \ - OutOfBounds.h \ - OutOfDomain.h \ - Owner.h \ - Polymorphic.h \ - Primitives.h \ - Property.h \ - ResourceException.h \ - MemoryException.h \ - DeviceException.h \ - Construct.h \ - Destruct.h \ - Base.h \ - Functor.h \ - Date.h \ - DateException.h \ - Listener.h \ - Timer.h \ - Type.h \ - TypeInfo.h \ - TypeOf.h \ - Unspecified.h \ - ByteOrder.h \ - Application.h \ - SingletonException.h \ - Daemon.h \ - SystemLogger.h \ - NotCopyable.h \ - NotImplemented.h \ - NotSupported.h \ - UnexpectedFailure.h \ - ValidifiedResult.h \ - Version.h \ - WideLiteral.h \ - OperatingSystem.h \ - SystemInformation.h \ - ProcessPreinitialization.h - -libbase_la_LIBADD = archive/libarchive.la \ - collection/libcollection.la \ - communication/libcommunication.la \ - compression/libcompression.la \ - concurrency/libconcurrency.la \ - filesystem/libfilesystem.la \ - io/libio.la \ - io/async/libaio.la \ - iterator/libiterator.la \ - mathematics/libmathematics.la \ - mem/libmem.la \ - net/libnet.la \ - platforms/libplatform.la \ - string/libstring.la \ - dl/libdl.la \ - xml/libxml.la \ - rmi/librmi.la \ - security/libsecurity.la \ - sound/libsound.la \ - opengl/libopengl.la \ - ui/libui.la @LIBADD_BASE@ @LIBS_BASE@ - -libbase_la_LDFLAGS = -no-undefined -version-info 0:0:0 @LDFLAGS_BASE@ - -libbase_la_DEPENDENCIES = archive/libarchive.la \ - collection/libcollection.la \ - communication/libcommunication.la \ - compression/libcompression.la \ - concurrency/libconcurrency.la \ - filesystem/libfilesystem.la \ - io/libio.la \ - io/async/libaio.la \ - iterator/libiterator.la \ - mathematics/libmathematics.la \ - mem/libmem.la \ - net/libnet.la \ - platforms/libplatform.la \ - string/libstring.la \ - dl/libdl.la \ - xml/libxml.la \ - rmi/librmi.la \ - security/libsecurity.la \ - sound/libsound.la \ - opengl/libopengl.la \ - ui/libui.la @DEPENDENCIES_BASE@ - -# Windows version resource -win32rc.o: base.rc features.h - cat $< | ${WINDRES} --preprocessor "${CPP} ${AM_CPPFLAGS} ${CPPFLAGS}" -o $@ --output-format coff diff --git a/base/archive/Makefile.am b/base/archive/Makefile.am deleted file mode 100644 index 45f1b41e..00000000 --- a/base/archive/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libarchive.la - -libarchive_la_SOURCES = archive.cpp - -sectiondir = $(includedir)/base/archive -section_HEADERS = diff --git a/base/base.rc b/base/base.rc index 77913dd4..6d67c6b5 100644 --- a/base/base.rc +++ b/base/base.rc @@ -37,7 +37,7 @@ BEGIN BLOCK "040904e4" BEGIN - VALUE "Comments", "Written by Ren� M�ller Fonseca . This framework is distributed under the GNU General Public License Version 2, June 1991.\0" + VALUE "Comments", "This framework is distributed under the GNU General Public License Version 2, June 1991.\0" VALUE "CompanyName", "Ren� M�ller Fonseca \0" VALUE "FileDescription", "A framework for developing platform independent applications\0" VALUE "FileVersion", _DK_SDU_MIP__BASE__VERSION "\0" diff --git a/base/collection/Makefile.am b/base/collection/Makefile.am deleted file mode 100644 index 7a384ec5..00000000 --- a/base/collection/Makefile.am +++ /dev/null @@ -1,57 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libcollection.la - -libcollection_la_SOURCES = \ - AlreadyKeyException.cpp \ - AmbiguousRegistration.cpp \ - BitSet.cpp \ - EndOfEnumeration.cpp \ - HashSet.cpp \ - HashTable.cpp \ - InvalidEnumeration.cpp \ - InvalidKey.cpp \ - InvalidNode.cpp - -sectiondir = $(includedir)/base/collection -section_HEADERS = \ - AlreadyKeyException.h \ - AmbiguousRegistration.h \ - Array.h \ - Association.h \ - BinaryNode.h \ - BinaryTree.h \ - BitSet.h \ - Collection.h \ - DoubleLinkedNode.h \ - EndOfEnumeration.h \ - Enumeration.h \ - Functor.h \ - Hash.h \ - HashSet.h \ - HashTable.h \ - InvalidEnumeration.h \ - InvalidKey.h \ - InvalidNode.h \ - List.h \ - Map.h \ - OrderedBinaryTree.h \ - Pair.h \ - PriorityQueue.h \ - Queue.h \ - Set.h \ - SingleLinkedNode.h \ - Stack.h diff --git a/base/communication/Makefile.am b/base/communication/Makefile.am deleted file mode 100644 index 3b496643..00000000 --- a/base/communication/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libcommunication.la - -libcommunication_la_SOURCES = CommunicationsException.cpp CommunicationsPort.cpp DummyIEEE1394.cpp EUI64.cpp IEEE1394.cpp IEEE1394Exception.cpp IEEE1394Impl.cpp SerialPort.cpp - -sectiondir = $(includedir)/base/communication -section_HEADERS = CommunicationsException.h CommunicationsPort.h DummyIEEE1394.h EUI64.h IEEE1394.h IEEE1394Exception.h IEEE1394Common.h IEEE1394Impl.h SerialPort.h - -EXTRA_DIST = LinuxRawIEEE1394.h LinuxRawIEEE1394.cpp diff --git a/base/compression/Makefile.am b/base/compression/Makefile.am deleted file mode 100644 index 96984241..00000000 --- a/base/compression/Makefile.am +++ /dev/null @@ -1,35 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libcompression.la - -libcompression_la_SOURCES = \ - BZip2Deflater.cpp \ - BZip2Inflater.cpp \ - Deflater.cpp \ - Inflater.cpp \ - Huffman.cpp \ - ZLibDeflater.cpp \ - ZLibInflater.cpp - -sectiondir = $(includedir)/base/compression -section_HEADERS = \ - BZip2Deflater.h \ - BZip2Inflater.h \ - Deflater.h \ - Inflater.h \ - Huffman.h \ - ZLibDeflater.h \ - ZLibInflater.h diff --git a/base/concurrency/Makefile.am b/base/concurrency/Makefile.am deleted file mode 100644 index 607c29a7..00000000 --- a/base/concurrency/Makefile.am +++ /dev/null @@ -1,78 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libconcurrency.la - -libconcurrency_la_SOURCES = \ - AtomicCounter.cpp \ - Barrier.cpp \ - ConcurrencyException.cpp \ - Event.cpp \ - EventException.cpp \ - ExclusiveSynchronize.cpp \ - Lock.cpp \ - LockException.cpp \ - MutualExclusion.cpp \ - MutualExclusionException.cpp \ - NISpinLock.cpp \ - Once.cpp \ - Process.cpp \ - ReadWriteLock.cpp \ - ReadWriteLockException.cpp \ - ReadWriteSpinLock.cpp \ - RecursiveMutualExclusion.cpp \ - RecursiveSpinLock.cpp \ - Semaphore.cpp \ - SemaphoreException.cpp \ - SharedSynchronize.cpp \ - SingleExclusiveSynchronize.cpp \ - SpinLock.cpp \ - Synchronize.cpp \ - Synchronizeable.cpp \ - Thread.cpp \ - ThreadKey.cpp \ - ThreadPool.cpp - -sectiondir = $(includedir)/base/concurrency -section_HEADERS = \ - AtomicCounter.h \ - Barrier.h \ - ConcurrencyException.h \ - Event.h \ - EventException.h \ - ExclusiveSynchronize.h \ - Lock.h \ - LockException.h \ - MutualExclusion.h \ - MutualExclusionException.h \ - NISpinLock.h \ - Once.h \ - Process.h \ - ReadWriteLock.h \ - ReadWriteLockException.h \ - ReadWriteSpinLock.h \ - RecursiveMutualExclusion.h \ - RecursiveSpinLock.h \ - Runnable.h \ - Semaphore.h \ - SemaphoreException.h \ - SharedSynchronize.h \ - SingleExclusiveSynchronize.h \ - SpinLock.h \ - Synchronize.h \ - Synchronizeable.h \ - Thread.h \ - ThreadKey.h \ - ThreadPool.h diff --git a/base/dl/Makefile.am b/base/dl/Makefile.am deleted file mode 100644 index c88bb66e..00000000 --- a/base/dl/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libdl.la libmodule.la - -libdl_la_SOURCES = LinkerException.cpp DynamicLinker.cpp LinkerModule.cpp LinkerManager.cpp - -sectiondir = $(includedir)/base/dl -section_HEADERS = LinkerException.h DynamicLinker.h LinkerModule.h LinkerManager.h - -libmodule_la_SOURCES = module.cpp -libmodule_la_LDFLAGS = -nostartfiles diff --git a/base/docs/.cvsignore b/base/docs/.cvsignore deleted file mode 100644 index 29863825..00000000 --- a/base/docs/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Makefile -Makefile.in -*.moc.cpp diff --git a/base/docs/Makefile.am b/base/docs/Makefile.am deleted file mode 100644 index 59e2533a..00000000 --- a/base/docs/Makefile.am +++ /dev/null @@ -1,16 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -SUBDIRS = en diff --git a/base/docs/en/.cvsignore b/base/docs/en/.cvsignore deleted file mode 100644 index 29863825..00000000 --- a/base/docs/en/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Makefile -Makefile.in -*.moc.cpp diff --git a/base/docs/en/Makefile.am b/base/docs/en/Makefile.am deleted file mode 100644 index e9e6daac..00000000 --- a/base/docs/en/Makefile.am +++ /dev/null @@ -1,16 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -EXTRA_DIST = index.html index-1.html index-2.html index-3.html index-4.html index-5.html index-6.html diff --git a/base/docs/en/index-1.html b/base/docs/en/index-1.html deleted file mode 100644 index 21aa74da..00000000 --- a/base/docs/en/index-1.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - The Ellert Handbook: Introduction - - - - - -Next -Previous -Contents -
-

1. Introduction

- -

-

1.1 Changes -

- -

-

-


-Next -Previous -Contents - - diff --git a/base/docs/en/index-2.html b/base/docs/en/index-2.html deleted file mode 100644 index b348fc41..00000000 --- a/base/docs/en/index-2.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - The Ellert Handbook: Installation - - - - - -Next -Previous -Contents -
-

2. Installation

- -

-

2.1 How to obtain Ellert -

- -

-

-

2.2 Requirements -

- -

-

-

2.3 Compilation and installation -

- -

-

In order to compile and install Ellert on your system, type the following in -the base directory of the Ellert distribution: -

-

-
-% ./configure
-% make
-% make install
-
-
-

-

Since Ellert uses -

-autoconf
-
- you should have not trouble -compiling it. -Should you run into problems please report them to the the author at -René Møller Fonseca

-

-

-


-Next -Previous -Contents - - diff --git a/base/docs/en/index-3.html b/base/docs/en/index-3.html deleted file mode 100644 index 492514d0..00000000 --- a/base/docs/en/index-3.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - The Ellert Handbook: Usage - - - - - -Next -Previous -Contents -
-

3. Usage

- -

-

3.1 General Usage -

- -

-


-Next -Previous -Contents - - diff --git a/base/docs/en/index-4.html b/base/docs/en/index-4.html deleted file mode 100644 index a90f48c7..00000000 --- a/base/docs/en/index-4.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - The Ellert Handbook: Another Section - - - - - -Next -Previous -Contents -
-

4. Another Section

- -

-

-


-Next -Previous -Contents - - diff --git a/base/docs/en/index-5.html b/base/docs/en/index-5.html deleted file mode 100644 index 1a62e196..00000000 --- a/base/docs/en/index-5.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - The Ellert Handbook: Questions and Answers - - - - - -Next -Previous -Contents -
-

5. Questions and Answers

- -

-

-


-Next -Previous -Contents - - diff --git a/base/docs/en/index-6.html b/base/docs/en/index-6.html deleted file mode 100644 index d220c717..00000000 --- a/base/docs/en/index-6.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - The Ellert Handbook: Copyright - - - - -Next -Previous -Contents -
-

6. Copyright

- -

-

Ellert Copyright 2000 René Møller Fonseca , fonseca@mip.sdu.dk -

-

This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. -

This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -

You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -

-

-


-Next -Previous -Contents - - diff --git a/base/docs/en/index.html b/base/docs/en/index.html deleted file mode 100644 index e7815b40..00000000 --- a/base/docs/en/index.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - The Ellert Handbook - - - - - -Next -Previous -Contents -
-

The Ellert Handbook

- -

René Møller Fonseca fonseca@mip.sdu.dk

Version 0.1 , Thu Aug 17 17:04:57 CEST 2000 -


-This Handbook describes Ellert Version 0.1 -
-

-

1. Introduction

- - -

-

2. Installation

- - -

-

3. Usage

- - -

-

4. Another Section

- -

-

5. Questions and Answers

- -

-

6. Copyright

- -
-Next -Previous -Contents - - diff --git a/base/docs/en/index.sgml b/base/docs/en/index.sgml deleted file mode 100644 index 56927f6b..00000000 --- a/base/docs/en/index.sgml +++ /dev/null @@ -1,74 +0,0 @@ - - -
-The Ellert Handbook -<author>René Møller Fonseca <tt>fonseca@mip.sdu.dk</tt> -<date>Version 0.1 , Thu Aug 17 17:04:57 CEST 2000 -<abstract> -This Handbook describes Ellert Version 0.1 -</abstract> - -<toc> - -<sect>Introduction -<p> -<sect1>Changes -<p> - -<sect>Installation -<p> -<sect1>How to obtain Ellert -<p> - -<sect1>Requirements -<p> - -<sect1>Compilation and installation -<p> - -In order to compile and install Ellert on your system, type the following in -the base directory of the Ellert distribution: - -<tscreen><verb> -% ./configure -% make -% make install -</verb></tscreen> - -<p> -Since Ellert uses <verb>autoconf</verb> you should have not trouble -compiling it. -Should you run into problems please report them to the the author at -<htmlurl url="mailto:fonseca@mip.sdu.dk" name = "René Møller Fonseca"> - - -<p> -<sect> Usage <p> -<sect1> General Usage -<p> -<sect> Another Section -<p> - -<sect>Questions and Answers<p> - -<sect>Copyright<p> - -Ellert Copyright 2000 René Møller Fonseca , fonseca@mip.sdu.dk - - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -<p> -</article> diff --git a/base/extension/Makefile.am b/base/extension/Makefile.am deleted file mode 100644 index 116e6aa8..00000000 --- a/base/extension/Makefile.am +++ /dev/null @@ -1,48 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -AUTOMAKE_OPTIONS += no-dependencies - -noinst_LTLIBRARIES = libextension.la - -BUILT_SOURCES = extension.h - -sectiondir = $(includedir)/base/extension - -if EXTENSIONS - -include extension.am - -${srcdir}/Makefile.am: extension.am - -extension.h extension.am: - ${srcdir}/findextensions.sh ${srcdir} - -else - -libextension_la_SOURCES = -nobase_section_HEADERS = extension.h - -extension.h: ${srcdir}/Makefile.in - @echo Generating dummy extension header file - @echo "/* This is an automatically generated file. Do NOT edit. */" > extension.h - @echo "/* Extensions have not been enabled */" >> extension.h - -extension.am: - @echo Generating dummy extension automake file - @echo "# This is an automatically generated file. Do NOT edit." > extension.am - @echo "# Extensions have not been enabled" >> extension.am - -endif # EXTENSIONS diff --git a/base/extension/extension.am b/base/extension/extension.am deleted file mode 100644 index e69de29b..00000000 diff --git a/base/filesystem/Makefile.am b/base/filesystem/Makefile.am deleted file mode 100644 index 358ef1cc..00000000 --- a/base/filesystem/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libfilesystem.la - -libfilesystem_la_SOURCES = FileSystem.cpp FileInfo.cpp FolderInfo.cpp - -sectiondir = $(includedir)/base/filesystem -section_HEADERS = FileSystem.h FileSystemException.h FileInfo.h FolderInfo.h diff --git a/base/io/Makefile.am b/base/io/Makefile.am deleted file mode 100644 index 6d927fea..00000000 --- a/base/io/Makefile.am +++ /dev/null @@ -1,86 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -SUBDIRS = async - -noinst_LTLIBRARIES = libio.la - -libio_la_SOURCES = \ - BrokenStream.cpp \ - Handle.cpp \ - FileDescriptor.cpp \ - TimedOut.cpp \ - AccessDenied.cpp \ - BindException.cpp \ - Stream.cpp \ - InputStream.cpp \ - OutputStream.cpp \ - FileDescriptorInputStream.cpp \ - FileDescriptorOutputStream.cpp \ - FileNotFound.cpp \ - IOException.cpp \ - EndOfFile.cpp \ - FilterInputStream.cpp \ - PrimitiveOutputStream.cpp \ - PrimitiveInputStream.cpp \ - File.cpp \ - FileInputStream.cpp \ - FileOutputStream.cpp \ - FilterOutputStream.cpp \ - BufferedOutputStream.cpp \ - BufferedInputStream.cpp \ - Pipe.cpp \ - MappedFile.cpp \ - FileReader.cpp \ - FileRegion.cpp \ - LockableRegion.cpp \ - PushInterface.cpp \ - PullInterface.cpp - -sectiondir = $(includedir)/base/io -section_HEADERS = \ - BrokenStream.h \ - Handle.h \ - InputStream.h \ - PrimitiveOutputStream.h \ - FileInputStream.h \ - FilterInputStream.h \ - BufferedInputStream.h \ - FileDescriptor.h \ - Externalizable.h \ - OutputStream.h \ - FilterOutputStream.h \ - BufferedOutputStream.h \ - FileOutputStream.h \ - PrimitiveInputStream.h \ - EndOfFile.h \ - FileNotFound.h \ - IOException.h \ - BindException.h \ - Stream.h \ - FileDescriptorInputStream.h \ - FileDescriptorOutputStream.h \ - AccessDenied.h \ - TimedOut.h \ - Pipe.h \ - File.h \ - MappedFile.h \ - FileReader.h \ - FileException.h \ - PipeException.h \ - FileRegion.h \ - LockableRegion.h \ - PushInterface.h \ - PullInterface.h diff --git a/base/io/async/Makefile.am b/base/io/async/Makefile.am deleted file mode 100644 index acab179a..00000000 --- a/base/io/async/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libaio.la - -libaio_la_SOURCES = AsynchronousException.cpp AsynchronousIOStream.cpp AsynchronousOperation.cpp AsynchronousReadCompletion.cpp AsynchronousReadContext.cpp AsynchronousReadEventListener.cpp AsynchronousReadOperation.cpp AsynchronousStream.cpp AsynchronousWriteCompletion.cpp AsynchronousWriteContext.cpp AsynchronousWriteEventListener.cpp AsynchronousWriteOperation.cpp - -sectiondir = $(includedir)/base/io/async -section_HEADERS = AsynchronousException.h AsynchronousIOStream.h AsynchronousOperation.h AsynchronousReadCompletion.h AsynchronousReadContext.h AsynchronousReadEventListener.h AsynchronousReadOperation.h AsynchronousStream.h AsynchronousWriteCompletion.h AsynchronousWriteContext.h AsynchronousWriteEventListener.h AsynchronousWriteOperation.h AsynchronousInputStream.h AsynchronousOutputStream.h diff --git a/base/iterator/Makefile.am b/base/iterator/Makefile.am deleted file mode 100644 index 7a2e6c6c..00000000 --- a/base/iterator/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libiterator.la - -libiterator_la_SOURCES = InterleavedIterator.cpp MatrixColumnIterator.cpp MatrixRowIterator.cpp SequenceIterator.cpp - -sectiondir = $(includedir)/base/iterator -section_HEADERS = InterleavedIterator.h MatrixColumnIterator.h MatrixRowIterator.h SequenceIterator.h diff --git a/base/mathematics/Makefile.am b/base/mathematics/Makefile.am deleted file mode 100644 index 009d6d47..00000000 --- a/base/mathematics/Makefile.am +++ /dev/null @@ -1,48 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libmathematics.la - -libmathematics_la_SOURCES = \ - Complex.cpp \ - ExpressionException.cpp \ - ExpressionParser.cpp \ - IncompatibleOperands.cpp \ - MarsagliaRandomNumberGenerator.cpp \ - Math.cpp \ - Matrix.cpp \ - Matrix4x4.cpp \ - Quaternion.cpp \ - Random.cpp \ - Vector3D.cpp \ - Vector2D.cpp \ - Vector.cpp - -sectiondir = $(includedir)/base/mathematics -section_HEADERS = \ - Complex.h \ - Constants.h \ - ExpressionException.h \ - ExpressionParser.h \ - IncompatibleOperands.h \ - MarsagliaRandomNumberGenerator.h \ - Math.h \ - Matrix.h \ - Matrix4x4.h \ - Quaternion.h \ - Random.h \ - Vector.h \ - Vector2D.h \ - Vector3D.h diff --git a/base/mem/Makefile.am b/base/mem/Makefile.am deleted file mode 100644 index a185a951..00000000 --- a/base/mem/Makefile.am +++ /dev/null @@ -1,62 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libmem.la - -libmem_la_SOURCES = \ - Allocator.cpp \ - ArrayOwnershipPointer.cpp \ - CheckedPointer.cpp \ - DebugDynamicMemory.cpp \ - DynamicMemory.cpp \ - Heap.cpp \ - Indirect.cpp \ - MemoryCorruption.cpp \ - MemoryDump.cpp \ - NullPointer.cpp \ - Pointer.cpp \ - ProtectedPointer.cpp \ - Reference.cpp \ - SharedMemory.cpp \ - VirtualMemory.cpp - -sectiondir = $(includedir)/base/mem -section_HEADERS = \ - Allocator.h \ - AllocatorEnumeration.h \ - ArrayOwnershipPointer.h \ - Buffer.h \ - CapacityAllocator.h \ - CheckedPointer.h \ - DebugDynamicMemory.h \ - DynamicMemory.h \ - Heap.h \ - Indirect.h \ - Lifetime.h \ - MemoryCorruption.h \ - MemoryDump.h \ - NullPointer.h \ - OwnershipPointer.h \ - Pointer.h \ - ProtectedPointer.h \ - Reference.h \ - ReferenceCountedAllocator.h \ - ReferenceCountedCapacityAllocator.h \ - ReferenceCountedObject.h \ - ReferenceCountedObjectWrapper.h \ - ReferenceCounter.h \ - SharedMemory.h \ - StrictPointer.h \ - VirtualMemory.h diff --git a/base/net/InetAddress.h b/base/net/InetAddress.h index 10df5927..329e92e2 100644 --- a/base/net/InetAddress.h +++ b/base/net/InetAddress.h @@ -121,14 +121,14 @@ class _DK_SDU_MIP__BASE__API InetAddress : public virtual Object { /** Returns the IP addresses associated with the specified host name. - @param name The name of the host (e.g. 'www.mip.sdu.dk'). + @param name The name of the host (e.g. 'www.google.com'). */ static List<InetAddress> getAddressesByName(const String& name) throw(HostNotFound); /** Returns the first IP address found for the specified host name. - @param name The name of the host (e.g. 'www.mip.sdu.dk'). + @param name The name of the host (e.g. 'www.google.com'). */ static InetAddress getAddressByName(const String& name) throw(HostNotFound); diff --git a/base/net/InetEndPoint.h b/base/net/InetEndPoint.h index 0230bd24..71c29ef8 100644 --- a/base/net/InetEndPoint.h +++ b/base/net/InetEndPoint.h @@ -69,7 +69,7 @@ class _DK_SDU_MIP__BASE__API InetEndPoint : public virtual Object { /** Initializes end point from string representations of host and service. - @param host The host (e.g. '127.0.0.1' or 'www.mip.sdu.dk'). + @param host The host (e.g. '127.0.0.1' or 'www.google.com'). @param service The service (e.g. 'http' or '80'). */ InetEndPoint( diff --git a/base/net/Makefile.am b/base/net/Makefile.am deleted file mode 100644 index d84aa8e6..00000000 --- a/base/net/Makefile.am +++ /dev/null @@ -1,49 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libnet.la - -libnet_la_SOURCES = \ - HostNotFound.cpp \ - InetAddress.cpp \ - InetInterface.cpp \ - InetService.cpp \ - MimeType.cpp \ - MultipleSockets.cpp \ - NetworkException.cpp \ - ServerSocket.cpp \ - ServiceNotFound.cpp \ - Socket.cpp \ - StreamSocket.cpp \ - Url.cpp \ - Urn.cpp \ - InetEndPoint.cpp - -sectiondir = $(includedir)/base/net -section_HEADERS = \ - Socket.h \ - InetAddress.h \ - HostNotFound.h \ - MimeType.h \ - MultipleSockets.h \ - NetworkException.h \ - InetInterface.h \ - InetService.h \ - ServerSocket.h \ - ServiceNotFound.h \ - StreamSocket.h \ - Url.h \ - Urn.h \ - InetEndPoint.h diff --git a/base/net/Uri.h b/base/net/Uri.h index 5e77ec67..481a491d 100644 --- a/base/net/Uri.h +++ b/base/net/Uri.h @@ -51,7 +51,7 @@ class _DK_SDU_MIP__BASE__API UriException : public InvalidFormat { abstract or physical resource. <pre> - Uri uri("http://www.mip.sdu.dk") + Uri uri("http://www.google.com") Uri uri("ftp://ftp.gnu.org") </pre> diff --git a/base/net/Url.h b/base/net/Url.h index c6df4e5a..ed3d40a8 100644 --- a/base/net/Url.h +++ b/base/net/Url.h @@ -26,7 +26,7 @@ _DK_SDU_MIP__BASE__ENTER_NAMESPACE components of the url are stored internally in decoded format. @code - Url url("http://www.mip.sdu.dk") + Url url("http://www.google.com") Url url("ftp://ftp.gnu.org") @endcode diff --git a/base/opengl/Makefile.am b/base/opengl/Makefile.am deleted file mode 100644 index 0ca8af00..00000000 --- a/base/opengl/Makefile.am +++ /dev/null @@ -1,29 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libopengl.la - -libopengl_la_SOURCES = OpenGL.cpp \ - OpenGLContext.cpp \ - OpenGLContextImpl.cpp \ - OpenGLPixmapContext.cpp \ - OpenGLWidget.cpp - -sectiondir = $(includedir)/base/opengl -section_HEADERS = OpenGL.h \ - OpenGLContext.h \ - OpenGLContextImpl.h \ - OpenGLPixmapContext.h \ - OpenGLWidget.h diff --git a/base/platforms/Makefile.am b/base/platforms/Makefile.am deleted file mode 100644 index 83410beb..00000000 --- a/base/platforms/Makefile.am +++ /dev/null @@ -1,54 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libplatform.la - -# "features" must be built first -libplatform_la_SOURCES = features.cpp specific.cpp - -sectiondir = $(includedir)/base/platforms -section_HEADERS = symbols.h features.h - -nobase_section_HEADERS = \ - arch/architecture.h \ - arch/sse/sse.h \ - arch/sse2/sse2.h \ - arch/sse3/sse3.h \ - arch/x87/x87.h \ - compiler/compiler.h \ - compiler/doxygen/doxygen.h \ - compiler/gcc/gcc.h \ - compiler/msc/msc.h \ - os/os.h \ - os/cygwin/cygwin.h \ - os/solaris/solaris.h \ - os/winnt4/winnt4.h - -# temporary fix -EXTRA_DIST = \ - backend/WindowImpl.h \ - compiler/v3mv/exception.h \ - os/unix/GLX.h \ - os/unix/GLX.cpp \ - win32/GDI.h \ - win32/GDI.cpp \ - win32/AsyncReadFileContext.h \ - win32/AsyncReadFileContext.cpp \ - win32/AsyncReadStreamContext.h \ - win32/AsyncReadStreamContext.cpp \ - win32/AsyncWriteFileContext.h \ - win32/AsyncWriteFileContext.cpp \ - win32/AsyncWriteStreamContext.h \ - win32/AsyncWriteStreamContext.cpp diff --git a/base/rmi/Makefile.am b/base/rmi/Makefile.am deleted file mode 100644 index 58a11b03..00000000 --- a/base/rmi/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = librmi.la - -librmi_la_SOURCES = RMIException.cpp - -sectiondir = $(includedir)/base/rmi -section_HEADERS = RMIException.h diff --git a/base/rmi/OrbEncoding.h b/base/rmi/OrbEncoding.h index 3faf9b56..6deeb6fc 100644 --- a/base/rmi/OrbEncoding.h +++ b/base/rmi/OrbEncoding.h @@ -50,7 +50,7 @@ class _DK_SDU_MIP__BASE__API OrbEncoding : public Object, public virtual Referen /** Returns the global identifier of the encoding scheme (e.g. - "urn:rmi:orb:encoding-scheme:fonseca@mip.sdu.dk:Lisa"). + "urn:rmi:orb:encoding-scheme:username@somedomain:Lisa"). */ virtual String getUrn() const throw() = 0; diff --git a/base/security/Makefile.am b/base/security/Makefile.am deleted file mode 100644 index 993e0a9a..00000000 --- a/base/security/Makefile.am +++ /dev/null @@ -1,51 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2003 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libsecurity.la - -libsecurity_la_SOURCES = \ - AccessControlEntry.cpp \ - AccessControlList.cpp \ - Adler32.cpp \ - AdvancedEncryptionStandard.cpp \ - Base64.cpp \ - CRC32.cpp \ - Group.cpp \ - MD5Sum.cpp \ - SecurityException.cpp \ - SHA1.cpp \ - SHA256.cpp \ - SHA384.cpp \ - SHA512.cpp \ - User.cpp \ - Trustee.cpp - -sectiondir = $(includedir)/base/security -section_HEADERS = \ - AccessControlEntry.h \ - AccessControlList.h \ - Adler32.h \ - AdvancedEncryptionStandard.h \ - Base64.h \ - CRC32.h \ - Group.h \ - MD5Sum.h \ - SecurityException.h \ - SHA1.h \ - SHA256.h \ - SHA384.h \ - SHA512.h \ - User.h \ - Trustee.h diff --git a/base/sound/Makefile.am b/base/sound/Makefile.am deleted file mode 100644 index 0320164a..00000000 --- a/base/sound/Makefile.am +++ /dev/null @@ -1,27 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libsound.la - -libsound_la_SOURCES = \ - SoundDevice.cpp \ - SoundInputStream.cpp \ - SoundOutputStream.cpp - -sectiondir = $(includedir)/base/sound -section_HEADERS = \ - SoundDevice.h \ - SoundInputStream.h \ - SoundOutputStream.h diff --git a/base/string/Makefile.am b/base/string/Makefile.am deleted file mode 100644 index 0403706b..00000000 --- a/base/string/Makefile.am +++ /dev/null @@ -1,54 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libstring.la - -libstring_la_SOURCES = \ - ANSIEscapeSequence.cpp \ - ASCIITraits.cpp \ - CharacterSet.cpp \ - FormatInputStream.cpp \ - FormatOutputStream.cpp \ - InvalidFormat.cpp \ - Locale.cpp \ - MultibyteException.cpp \ - RegExp.cpp \ - String.cpp \ - StringException.cpp \ - StringInputStream.cpp \ - StringOutputStream.cpp \ - WideString.cpp \ - WideStringException.cpp - -sectiondir = $(includedir)/base/string -section_HEADERS = \ - ANSIEscapeSequence.h \ - ASCIITraits.h \ - CharacterSet.h \ - FormatInputStream.h \ - FormatOutputStream.h \ - InvalidFormat.h \ - Locale.h \ - MultibyteException.h \ - RegExp.h \ - String.h \ - StringException.h \ - StringInputStream.h \ - StringOutputStream.h \ - WideString.h \ - WideStringException.h - -EXTRA_DIST = unicode/UnicodeFolding.cpp \ - unicode/UnicodeLookup.cpp diff --git a/base/templates/.cvsignore b/base/templates/.cvsignore deleted file mode 100644 index 29863825..00000000 --- a/base/templates/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Makefile -Makefile.in -*.moc.cpp diff --git a/base/ui/Makefile.am b/base/ui/Makefile.am deleted file mode 100644 index 3cdd7b19..00000000 --- a/base/ui/Makefile.am +++ /dev/null @@ -1,65 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libui.la - -libui_la_SOURCES = \ - Bitmap.cpp \ - Button.cpp \ - Color.cpp \ - Dialog.cpp \ - Drawable.cpp \ - GraphicsContext.cpp \ - OpenFileDialog.cpp \ - Label.cpp \ - Menu.cpp \ - MessageDialog.cpp \ - Picture.cpp \ - Pixmap.cpp \ - PopUpWindow.cpp \ - Position.cpp \ - ProgressBar.cpp \ - SaveFileDialog.cpp \ - SelectFolderDialog.cpp \ - Split.cpp \ - UserInterfaceException.cpp \ - Widget.cpp \ - Window.cpp \ - WindowImpl.cpp - -sectiondir = $(includedir)/base/ui -section_HEADERS = \ - Bitmap.h \ - Button.h \ - Color.h \ - Dialog.h \ - Drawable.h \ - GraphicsContext.h \ - OpenFileDialog.h \ - Label.h \ - Menu.h \ - MessageDialog.h \ - Picture.h \ - Pixmap.h \ - PopUpWindow.h \ - Position.h \ - ProgressBar.h \ - SaveFileDialog.h \ - SelectFolderDialog.h \ - Split.h \ - UserInterfaceException.h \ - Widget.h \ - Window.h \ - WindowImpl.h diff --git a/base/xml/Makefile.am b/base/xml/Makefile.am deleted file mode 100644 index a280b8a0..00000000 --- a/base/xml/Makefile.am +++ /dev/null @@ -1,78 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -include $(top_srcdir)/common.am - -noinst_LTLIBRARIES = libxml.la - -libxml_la_SOURCES = \ - Attribute.cpp \ - AttributeDecl.cpp \ - CDATASection.cpp \ - CharacterData.cpp \ - Comment.cpp \ - Declaration.cpp \ - Document.cpp \ - DocumentFragment.cpp \ - DocumentType.cpp \ - DOMImplementation.cpp \ - Element.cpp \ - ElementDecl.cpp \ - Entity.cpp \ - EntityDecl.cpp \ - EntityReference.cpp \ - NamedNodeMap.cpp \ - Node.cpp \ - Notation.cpp \ - ProcessingInstruction.cpp \ - Stylesheet.cpp \ - Text.cpp \ - Transformer.cpp \ - XMLDefaultReader.cpp \ - XMLReader.cpp - -sectiondir = $(includedir)/base/xml -section_HEADERS = \ - Attribute.h \ - AttributeDecl.h \ - Attributes.h \ - CDATASection.h \ - CharacterData.h \ - Comment.h \ - Declaration.h \ - Document.h \ - DocumentFragment.h \ - DocumentType.h \ - DOMEvent.h \ - DOMException.h \ - DOMImplementation.h \ - Element.h \ - ElementDecl.h \ - Entity.h \ - EntityDecl.h \ - EntityReference.h \ - NamedNodeMap.h \ - Node.h \ - Notation.h \ - ProcessingInstruction.h \ - SAXException.h \ - SAXNotRecognizedException.h \ - SAXNotSupportedException.h \ - SAXParseException.h \ - Stylesheet.h \ - Text.h \ - Transformer.h \ - TransformerException.h \ - XMLDefaultReader.h \ - XMLReader.h \ - XPathException.h diff --git a/common.am b/common.am deleted file mode 100644 index aa8e0455..00000000 --- a/common.am +++ /dev/null @@ -1,18 +0,0 @@ -# *************************************************************************** -# The Base Framework -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -AUTOMAKE_OPTIONS = 1.4 nostdinc - -DEFS = - -AM_CPPFLAGS = @INCLUDES_BASE@ diff --git a/config/Makefile.am b/config/Makefile.am deleted file mode 100644 index a8925a3e..00000000 --- a/config/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -DEFS = -DEFAULT_INCLUDES = - -EXTRA_DIST = anonymous_struct.c anonymous_struct.cpp bool.cpp byteorder.c char_size.cpp const.cpp cross.c cross++.cpp double.cpp float.cpp floating.h float_word_order.cpp inline.c inline.cpp int_size.cpp ipv6.c largefile.c long_double.cpp long_long_size.cpp long_size.cpp mbrtowc.c mbsrtowcs.c memchr.c memcmp.c memcpy.c memmove.c memset.c nanosleep.c pointer_size.cpp pthread.c pthread_rwlock.c pthread_semaphore.c pthread_yield.c regex.c restrict.cpp specification.cpp short_size.cpp socklen_t.c static_const.c static_const.cpp stdc++.cpp unsigned_char.cpp wchar_size.cpp wide.c pselect.c readdir_r.c aio.c borland.cpp gcc.cpp intel.cpp mipspro.cpp msc.cpp sunwspro.cpp poll.c diff --git a/configure.ac b/configure.ac index 6e3fb2c0..804ede98 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl *************************************************************************** dnl The Base Framework dnl A framework for developing platform independent applications dnl -dnl Copyright (C) 2001-2006 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> +dnl See COPYRIGHT.txt for details. dnl dnl This framework is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/static/Makefile.am b/static/Makefile.am deleted file mode 100644 index d13380e6..00000000 --- a/static/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -DEFS = -DEFAULT_INCLUDES = - -EXTRA_DIST = \ - static.sh \ - i386-unknown-cygwin \ - i386-unknown-linux-gnu \ - i386-unknown-mingw32 \ - i486-unknown-cygwin \ - i486-unknown-linux-gnu \ - i486-unknown-mingw32 \ - i586-unknown-cygwin \ - i586-unknown-linux-gnu \ - i586-unknown-mingw32 \ - i686-unknown-cygwin \ - i686-unknown-linux-gnu \ - i686-unknown-mingw32 \ - ia64-unknown-linux-gnu \ - mips-sgi-irix65 \ - sparc-sun-solaris2.7 \ - sparc-sun-solaris2.8 \ - sparc-sun-solaris2.9 \ - sparcv9-sun-solaris2 \ - sparcv9-sun-solaris2.8 \ - sparcv9-sun-solaris2.9 diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am deleted file mode 100644 index f486cc5a..00000000 --- a/testsuite/Makefile.am +++ /dev/null @@ -1,148 +0,0 @@ -# *************************************************************************** -# The Base Framework (Test Suite) -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2003 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -DEFS = -AUTOMAKE_OPTIONS = 1.4 foreign nostdinc dist-bzip2 dist-zip - -SUBDIRS = orb ui - -LIBS=-lbase - -bin_PROGRAMS = Array -bin_PROGRAMS += BitSet -bin_PROGRAMS += calendar -bin_PROGRAMS += Date -bin_PROGRAMS += debug -bin_PROGRAMS += demangle -bin_PROGRAMS += Exception -bin_PROGRAMS += File -bin_PROGRAMS += HashSet -bin_PROGRAMS += HashTable -bin_PROGRAMS += Huffman -bin_PROGRAMS += IEEE1394 -bin_PROGRAMS += List -bin_PROGRAMS += Map -bin_PROGRAMS += Queue -bin_PROGRAMS += SerialPort -bin_PROGRAMS += Set -bin_PROGRAMS += Stack -bin_PROGRAMS += String -bin_PROGRAMS += Thread -bin_PROGRAMS += Version -bin_PROGRAMS += io -bin_PROGRAMS += client -bin_PROGRAMS += server -bin_PROGRAMS += datagramClient -bin_PROGRAMS += datagramServer -bin_PROGRAMS += referenceCounting -bin_PROGRAMS += fileInput -bin_PROGRAMS += mtServer -bin_PROGRAMS += filesystem -bin_PROGRAMS += daemon -bin_PROGRAMS += dlapp -bin_PROGRAMS += intercom -bin_PROGRAMS += compress -bin_PROGRAMS += cp -bin_PROGRAMS += digest -bin_PROGRAMS += du -bin_PROGRAMS += dump -bin_PROGRAMS += echod -bin_PROGRAMS += eval -bin_PROGRAMS += ftp -bin_PROGRAMS += host -bin_PROGRAMS += http -bin_PROGRAMS += filetype -bin_PROGRAMS += floatingPoint -bin_PROGRAMS += inet -bin_PROGRAMS += ln -bin_PROGRAMS += ls -bin_PROGRAMS += multicastServer -bin_PROGRAMS += ping -bin_PROGRAMS += Process -bin_PROGRAMS += quota -bin_PROGRAMS += rm -bin_PROGRAMS += time -bin_PROGRAMS += unicode -bin_PROGRAMS += dom -bin_PROGRAMS += sax -bin_PROGRAMS += validate -bin_PROGRAMS += xsltprocessor -bin_PROGRAMS += cipher - -#lib_LTLIBRARIES = dlmodule.la - -Array_SOURCES = Array.cpp -BitSet_SOURCES = BitSet.cpp -calendar_SOURCES = calendar.cpp -Date_SOURCES = Date.cpp -debug_SOURCES = debug.cpp -demangle_SOURCES = demangle.cpp -Exception_SOURCES = Exception.cpp -File_SOURCES = File.cpp -HashSet_SOURCES = HashSet.cpp -HashTable_SOURCES = HashTable.cpp -Huffman_SOURCES = Huffman.cpp -IEEE1394_SOURCES = IEEE1394.cpp -List_SOURCES = List.cpp -Queue_SOURCES = Queue.cpp -Map_SOURCES = Map.cpp -Process_SOURCES = Process.cpp -SerialPort_SOURCES = SerialPort.cpp -Set_SOURCES = Set.cpp -Stack_SOURCES = Stack.cpp -String_SOURCES = String.cpp -Thread_SOURCES = Thread.cpp -Version_SOURCES = Version.cpp -io_SOURCES = io.cpp -client_SOURCES = client.cpp -server_SOURCES = server.cpp -datagramClient_SOURCES = datagramClient.cpp -datagramServer_SOURCES = datagramServer.cpp -referenceCounting_SOURCES = referenceCounting.cpp -fileInput_SOURCES = fileInput.cpp -mtServer_SOURCES = mtServer.cpp -filesystem_SOURCES = filesystem.cpp -daemon_SOURCES = daemon.cpp -dlapp_SOURCES = dlapp.cpp MyLinkerModule.cpp -intercom_SOURCES = intercom.cpp -floatingPoint_SOURCES = floatingPoint.cpp -compress_SOURCES = compress.cpp -cp_SOURCES = cp.cpp -digest_SOURCES = digest.cpp -du_SOURCES = du.cpp -dump_SOURCES = dump.cpp -echod_SOURCES = echod.cpp -eval_SOURCES = eval.cpp -filetype_SOURCES = filetype.cpp -ftp_SOURCES = ftp.cpp -host_SOURCES = host.cpp -http_SOURCES = http.cpp -inet_SOURCES = inet.cpp -ln_SOURCES = ln.cpp -ls_SOURCES = ls.cpp -multicastServer_SOURCES = multicastServer.cpp -ping_SOURCES = ping.cpp -quota_SOURCES = Quota.cpp -rm_SOURCES = rm.cpp -time_SOURCES = time.cpp -unicode_SOURCES = unicode.cpp -dom_SOURCES = dom.cpp -sax_SOURCES = sax.cpp -validate_SOURCES = validate.cpp -xsltprocessor_SOURCES = xsltprocessor.cpp -cipher_SOURCES = cipher.cpp - -#dlmodule_la_SOURCES = dlmodule.cpp MyLinkerModule.cpp -#dlmodule_la_LDFLAGS = -avoid-version -module -no-undefined -version-info 0:1:0 - -EXTRA_DIST = diff --git a/testsuite/Makefile.dist b/testsuite/Makefile.dist deleted file mode 100644 index d8c0dc5a..00000000 --- a/testsuite/Makefile.dist +++ /dev/null @@ -1,86 +0,0 @@ -# *************************************************************************** -# The Base Framework (Test Suite) -# A framework for developing platform independent applications -# -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -all: - aclocal - automake - autoconf - -debug: all - CXXFLAGS="-O0 -g3" ./configure --prefix=/usr/local/base - -normal: all - CXXFLAGS="-O2 -g2" ./configure --prefix=/usr/local/base - -final: all - CXXFLAGS="-O3" ./configure --prefix=/usr/local/base - -lendum-gcc-2.96: all - CC=/usr/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" ./configure --target=i386-pc-linux --prefix=/usr/local/base --with-base-include=../.. --with-base-lib=.. - -lendum-gcc-3.0.4: all - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.0.4/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none" ./configure --target=i386-pc-linux --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -lendum-gcc-3.0.4-release: all - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.0.4/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" ./configure --target=i686-pc-linux --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -lendum-gcc-3.1: all - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none" ./configure --target=i386-pc-linux --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -lendum-gcc-3.1-release: all - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g2 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" ./configure --target=i686-pc-linux --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -falster-gcc-3.0.4: - CC=/home/fonseca/gnu/gcc-3.0.4/bin/gcc CXX=/home/fonseca/gnu/gcc-3.0.4/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" CPPFLAGS="-I/home/fonseca/src/base" configure --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -falster-gcc-3.0.4-release: - CC=/home/fonseca/gnu/gcc-3.0.4/bin/gcc CXX=/home/fonseca/gnu/gcc-3.0.4/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fno-keep-static-consts" CPPFLAGS="-I/home/fonseca/src/base" LDFLAGS="-x none" configure --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -falster-gcc-3.1: - CC=/home/fonseca/gnu/gcc-3.1/bin/gcc CXX=/home/fonseca/gnu/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" CPPFLAGS="-I/home/fonseca/src/base" configure --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -falster-gcc-3.1-release: - CC=/home/fonseca/gnu/gcc-3.1/bin/gcc CXX=/home/fonseca/gnu/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations" CPPFLAGS="-I/home/fonseca/src/base" LDFLAGS="-x none" configure --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -falster-gcc-3.1-64bit-release: - CC=/home/fonseca/gnu/gcc-3.1/bin/gcc CFLAGS="-pipe -x c -m64" CXX=/home/fonseca/gnu/gcc-3.1/bin/gcc CXXFLAGS="-pipe -x c++ -ansi -O3 -g2 -mcpu=ultrasparc -m64 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations" CPPFLAGS="-I/home/fonseca/src/base" LDFLAGS="-x none -L/home/fonseca/gnu/gcc-3.1/lib/sparcv9" configure --target=sparcv9-sun-solaris --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -fyn-gcc-3.0.4: all - CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" ./configure --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -fyn-gcc-3.0.4-release: all - CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" ./configure --prefix=/tmp/fonseca/base --with-base-include=.. --with-base-lib=../base - -klampenborg-cygwin-gcc-3.0.4: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c" CXX=/usr/local/gcc-3.0.4/bin/g++ CPPFLAGS="-I/d/projects/base/base" CXXFLAGS="-pipe -x c++ -ansi -O0 -g3" LDFLAGS="-x none -Wl,-L/usr/local/gcc-3.0.4/lib" LIBS="-Wl,-lstdc++" configure --build=i386-pc-cygwin --with-base-include=.. --with-base-lib=../base - -klampenborg-cygwin-gcc-3.0.4-release: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -x c -ansi" CXX=/usr/local/gcc-3.0.4/bin/g++ CPPFLAGS="-I/d/projects/base/base" CXXFLAGS="-pipe -x c++ -ansi -O3 -g3 -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none -Wl,-L/usr/local/gcc-3.0.4/lib" LIBS="-Wl,-lstdc++" configure --build=i386-pc-cygwin --with-base-include=.. --with-base-lib=../base - -klampenborg-gcc-2.95: - CC="/usr/bin/gcc" CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX="/usr/bin/gcc" CPPFLAGS="-I/d/projects/base/base" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O0 -g3" LDFLAGS="-x none" configure --build=i386-pc-mingw32 --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -klampenborg-gcc-3.0.4: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.0.4/bin/g++ CPPFLAGS="-I/d/projects/base/base -I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward -I/usr/include/mingw/g++-3" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O0 -g3" LDFLAGS="-x none" configure --build=i386-pc-mingw32 --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -klampenborg-gcc-3.0.4-release: - CC=/usr/local/gcc-3.0.4/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.0.4/bin/g++ CPPFLAGS="-I/d/projects/base/base -I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward -I/usr/include/mingw/g++-3" CXXFLAGS="-pipe -mno-cygwin -mthreads -O3 -g3 -x c++ -ansi -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" configure --build=i686-pc-mingw32 --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -klampenborg-gcc-3.1: - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.1/bin/g++ CPPFLAGS="-I/d/projects/base/base -I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward" CXXFLAGS="-pipe -mno-cygwin -mthreads -x c++ -ansi -O0 -g3" LDFLAGS="-x none" configure --build=i386-pc-mingw32 --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -klampenborg-gcc-3.1-release: - CC=/usr/local/gcc-3.1/bin/gcc CFLAGS="-pipe -mno-cygwin -mthreads -x c" CXX=/usr/local/gcc-3.1/bin/g++ CPPFLAGS="-I/d/projects/base/base -I/usr/include/mingw/g++-3/i386-pc-mingw32 -I/usr/include/mingw/g++-3/backward" CXXFLAGS="-pipe -mno-cygwin -mthreads -O3 -g3 -x c++ -ansi -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" configure --build=i686-pc-mingw32 --prefix=/usr/local/base --with-base-include=.. --with-base-lib=../base - -falster-gcc-3.1-mingw32-release: - CFLAGS="-pipe -x c" CPPFLAGS="-I/home/fonseca/src/mingw" CXXFLAGS="-pipe -O3 -g3 -x c++ -ansi -march=i686 -malign-double -fomit-frame-pointer -funroll-loops -fno-math-errno -fexpensive-optimizations -fmerge-all-constants -fno-keep-static-consts" LDFLAGS="-x none" configure --build=sparc-sun-solaris --host=i386-pc-mingw32 --prefix=/tmp/fonseca/usr --with-base-include=/home/fonseca/src/base --with-base-lib=/home/fonseca/src/mingw/base diff --git a/testsuite/Makefile.test b/testsuite/Makefile.test index 5a766f68..330ecbeb 100644 --- a/testsuite/Makefile.test +++ b/testsuite/Makefile.test @@ -2,7 +2,7 @@ # The Base Framework (Test Suite) # A framework for developing platform independent applications # -# Copyright (C) 2001-2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> +# See COPYRIGHT.txt for details. # # This framework is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/testsuite/io.cpp b/testsuite/io.cpp index fcf23984..df7648e6 100644 --- a/testsuite/io.cpp +++ b/testsuite/io.cpp @@ -126,7 +126,7 @@ class IOApplication : public Application { fout << "Map<int, int>: " << mss << ENDL; fout << "Url: " - << Url("http://fonseca:password@www.mip.sdu.dk:80/~fonseca/base/", false) << ENDL; + << Url("http://username:password@www.microsoft.com:80/", false) << ENDL; fout << "127.0.0.1 - " << InetAddress("127.0.0.1", InetAddress::IP_VERSION_4) << ENDL; diff --git a/testsuite/orb/Makefile.am b/testsuite/orb/Makefile.am deleted file mode 100644 index 4b7fda95..00000000 --- a/testsuite/orb/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ -# *************************************************************************** -# The Base Framework (Test Suite) -# A framework for developing platform independent applications -# -# Copyright (C) 2002 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -DEFS = -AUTOMAKE_OPTIONS = 1.4 foreign nostdinc - -LIBS=-lbase - -bin_PROGRAMS = client server - -client_SOURCES = client.cpp -server_SOURCES = server.cpp - -EXTRA_DIST = diff --git a/testsuite/ui/Makefile.am b/testsuite/ui/Makefile.am deleted file mode 100644 index 7dea8766..00000000 --- a/testsuite/ui/Makefile.am +++ /dev/null @@ -1,26 +0,0 @@ -# *************************************************************************** -# The Base Framework (Test Suite) -# A framework for developing platform independent applications -# -# Copyright (C) 2002-2003 by Rene Moeller Fonseca <fonseca@mip.sdu.dk> -# -# This framework is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# For the licensing terms refer to the file 'LICENSE'. -# *************************************************************************** - -DEFS = -AUTOMAKE_OPTIONS = 1.4 foreign nostdinc - -LIBS=-lbase - -bin_PROGRAMS = opengl pixmap simple window - -opengl_SOURCES = opengl.cpp -pixmap_SOURCES = pixmap.cpp -window_SOURCES = window.cpp -simple_SOURCES = simple.cpp - -EXTRA_DIST =