Changeset: 9ca4009432ed for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=9ca4009432ed
Removed Files:
        Makefile.ag
        bootstrap
        buildtools/Makefile.ag
        buildtools/conf/Makefile.ag
        clients/Makefile.ag
        clients/NT/Makefile.ag
        clients/examples/C/Makefile.ag
        clients/examples/Makefile.ag
        clients/examples/perl/Makefile.ag
        clients/examples/php/Makefile.ag
        clients/mapiclient/Makefile.ag
        clients/mapilib/Makefile.ag
        clients/odbc/Makefile.ag
        clients/odbc/driver/Makefile.ag
        clients/odbc/samples/Makefile.ag
        clients/odbc/setup/Makefile.ag
        clients/odbc/winsetup/Makefile.ag
        common/Makefile.ag
        common/options/Makefile.ag
        common/stream/Makefile.ag
        common/utils/Makefile.ag
        configure.ag
        de-bootstrap
        gdk/Makefile.ag
        geom/Makefile.ag
        geom/lib/Makefile.ag
        geom/monetdb5/Makefile.ag
        geom/sql/Makefile.ag
        libversions
        monetdb5/Makefile.ag
        monetdb5/NT/Makefile.ag
        monetdb5/extras/Makefile.ag
        monetdb5/extras/mal_optimizer_template/Makefile.ag
        monetdb5/extras/rapi/Makefile.ag
        monetdb5/mal/Makefile.ag
        monetdb5/modules/Makefile.ag
        monetdb5/modules/atoms/Makefile.ag
        monetdb5/modules/kernel/Makefile.ag
        monetdb5/modules/mal/Makefile.ag
        monetdb5/optimizer/Makefile.ag
        monetdb5/scheduler/Makefile.ag
        monetdb5/tools/Makefile.ag
        sql/Makefile.ag
        sql/NT/Makefile.ag
        sql/backends/Makefile.ag
        sql/backends/monet5/Makefile.ag
        sql/backends/monet5/UDF/Makefile.ag
        sql/backends/monet5/UDF/capi/Makefile.ag
        sql/backends/monet5/UDF/pyapi3/Makefile.ag
        sql/backends/monet5/UDF/udf/Makefile.ag
        sql/backends/monet5/generator/Makefile.ag
        sql/backends/monet5/vaults/Makefile.ag
        sql/backends/monet5/vaults/fits/Makefile.ag
        sql/backends/monet5/vaults/lidar/Makefile.ag
        sql/backends/monet5/vaults/netcdf/Makefile.ag
        sql/backends/monet5/vaults/shp/Makefile.ag
        sql/common/Makefile.ag
        sql/include/Makefile.ag
        sql/scripts/Makefile.ag
        sql/server/Makefile.ag
        sql/storage/Makefile.ag
        sql/storage/bat/Makefile.ag
        testing/Makefile.ag
        tools/Makefile.ag
        tools/merovingian/Makefile.ag
        tools/merovingian/client/Makefile.ag
        tools/merovingian/daemon/Makefile.ag
        tools/merovingian/daemon/config/Makefile.ag
        tools/merovingian/utils/Makefile.ag
        tools/mserver/Makefile.ag
        vertoo.config
        vertoo.data
Branch: mbedded
Log Message:

remove most of the old build system


diffs (truncated from 5544 to 300 lines):

diff --git a/Makefile.ag b/Makefile.ag
deleted file mode 100644
--- a/Makefile.ag
+++ /dev/null
@@ -1,25 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-SUBDIRS = buildtools common clients \
-       gdk \
-       monetdb5 \
-       sql \
-       HAVE_GEOM?geom \
-       tools \
-       HAVE_TESTING?testing \
-
-EXTRA_DIST = bootstrap configure configure.ac configure.ag libversions \
-       MonetDB.spec rpm.mk.in COPYING README.rst license.txt HowToStart.rst \
-       README-Fedora README-Debian
-
-EXTRA_DIST_DIR = NT debian MacOSX documentation
-
-headers_config = {
-       DIR = includedir/monetdb
-       HEADERS = h
-       SOURCES = monetdb_config.h
-}
diff --git a/bootstrap b/bootstrap
deleted file mode 100755
--- a/bootstrap
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/usr/bin/env bash
-
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-# NOTE: if you happen to have bootstrap failures due to missing M4
-# macros, export M4DIRS as a space separated list of directories where
-# aclocal should look in your environment.
-
-PYTHONPATH=${PWD:-$(pwd)}/buildtools/autogen${PYTHONPATH:+:$PYTHONPATH}
-export PYTHONPATH
-
-# cope with systems where libtool is not GNU libtool, e.g. Darwin
-if type -P glibtoolize > /dev/null; then
-    libtoolize=glibtoolize
-else
-    libtoolize=libtoolize
-fi
-
-# cope with systems where aclocal is known as aclocal-1.10 (and
-# automake as automake-1.10), e.g. OpenIndiana
-amv=
-if ! type -P aclocal > /dev/null; then
-    if type -P aclocal-1.11 > /dev/null; then
-       amv=-1.11
-    elif type -P aclocal-1.10 > /dev/null; then
-       amv=-1.10
-    fi
-fi
-
-_m4_extra_dirs=
-if [[ -n ${M4DIRS} ]] ; then
-       for d in ${M4DIRS} ; do
-               case ${d} in
-                       "-I")  d=          ;;
-                       "-I"*) d=${d#-I}   ;;
-               esac
-               [[ -n ${d} ]] && _m4_extra_dirs="${_m4_extra_dirs} -I ${d}"
-       done
-fi
-
-python buildtools/autogen/autogen.py || exit $?
-(
-# replace the line starting with AC_CONFIG_FILES in configure.ag with
-# the command to substitute the configure results into the .in files,
-# making sure executable files remain executable.
-sed -n '/^AC_CONFIG_FILES/s/.*/AC_CONFIG_FILES([/;1,/^AC_CONFIG_FILES/p' 
configure.ag || exit $?
-while read f; do
-    [ -x $f.in ] || echo $f
-done < acout.in
-echo '])'
-while read f; do
-    [ -x $f.in ] && echo "AC_CONFIG_FILES([$f], [chmod +x $f])"
-done < acout.in
-sed '1,/^AC_CONFIG_FILES/d' configure.ag
-) > configure.ac || exit $?
-$libtoolize -c -f  || exit $?
-aclocal$amv ${_m4_extra_dirs} || exit $?
-autoheader  || exit $?
-automake$amv --add-missing --copy --foreign  || exit $?
-autoconf || exit $?
-# a bit hacky: add dependency on monetdb_hgversion.h for 
common/utils/revision.c
-sed -i~ '/revision.*:/s;$; ../../monetdb_hgversion.h;' common/utils/Makefile.am
-if [ -f buildtools/conf/install-sh -a ! -x buildtools/conf/install-sh ]; then
-    chmod +x buildtools/conf/install-sh
-fi
diff --git a/buildtools/Makefile.ag b/buildtools/Makefile.ag
deleted file mode 100644
--- a/buildtools/Makefile.ag
+++ /dev/null
@@ -1,9 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-SUBDIRS = conf
-
-EXTRA_DIST_DIR = autogen doc selinux
diff --git a/buildtools/conf/Makefile.ag b/buildtools/conf/Makefile.ag
deleted file mode 100644
--- a/buildtools/conf/Makefile.ag
+++ /dev/null
@@ -1,49 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-scripts_sh = {
-       COND = HAVE_DEVELOPER
-       EXT = ""
-       DIR = bindir
-       SOURCES = Maddlog
-}
-
-headers_bmp = {
-       COND = NATIVE_WIN32
-       HEADERS = bmp
-       DIR = prefix
-       SOURCES = banner.bmp
-}
-
-headers_rtf = {
-       COND = NATIVE_WIN32
-       HEADERS = rtf
-       DIR = prefix
-       SOURCES = license.rtf
-}
-
-headers_ico = {
-       COND = NATIVE_WIN32
-       HEADERS = ico
-       DIR = prefix
-       SOURCES = monetdb.ico
-}
-
-headers_html = {
-       COND = NATIVE_WIN32
-       HEADERS = html
-       DIR = prefix
-       SOURCES = website.html
-}
-
-headers_systemd = {
-       COND = NOT_WIN32
-       HEADERS = conf
-       DIR = sysconfdir/tmpfiles.d
-       SOURCES = monetdbd.conf
-}
-
-EXTRA_DIST = rules.mk banner.bmp license.rtf monetdb.ico website.html
diff --git a/clients/Makefile.ag b/clients/Makefile.ag
deleted file mode 100644
--- a/clients/Makefile.ag
+++ /dev/null
@@ -1,9 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-SUBDIRS = HAVE_MAPI?mapilib HAVE_MAPI?mapiclient HAVE_ODBC?odbc 
HAVE_MAPI?examples NATIVE_WIN32?NT
-
-EXTRA_DIST_DIR = Tests ruby R
diff --git a/clients/NT/Makefile.ag b/clients/NT/Makefile.ag
deleted file mode 100644
--- a/clients/NT/Makefile.ag
+++ /dev/null
@@ -1,11 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-scripts_bat = {
-       EXT = bat
-       DIR = prefix
-       SOURCES = mclient.bat msqldump.bat stethoscope.bat
-}
diff --git a/clients/examples/C/Makefile.ag b/clients/examples/C/Makefile.ag
deleted file mode 100644
--- a/clients/examples/C/Makefile.ag
+++ /dev/null
@@ -1,18 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-MTSAFE
-INCLUDES = ../../mapilib
-
-BINS = {
-       CONDINST = HAVE_TESTING
-       DIR = bindir
-       SOURCES = sample0.c sample1.c sample4.c \
-               smack00.c smack01.c
-       LIBS = ../../mapilib/libmapi \
-               ../../../common/stream/libstream \
-               $(SOCKET_LIBS) $(zlib_LIBS) $(bzip2_LIBS) $(snappy_LIBS) 
$(lz4_LIBS) $(liblzma_LIBS) $(curl_LIBS) $(LTLIBICONV) $(openssl_LIBS)
-}
diff --git a/clients/examples/Makefile.ag b/clients/examples/Makefile.ag
deleted file mode 100644
--- a/clients/examples/Makefile.ag
+++ /dev/null
@@ -1,9 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-SUBDIRS = C php perl
-
-EXTRA_DIST_DIR = python
diff --git a/clients/examples/perl/Makefile.ag 
b/clients/examples/perl/Makefile.ag
deleted file mode 100644
--- a/clients/examples/perl/Makefile.ag
+++ /dev/null
@@ -1,15 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-MTSAFE
-
-scripts_pl = {
-       COND = HAVE_TESTING
-       DIR = bindir
-       SOURCES = sqlsample.pl malsample.pl
-}
-
-EXTRA_DIST = client.pl smack00.pl smack01.pl
diff --git a/clients/examples/php/Makefile.ag b/clients/examples/php/Makefile.ag
deleted file mode 100644
--- a/clients/examples/php/Makefile.ag
+++ /dev/null
@@ -1,13 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-MTSAFE
-
-scripts_php = {
-       COND = HAVE_TESTING
-       DIR = bindir
-       SOURCES = sqlsample.php
-}
diff --git a/clients/mapiclient/Makefile.ag b/clients/mapiclient/Makefile.ag
deleted file mode 100644
--- a/clients/mapiclient/Makefile.ag
+++ /dev/null
@@ -1,50 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0.  If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
-
-MTSAFE
-INCLUDES = ../mapilib ../../common/options ../../common/stream 
../../common/utils $(READLINE_INCS)
-
-lib_mcutil = {
-       NOINST
-       SOURCES = dump.c dotmonetdb.c dotmonetdb.h eventparser.c eventparser.h
-}
-
-bin_mclient = {
-       SOURCES = mclient.c ReadlineTools.c ReadlineTools.h mhelp.c mhelp.h
-       LIBS = libmcutil \
-               ../mapilib/libmapi \
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to