You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-777 Cleanup source
Clean out autotools and some other things from the source tree.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -15,6 +15,7 @@
|
||||
.libs/
|
||||
config.log
|
||||
*~
|
||||
*kdev*
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
CMakeScripts
|
||||
|
141
Makefile.am
141
Makefile.am
@ -1,141 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id$
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
# FIXME:
|
||||
# this sets the local linker path (-rpath) so that the ColumnStore
|
||||
# libraries and binaries know where to look for the necessary
|
||||
# libraries. This is almost certainly a wrong approach, as
|
||||
# MySQL should look in the plugin path for libraries, but that
|
||||
# path comes from CMake, not from autotools. For now, until
|
||||
# the ColumnStore engine is integrated with CMake into the
|
||||
# MariaDB server, the prefix must be set the same for the
|
||||
# MariaDB compilation and the engine compilation. I can't see
|
||||
# a way around that for now.
|
||||
#
|
||||
# FIXME:
|
||||
# a second problem here is that this manually specifies
|
||||
# the realtime library and a custom boost library. These
|
||||
# should be detected and used automatically by the autotools
|
||||
# process. A custom boost library should not be needed
|
||||
# either. The system boost should be used. I am not aware if
|
||||
# there are changes made to this custom boost, so I am leaving
|
||||
# this AS IS for now.
|
||||
AM_LIBTOOLFLAGS = -Wl,-rpath -Wl,$(prefix)/lib -lrt -lboost_idb
|
||||
.PHONY: test coverage leakcheck docs bootstrap install net-snmp-install
|
||||
|
||||
net-snmp/net-snmp-5.7.3/agent/.libs/libnetsnmpmibs.so:
|
||||
cd net-snmp/net-snmp; \
|
||||
./configure --prefix=$(prefix) --with-mib-modules=disman/event-mib --with-cc=gcc \
|
||||
--with-logfile=$(prefix)/log/snmpd.log \
|
||||
--with-sys-location=Unknown \
|
||||
--with-sys-contact=root@localhost.localdomain \
|
||||
--with-default-snmp-version=3 \
|
||||
--with-persistent-directory=$(prefix)var/net-snmp \
|
||||
--without-openssl \
|
||||
--with-ldflags="-Wl,-rpath -Wl,$(prefix)/lib"; \
|
||||
$(MAKE)
|
||||
|
||||
all-local: net-snmp/net-snmp-5.7.3/agent/.libs/libnetsnmpmibs.so
|
||||
$(MAKE) -C utils
|
||||
$(MAKE) -C oam/oamcpp
|
||||
$(MAKE) -C snmpd
|
||||
$(MAKE) -C dbcon/execplan
|
||||
$(MAKE) -C dbcon/joblist
|
||||
$(MAKE) -C versioning
|
||||
$(MAKE) -C oam
|
||||
$(MAKE) -C versioning dbrm tools
|
||||
$(MAKE) -C writeengine/wrapper
|
||||
$(MAKE) -C writeengine/client
|
||||
$(MAKE) -C writeengine/xml
|
||||
$(MAKE) -C writeengine/redistribute
|
||||
$(MAKE) -C dbcon/ddlpackage
|
||||
$(MAKE) -C dbcon/ddlpackageproc
|
||||
$(MAKE) -C dbcon/dmlpackage
|
||||
$(MAKE) -C dbcon/dmlpackageproc
|
||||
$(MAKE) -C dbcon
|
||||
$(MAKE) -C exemgr
|
||||
$(MAKE) -C ddlproc
|
||||
$(MAKE) -C dmlproc
|
||||
$(MAKE) -C procmon
|
||||
$(MAKE) -C procmgr
|
||||
$(MAKE) -C oamapps
|
||||
$(MAKE) -C decomsvr
|
||||
$(MAKE) -C primitives
|
||||
$(MAKE) -C tools
|
||||
$(MAKE) -C writeengine/server
|
||||
$(MAKE) -C writeengine/bulk
|
||||
$(MAKE) -C writeengine/splitter
|
||||
echo $(idb_cxxflags) $(CXXFLAGS) $(DEBUG_FLAGS) > buildFlags
|
||||
|
||||
net-snmp-install:
|
||||
$(MAKE) -C net-snmp install
|
||||
|
||||
install: net-snmp-install
|
||||
$(MAKE) -C utils install
|
||||
$(MAKE) -C oam/oamcpp install
|
||||
$(MAKE) -C snmpd install
|
||||
$(MAKE) -C dbcon/execplan install
|
||||
$(MAKE) -C dbcon/joblist install
|
||||
$(MAKE) -C versioning install
|
||||
$(MAKE) -C oam install
|
||||
$(MAKE) -C versioning dbrm tools install
|
||||
$(MAKE) -C writeengine/wrapper install
|
||||
$(MAKE) -C writeengine/client install
|
||||
$(MAKE) -C writeengine/xml install
|
||||
$(MAKE) -C writeengine/redistribute install
|
||||
$(MAKE) -C dbcon/ddlpackage install
|
||||
$(MAKE) -C dbcon/ddlpackageproc install
|
||||
$(MAKE) -C dbcon/dmlpackage install
|
||||
$(MAKE) -C dbcon/dmlpackageproc install
|
||||
$(MAKE) -C dbcon install
|
||||
$(MAKE) -C exemgr install
|
||||
$(MAKE) -C ddlproc install
|
||||
$(MAKE) -C dmlproc install
|
||||
$(MAKE) -C procmon install
|
||||
$(MAKE) -C procmgr install
|
||||
$(MAKE) -C oamapps install
|
||||
$(MAKE) -C decomsvr install
|
||||
$(MAKE) -C primitives install
|
||||
$(MAKE) -C tools install
|
||||
$(MAKE) -C writeengine/server install
|
||||
$(MAKE) -C writeengine/bulk install
|
||||
$(MAKE) -C writeengine/splitter install
|
||||
|
||||
compile: all-local
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
clean:
|
||||
rm -f net-snmp.built; \
|
||||
find . -name \*.d.* -exec rm -f {} \; -print
|
||||
find . -name \*.so -exec rm -f {} \; -print
|
||||
find . -name \*.a -exec rm -f {} \; -print
|
||||
find . -name \*.o -exec rm -f {} \; -print
|
||||
find . -name \*.lib -exec rm -f {} \; -print
|
||||
find . -name \*.sa -exec rm -f {} \; -print
|
||||
find . -name \*.lo -exec rm -f {} \; -print
|
||||
find . -name \*.la -exec rm -f {} \; -print
|
||||
|
860
Makefile.save
860
Makefile.save
@ -1,860 +0,0 @@
|
||||
# Makefile.in generated by automake 1.15 from Makefile.am.
|
||||
# Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id$
|
||||
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/columnstore
|
||||
pkgincludedir = $(includedir)/columnstore
|
||||
pkglibdir = $(libdir)/columnstore
|
||||
pkglibexecdir = $(libexecdir)/columnstore
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-pc-linux-gnu
|
||||
host_triplet = x86_64-pc-linux-gnu
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
||||
$(am__configure_deps) $(am__DIST_COMMON)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
||||
$(LISP)config.h.in
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
CSCOPE = cscope
|
||||
AM_RECURSIVE_TARGETS = cscope
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
|
||||
COPYING ChangeLog INSTALL NEWS README compile config.guess \
|
||||
config.sub depcomp install-sh ltmain.sh missing
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
if test -d "$(distdir)"; then \
|
||||
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -rf "$(distdir)" \
|
||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
||||
else :; fi
|
||||
am__post_remove_distdir = $(am__remove_distdir)
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
DIST_TARGETS = dist-gzip
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = ${SHELL} /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine/missing aclocal-1.15
|
||||
ALLOCA =
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AR = ar
|
||||
AUTOCONF = ${SHELL} /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine/missing automake-1.15
|
||||
AWK = mawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS =
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS =
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /bin/grep -E
|
||||
EXEEXT =
|
||||
FGREP = /bin/grep -F
|
||||
GREP = /bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LD = /usr/bin/ld -m elf_x86_64
|
||||
LDFLAGS =
|
||||
LEX = flex
|
||||
LEXLIB =
|
||||
LEX_OUTPUT_ROOT = lex.yy
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAKEINFO = ${SHELL} /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine/missing makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /bin/mkdir -p
|
||||
NM = /usr/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = columnstore
|
||||
PACKAGE_BUGREPORT = support@mariadb.com
|
||||
PACKAGE_NAME = columnstore
|
||||
PACKAGE_STRING = columnstore 1.0.2
|
||||
PACKAGE_TARNAME = columnstore
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 1.0.2
|
||||
PATH_SEPARATOR = :
|
||||
POW_LIB =
|
||||
RANLIB = ranlib
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
STRIP = strip
|
||||
VERSION = 1.0.2
|
||||
XML2_CONFIG = /usr/bin/xml2-config
|
||||
XML_CPPFLAGS = -I/usr/include/libxml2
|
||||
XML_LIBS = -lxml2
|
||||
YACC = bison -y
|
||||
YFLAGS =
|
||||
abs_builddir = /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine
|
||||
abs_srcdir = /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine
|
||||
abs_top_builddir = /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine
|
||||
abs_top_srcdir = /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${idbinstall}/bin
|
||||
build = x86_64-pc-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = pc
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
etcdir = ${idbinstall}/etc
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-pc-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = pc
|
||||
htmldir = ${docdir}
|
||||
idb_brm_libs = ${abs_top_builddir}/versioning/BRM/libbrm.la ${abs_top_builddir}/utils/idbdatafile/libidbdatafile.la ${abs_top_builddir}/utils/cacheutils/libcacheutils.la ${abs_top_builddir}/utils/rwlock/librwlock.la ${idb_oam_libs} ${idb_common_libs}
|
||||
idb_cflags = -g0 -O3 -fno-strict-aliasing -Wall
|
||||
idb_common_includes = -I${abs_top_builddir}/utils/libxml -I${abs_top_builddir}/utils/messageqcpp -I${abs_top_builddir}/writeengine/shared -I${abs_top_builddir}/utils/idbdatafile -I${abs_top_builddir}/utils/loggingcpp -I${abs_top_builddir}/utils/configcpp -I${abs_top_builddir}/utils/compress -I${abs_top_builddir}/versioning/BRM -I${abs_top_builddir}/utils/rowgroup -I${abs_top_builddir}/utils/common -I${abs_top_builddir}/utils/dataconvert -I${abs_top_builddir}/utils/rwlock -I${abs_top_builddir}/utils/funcexp -I${abs_top_builddir}/snmpd/snmpmanager -I${abs_top_builddir}/utils -I${abs_top_builddir}/oam/oamcpp -I${abs_top_builddir}/dbcon/ddlpackageproc -I${abs_top_builddir}/dbcon/ddlpackage -I${abs_top_builddir}/dbcon/execplan -I${abs_top_builddir}/utils/startup -I${abs_top_builddir}/dbcon/joblist -I${abs_top_builddir}/writeengine/wrapper -I${abs_top_builddir}/writeengine/server -I${abs_top_builddir}/dbcon/dmlpackage -I${abs_top_builddir}/writeengine/client -I${abs_top_builddir}/dbcon/dmlpackageproc -I${abs_top_builddir}/utils/cacheutils -I${abs_top_builddir}/utils/mysqlcl_idb -I${abs_top_builddir}/utils/querytele -I${abs_top_builddir}/utils/boost_idb -I${abs_top_builddir}/utils/thrift -I${abs_top_builddir}/utils/joiner -I${abs_top_builddir}/utils/threadpool -I${abs_top_builddir}/utils/batchloader -I${abs_top_builddir}/utils/ddlcleanup -I${abs_top_builddir}/utils/querystats -I${abs_top_builddir}/writeengine/xml -I${abs_top_builddir}/../../../sql -I${abs_top_builddir}/../../../include -I${abs_top_builddir}/../../../pcre -I${abs_top_builddir}/../sql -I${abs_top_builddir}/../include -I${abs_top_builddir}/../pcre -I${abs_top_builddir}/net-snmp/net-snmp -I${abs_top_builddir}/net-snmp/net-snmp/include -I${abs_top_builddir}/snmpd/snmpmanager
|
||||
idb_common_ldflags =
|
||||
idb_common_libs = ${abs_top_builddir}/utils/messageqcpp/libmessageqcpp.la ${abs_top_builddir}/utils/loggingcpp/libloggingcpp.la ${abs_top_builddir}/utils/configcpp/libconfigcpp.la ${abs_top_builddir}/utils/startup/libidbboot.a ${abs_top_builddir}/utils/boost_idb/libboost_idb.la -lxml2 -lpthread -lrt
|
||||
idb_cppflags =
|
||||
idb_cxxflags = -g0 -O3 -fno-strict-aliasing -Wall
|
||||
idb_exec_libs = ${abs_top_builddir}/dbcon/joblist/libjoblist.la ${abs_top_builddir}/dbcon/execplan/libexecplan.la ${abs_top_builddir}/utils/windowfunction/libwindowfunction.la ${abs_top_builddir}/utils/joiner/libjoiner.la ${abs_top_builddir}/utils/rowgroup/librowgroup.la ${abs_top_builddir}/utils/funcexp/libfuncexp.la ${abs_top_builddir}/utils/udfsdk/libudfsdk.la ${abs_top_builddir}/utils/dataconvert/libdataconvert.la ${abs_top_builddir}/utils/common/libcommon.la ${abs_top_builddir}/utils/compress/libcompress.la ${abs_top_builddir}/utils/mysqlcl_idb/libmysqlcl_idb.la ${abs_top_builddir}/utils/querystats/libquerystats.la ${abs_top_builddir}/utils/querytele/libquerytele.la ${abs_top_builddir}/utils/thrift/libthrift.la ${abs_top_builddir}/utils/threadpool/libthreadpool.la ${idb_brm_libs}
|
||||
idb_ldflags = -Wl,--rpath -Wl,${idbinstall}/lib -Wl,--no-as-needed -Wl,--add-needed
|
||||
idb_oam_libs = ${abs_top_builddir}/oam/oamcpp/liboamcpp.la ${abs_top_builddir}/snmpd/snmpmanager/libsnmpmanager.la ${netsnmp_libs}
|
||||
idb_write_libs = ${abs_top_builddir}/dbcon/ddlpackageproc/libddlpackageproc.la ${abs_top_builddir}/dbcon/ddlpackage/libddlpackage.la ${abs_top_builddir}/dbcon/dmlpackageproc/libdmlpackageproc.la ${abs_top_builddir}/dbcon/dmlpackage/libdmlpackage.la ${abs_top_builddir}/writeengine/wrapper/libwriteengine.la ${abs_top_builddir}/writeengine/client/libwriteengineclient.la ${abs_top_builddir}/utils/idbdatafile/libidbdatafile.la ${abs_top_builddir}/utils/cacheutils/libcacheutils.la ${idb_exec_libs}
|
||||
idbinstall = ${prefix}
|
||||
includedir = ${idbinstall}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /home/builder/mariadb-columnstore-server/mariadb-columnstore-engine/install-sh
|
||||
libdir = ${idbinstall}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localdir = ${idbinstall}/local
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${idbinstall}/man
|
||||
march_flags =
|
||||
mibdir = ${idbinstall}/share/snmp/mibs
|
||||
mkdir_p = $(MKDIR_P)
|
||||
mysqldir = ${idbinstall}/mysql
|
||||
netsnmp_libs = -L${abs_top_builddir}/net-snmp/net-snmp/snmplib/.libs -L${abs_top_builddir}/net-snmp/net-snmp/agent/helpers/.libs -L${abs_top_builddir}/net-snmp/net-snmp/agent/.libs/ -L${abs_top_builddir}/net-snmp/net-snmp/apps/.libs/ -lnetsnmpmibs -lnetsnmpagent -lnetsnmp -lnetsnmpmibs -lnetsnmphelpers
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
postdir = ${idbinstall}/post
|
||||
prefix = /usr/local/mariadb/columnstore
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${idbinstall}/sbin
|
||||
sharedir = ${idbinstall}/share
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${idbinstall}/etc
|
||||
target_alias =
|
||||
toolsdir = ${idbinstall}/tools
|
||||
top_build_prefix =
|
||||
top_builddir = .
|
||||
top_srcdir = .
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
# FIXME:
|
||||
# this sets the local linker path (-rpath) so that the ColumnStore
|
||||
# libraries and binaries know where to look for the necessary
|
||||
# libraries. This is almost certainly a wrong approach, as
|
||||
# MySQL should look in the plugin path for libraries, but that
|
||||
# path comes from CMake, not from autotools. For now, until
|
||||
# the ColumnStore engine is integrated with CMake into the
|
||||
# MariaDB server, the prefix must be set the same for the
|
||||
# MariaDB compilation and the engine compilation. I can't see
|
||||
# a way around that for now.
|
||||
#
|
||||
# FIXME:
|
||||
# a second problem here is that this manually specifies
|
||||
# the realtime library and a custom boost library. These
|
||||
# should be detected and used automatically by the autotools
|
||||
# process. A custom boost library should not be needed
|
||||
# either. The system boost should be used. I am not aware if
|
||||
# there are changes made to this custom boost, so I am leaving
|
||||
# this AS IS for now.
|
||||
AM_LIBTOOLFLAGS = -Wl,-rpath -Wl,$(prefix)/lib -lrt -lboost_idb
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh: Makefile
|
||||
@:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
config.h: stamp-h1
|
||||
@test -f $@ || rm -f stamp-h1
|
||||
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
$(srcdir)/config.h.in: $(am__configure_deps)
|
||||
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
||||
rm -f stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool config.lt
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-am
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-am
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscope: cscope.files
|
||||
test ! -s cscope.files \
|
||||
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
||||
clean-cscope:
|
||||
-rm -f cscope.files
|
||||
cscope.files: clean-cscope cscopelist
|
||||
cscopelist: cscopelist-am
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-lzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
@echo WARNING: "Support for distribution archives compressed with" \
|
||||
"legacy program 'compress' is deprecated." >&2
|
||||
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
@echo WARNING: "Support for shar distribution archives is" \
|
||||
"deprecated." >&2
|
||||
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist dist-all:
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lz*) \
|
||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir)
|
||||
chmod u+w $(distdir)
|
||||
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build/sub \
|
||||
&& ../../configure \
|
||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
--srcdir=../.. --prefix="$$dc_install_base" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__post_remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@test -n '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: trying to run $@ with an empty' \
|
||||
'$$(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile config.h all-local
|
||||
installdirs:
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: all install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am all-local am--refresh check \
|
||||
check-am clean clean-cscope clean-generic clean-libtool cscope \
|
||||
cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
|
||||
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
|
||||
distcheck distclean distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags distcleancheck distdir \
|
||||
distuninstallcheck dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
.PHONY: test coverage leakcheck docs bootstrap install net-snmp-install
|
||||
|
||||
net-snmp/net-snmp-5.7.3/agent/.libs/libnetsnmpmibs.so:
|
||||
cd net-snmp/net-snmp; \
|
||||
./configure --prefix=$(prefix) --with-mib-modules=disman/event-mib --with-cc=gcc \
|
||||
--with-logfile=$(prefix)/log/snmpd.log \
|
||||
--with-sys-location=Unknown \
|
||||
--with-sys-contact=root@localhost.localdomain \
|
||||
--with-default-snmp-version=3 \
|
||||
--with-persistent-directory=$(prefix)var/net-snmp \
|
||||
--without-openssl \
|
||||
--with-ldflags="-Wl,-rpath -Wl,$(prefix)/lib"; \
|
||||
$(MAKE)
|
||||
|
||||
all-local: net-snmp/net-snmp-5.7.3/agent/.libs/libnetsnmpmibs.so
|
||||
$(MAKE) -C utils
|
||||
$(MAKE) -C oam/oamcpp
|
||||
$(MAKE) -C snmpd
|
||||
$(MAKE) -C dbcon/execplan
|
||||
$(MAKE) -C dbcon/joblist
|
||||
$(MAKE) -C versioning
|
||||
$(MAKE) -C oam
|
||||
$(MAKE) -C versioning dbrm tools
|
||||
$(MAKE) -C writeengine/wrapper
|
||||
$(MAKE) -C writeengine/client
|
||||
$(MAKE) -C writeengine/xml
|
||||
$(MAKE) -C writeengine/redistribute
|
||||
$(MAKE) -C dbcon/ddlpackage
|
||||
$(MAKE) -C dbcon/ddlpackageproc
|
||||
$(MAKE) -C dbcon/dmlpackage
|
||||
$(MAKE) -C dbcon/dmlpackageproc
|
||||
$(MAKE) -C dbcon
|
||||
$(MAKE) -C exemgr
|
||||
$(MAKE) -C ddlproc
|
||||
$(MAKE) -C dmlproc
|
||||
$(MAKE) -C procmon
|
||||
$(MAKE) -C procmgr
|
||||
$(MAKE) -C oamapps
|
||||
$(MAKE) -C decomsvr
|
||||
$(MAKE) -C primitives
|
||||
$(MAKE) -C tools
|
||||
$(MAKE) -C writeengine/server
|
||||
$(MAKE) -C writeengine/bulk
|
||||
$(MAKE) -C writeengine/splitter
|
||||
echo $(idb_cxxflags) $(CXXFLAGS) $(DEBUG_FLAGS) > buildFlags
|
||||
|
||||
net-snmp-install:
|
||||
$(MAKE) -C net-snmp install
|
||||
|
||||
install: net-snmp-install
|
||||
$(MAKE) -C utils install
|
||||
$(MAKE) -C oam/oamcpp install
|
||||
$(MAKE) -C snmpd install
|
||||
$(MAKE) -C dbcon/execplan install
|
||||
$(MAKE) -C dbcon/joblist install
|
||||
$(MAKE) -C versioning install
|
||||
$(MAKE) -C oam install
|
||||
$(MAKE) -C versioning dbrm tools install
|
||||
$(MAKE) -C writeengine/wrapper install
|
||||
$(MAKE) -C writeengine/client install
|
||||
$(MAKE) -C writeengine/xml install
|
||||
$(MAKE) -C writeengine/redistribute install
|
||||
$(MAKE) -C dbcon/ddlpackage install
|
||||
$(MAKE) -C dbcon/ddlpackageproc install
|
||||
$(MAKE) -C dbcon/dmlpackage install
|
||||
$(MAKE) -C dbcon/dmlpackageproc install
|
||||
$(MAKE) -C dbcon install
|
||||
$(MAKE) -C exemgr install
|
||||
$(MAKE) -C ddlproc install
|
||||
$(MAKE) -C dmlproc install
|
||||
$(MAKE) -C procmon install
|
||||
$(MAKE) -C procmgr install
|
||||
$(MAKE) -C oamapps install
|
||||
$(MAKE) -C decomsvr install
|
||||
$(MAKE) -C primitives install
|
||||
$(MAKE) -C tools install
|
||||
$(MAKE) -C writeengine/server install
|
||||
$(MAKE) -C writeengine/bulk install
|
||||
$(MAKE) -C writeengine/splitter install
|
||||
|
||||
compile: all-local
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
clean:
|
||||
rm -f net-snmp.built; \
|
||||
find . -name \*.d.* -o -name \*.so -o -name \*.a -o -name \*.o -o -name \*.lib -o -name \*.sa -o -name \*.lo -o -name \*.la -exec rm {} \; -print
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
1346
aclocal.m4
vendored
1346
aclocal.m4
vendored
File diff suppressed because it is too large
Load Diff
@ -1,102 +0,0 @@
|
||||
<?xml version = '1.0'?>
|
||||
<kdevelop>
|
||||
<general>
|
||||
<author/>
|
||||
<email>dhill@srvhill04.calpont.com</email>
|
||||
<version>$VERSION$</version>
|
||||
<projectmanagement>KDevCustomProject</projectmanagement>
|
||||
<primarylanguage>C</primarylanguage>
|
||||
<ignoreparts/>
|
||||
</general>
|
||||
<kdevcustomproject>
|
||||
<run>
|
||||
<mainprogram>build</mainprogram>
|
||||
<directoryradio>executable</directoryradio>
|
||||
</run>
|
||||
</kdevcustomproject>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell/>
|
||||
</general>
|
||||
</kdevdebugger>
|
||||
<kdevdoctreeview>
|
||||
<ignoretocs>
|
||||
<toc>ada</toc>
|
||||
<toc>ada_bugs_gcc</toc>
|
||||
<toc>bash</toc>
|
||||
<toc>bash_bugs</toc>
|
||||
<toc>clanlib</toc>
|
||||
<toc>fortran_bugs_gcc</toc>
|
||||
<toc>gnome1</toc>
|
||||
<toc>gnustep</toc>
|
||||
<toc>gtk</toc>
|
||||
<toc>gtk_bugs</toc>
|
||||
<toc>haskell</toc>
|
||||
<toc>haskell_bugs_ghc</toc>
|
||||
<toc>java_bugs_gcc</toc>
|
||||
<toc>java_bugs_sun</toc>
|
||||
<toc>kde2book</toc>
|
||||
<toc>libstdc++</toc>
|
||||
<toc>opengl</toc>
|
||||
<toc>pascal_bugs_fp</toc>
|
||||
<toc>php</toc>
|
||||
<toc>php_bugs</toc>
|
||||
<toc>perl</toc>
|
||||
<toc>perl_bugs</toc>
|
||||
<toc>python</toc>
|
||||
<toc>python_bugs</toc>
|
||||
<toc>qt-kdev3</toc>
|
||||
<toc>ruby</toc>
|
||||
<toc>ruby_bugs</toc>
|
||||
<toc>sdl</toc>
|
||||
<toc>stl</toc>
|
||||
<toc>sw</toc>
|
||||
<toc>w3c-dom-level2-html</toc>
|
||||
<toc>w3c-svg</toc>
|
||||
<toc>w3c-uaag10</toc>
|
||||
<toc>wxwidgets_bugs</toc>
|
||||
</ignoretocs>
|
||||
<ignoreqt_xml>
|
||||
<toc>Guide to the Qt Translation Tools</toc>
|
||||
<toc>Qt Assistant Manual</toc>
|
||||
<toc>Qt Designer Manual</toc>
|
||||
<toc>Qt Reference Documentation</toc>
|
||||
<toc>qmake User Guide</toc>
|
||||
</ignoreqt_xml>
|
||||
<ignoredoxygen>
|
||||
<toc>KDE Libraries (Doxygen)</toc>
|
||||
</ignoredoxygen>
|
||||
</kdevdoctreeview>
|
||||
<kdevfilecreate>
|
||||
<filetypes/>
|
||||
<useglobaltypes>
|
||||
<type ext="c" />
|
||||
<type ext="h" />
|
||||
</useglobaltypes>
|
||||
</kdevfilecreate>
|
||||
<kdevcppsupport>
|
||||
<references/>
|
||||
<codecompletion>
|
||||
<includeGlobalFunctions>true</includeGlobalFunctions>
|
||||
<includeTypes>true</includeTypes>
|
||||
<includeEnums>true</includeEnums>
|
||||
<includeTypedefs>false</includeTypedefs>
|
||||
<automaticCodeCompletion>true</automaticCodeCompletion>
|
||||
<automaticArgumentsHint>true</automaticArgumentsHint>
|
||||
<automaticHeaderCompletion>true</automaticHeaderCompletion>
|
||||
<codeCompletionDelay>250</codeCompletionDelay>
|
||||
<argumentsHintDelay>400</argumentsHintDelay>
|
||||
<headerCompletionDelay>250</headerCompletionDelay>
|
||||
</codecompletion>
|
||||
</kdevcppsupport>
|
||||
<kdevfileview>
|
||||
<groups>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
<hidenonlocation>false</hidenonlocation>
|
||||
</groups>
|
||||
<tree>
|
||||
<hidepatterns>*.o,*.lo,CVS</hidepatterns>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
</tree>
|
||||
</kdevfileview>
|
||||
</kdevelop>
|
@ -1 +0,0 @@
|
||||
# KDevelop Custom Project File List
|
Binary file not shown.
@ -1,170 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE KDevPrjSession>
|
||||
<KDevPrjSession>
|
||||
<DocsAndViews NumberOfDocuments="50" >
|
||||
<Doc0 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/build/files.lst" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc0>
|
||||
<Doc1 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/calpontAlias" >
|
||||
<View0 line="5" Type="Source" />
|
||||
</Doc1>
|
||||
<Doc2 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/calpontSyslog7" >
|
||||
<View0 line="1" Type="Source" />
|
||||
</Doc2>
|
||||
<Doc3 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/calpontLogRotate" >
|
||||
<View0 line="5" Type="Source" />
|
||||
</Doc3>
|
||||
<Doc4 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/calpontSyslog" >
|
||||
<View0 line="1" Type="Source" />
|
||||
</Doc4>
|
||||
<Doc5 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/calpontSyslog-ng" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc5>
|
||||
<Doc6 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstoreSyslog-ng" >
|
||||
<View0 line="23" Type="Source" />
|
||||
</Doc6>
|
||||
<Doc7 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/infinidb" >
|
||||
<View0 line="109" Type="Source" />
|
||||
</Doc7>
|
||||
<Doc8 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstoreSyslog7" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc8>
|
||||
<Doc9 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstore" >
|
||||
<View0 line="36" Type="Source" />
|
||||
</Doc9>
|
||||
<Doc10 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstoreSyslog" >
|
||||
<View0 line="1" Type="Source" />
|
||||
</Doc10>
|
||||
<Doc11 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstoreAlias" >
|
||||
<View0 line="2" Type="Source" />
|
||||
</Doc11>
|
||||
<Doc12 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstoreLogRotate" >
|
||||
<View0 line="21" Type="Source" />
|
||||
</Doc12>
|
||||
<Doc13 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/etc/ProcessConfig.xml.singleserver" >
|
||||
<View0 line="6" Type="Source" />
|
||||
</Doc13>
|
||||
<Doc14 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/infinidb_hadoop/src/infinidb/hadoop/example/InfiniDBOutputDriver.java" >
|
||||
<View0 line="65" Type="Source" />
|
||||
</Doc14>
|
||||
<Doc15 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/autoconf/INSTALL" >
|
||||
<View0 line="45" Type="Source" />
|
||||
</Doc15>
|
||||
<Doc16 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/autoconf/README" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc16>
|
||||
<Doc17 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/scenarios/perf/source/pf/fm/getsql.orig" >
|
||||
<View0 line="43" Type="Source" />
|
||||
</Doc17>
|
||||
<Doc18 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/scenarios/common/sql/load_TestStats.sql" >
|
||||
<View0 line="6" Type="Source" />
|
||||
</Doc18>
|
||||
<Doc19 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/scenarios/common/sql/load_TestTime.sql" >
|
||||
<View0 line="6" Type="Source" />
|
||||
</Doc19>
|
||||
<Doc20 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/scenarios/common/sql/load_TestSummary.sql" >
|
||||
<View0 line="6" Type="Source" />
|
||||
</Doc20>
|
||||
<Doc21 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/idbhdfs/hdfs-20/setenv-hdfs-20" >
|
||||
<View0 line="2" Type="Source" />
|
||||
</Doc21>
|
||||
<Doc22 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/utils/idbhdfs/hdfs-12/setenv-hdfs-12" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc22>
|
||||
<Doc23 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/INSTALL" >
|
||||
<View0 line="45" Type="Source" />
|
||||
</Doc23>
|
||||
<Doc24 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/config.log" >
|
||||
<View0 line="29" Type="Source" />
|
||||
</Doc24>
|
||||
<Doc25 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/writeengine/bulk/qa-bulkload.py" >
|
||||
<View0 line="55" Type="Source" />
|
||||
</Doc25>
|
||||
<Doc26 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/writeengine/bulk/checkidx.py" >
|
||||
<View0 line="11" Type="Source" />
|
||||
</Doc26>
|
||||
<Doc27 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/writeengine/bulk/bulkload.py" >
|
||||
<View0 line="58" Type="Source" />
|
||||
</Doc27>
|
||||
<Doc28 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstore.def" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc28>
|
||||
<Doc29 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/transactionLog" >
|
||||
<View0 line="10" Type="Source" />
|
||||
</Doc29>
|
||||
<Doc30 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstore.conf" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc30>
|
||||
<Doc31 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/crontab" >
|
||||
<View0 line="16" Type="Source" />
|
||||
</Doc31>
|
||||
<Doc32 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstore.upstart" >
|
||||
<View0 line="14" Type="Source" />
|
||||
</Doc32>
|
||||
<Doc33 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/post/functions" >
|
||||
<View0 line="9" Type="Source" />
|
||||
</Doc33>
|
||||
<Doc34 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/versioning/BRM/Columnstore.xml" >
|
||||
<View0 line="253" Type="Source" />
|
||||
</Doc34>
|
||||
<Doc35 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/dbcon/joblist/config-dec.xml" >
|
||||
<View0 line="409" Type="Source" />
|
||||
</Doc35>
|
||||
<Doc36 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/dbcon/joblist/fdtests.pl" >
|
||||
<View0 line="8" Type="Source" />
|
||||
</Doc36>
|
||||
<Doc37 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/dbcon/mysql/my.cnf" >
|
||||
<View0 line="22" Type="Source" />
|
||||
</Doc37>
|
||||
<Doc38 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/dbcon/mysql/schemaSync.pl" >
|
||||
<View0 line="9" Type="Source" />
|
||||
</Doc38>
|
||||
<Doc39 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/dbcon/mysql/dumpcat.pl" >
|
||||
<View0 line="7" Type="Source" />
|
||||
</Doc39>
|
||||
<Doc40 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/README" >
|
||||
<View0 line="5" Type="Source" />
|
||||
</Doc40>
|
||||
<Doc41 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/libtool" >
|
||||
<View0 line="333" Type="Source" />
|
||||
</Doc41>
|
||||
<Doc42 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/tools/reserveStacks/stack" >
|
||||
<View0 line="39" Type="Source" />
|
||||
</Doc42>
|
||||
<Doc43 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/tools/evalidx/checkidx.py" >
|
||||
<View0 line="11" Type="Source" />
|
||||
</Doc43>
|
||||
<Doc44 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/snmpd/etc/snmpdx.conf" >
|
||||
<View0 line="484" Type="Source" />
|
||||
</Doc44>
|
||||
<Doc45 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/snmpd/etc/snmptrapd.conf" >
|
||||
<View0 line="8" Type="Source" />
|
||||
</Doc45>
|
||||
<Doc46 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/snmpd/etc/snmpdx.conf.singleserver" >
|
||||
<View0 line="484" Type="Source" />
|
||||
</Doc46>
|
||||
<Doc47 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/snmpd/etc/snmptrapd.conf.singleserver" >
|
||||
<View0 line="8" Type="Source" />
|
||||
</Doc47>
|
||||
<Doc48 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/ChangeLog" >
|
||||
<View0 line="300" Type="Source" />
|
||||
</Doc48>
|
||||
<Doc49 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/build/README" >
|
||||
<View0 line="66" Type="Source" />
|
||||
</Doc49>
|
||||
</DocsAndViews>
|
||||
<pluginList>
|
||||
<kdevdebugger>
|
||||
<breakpointList/>
|
||||
</kdevdebugger>
|
||||
<kdevbookmarks>
|
||||
<bookmarks/>
|
||||
</kdevbookmarks>
|
||||
<kdevvalgrind>
|
||||
<executable path="" params="" />
|
||||
<valgrind path="" params="" />
|
||||
<calltree path="" params="" />
|
||||
<kcachegrind path="" />
|
||||
</kdevvalgrind>
|
||||
</pluginList>
|
||||
</KDevPrjSession>
|
@ -1,393 +0,0 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
Summary: MariaDB-Columnstore software
|
||||
Name: mariadb-columnstore
|
||||
@@VERSION@@
|
||||
@@RELEASE@@
|
||||
Vendor: MariaDB Corporation Ab
|
||||
URL: http://www.mariadb.com/
|
||||
@@PACKAGER@@
|
||||
Group: Applications
|
||||
License: Copyright (c) 2016 MariaDB Corporation Ab., all rights reserved; redistributable under the terms of the GPL, see the file COPYING for details.
|
||||
BuildRoot: %{_tmppath}/%{name}.%{release}-buildroot
|
||||
|
||||
%description
|
||||
MariaDB-Columnstore software meta-package
|
||||
|
||||
%package platform
|
||||
Summary: MariaDB-Columnstore software binaries
|
||||
Group: Applications
|
||||
Requires: expect, mariadb-columnstore-libs
|
||||
|
||||
%description platform
|
||||
MariaDB-Columnstore binary files
|
||||
@@BUILDINFO@@
|
||||
|
||||
%package libs
|
||||
Summary: MariaDB-Columnstore software libraries
|
||||
Group: Applications
|
||||
|
||||
%description libs
|
||||
MariaDB-Columnstore libraries
|
||||
|
||||
%package storage-engine
|
||||
Summary: MariaDB-Columnstore software MariaDB connector
|
||||
Group: Applications
|
||||
Requires: mariadb-columnstore-libs
|
||||
|
||||
%description storage-engine
|
||||
MariaDB Columnstore connector binary files
|
||||
|
||||
%prep
|
||||
%define _use_internal_dependency_generator 0
|
||||
%define __find_requires %{nil}
|
||||
%define __os_install_post %{nil}
|
||||
%define debug_package %{nil}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}/usr/local
|
||||
tar -C $RPM_BUILD_DIR/%{name}-%{version}.%{release} -cf - . | tar -C %{buildroot}/usr/local -xf -
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT $RPM_BUILD_DIR/%{name}-%{version}.%{release}
|
||||
|
||||
%changelog
|
||||
|
||||
%files platform
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/mariadb/columnstore/bin/DDLProc
|
||||
/usr/local/mariadb/columnstore/bin/ExeMgr
|
||||
/usr/local/mariadb/columnstore/bin/ProcMgr
|
||||
/usr/local/mariadb/columnstore/bin/ProcMon
|
||||
/usr/local/mariadb/columnstore/bin/DMLProc
|
||||
/usr/local/mariadb/columnstore/bin/WriteEngineServer
|
||||
/usr/local/mariadb/columnstore/bin/cpimport
|
||||
/usr/local/mariadb/columnstore/bin/post-install
|
||||
/usr/local/mariadb/columnstore/bin/post-mysql-install
|
||||
/usr/local/mariadb/columnstore/bin/post-mysqld-install
|
||||
/usr/local/mariadb/columnstore/bin/pre-uninstall
|
||||
/usr/local/mariadb/columnstore/bin/PrimProc
|
||||
/usr/local/mariadb/columnstore/bin/DecomSvr
|
||||
/usr/local/mariadb/columnstore/bin/upgrade-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/run.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstore
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSyslog
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSyslog7
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSyslog-ng
|
||||
/usr/local/mariadb/columnstore/bin/syslogSetup.sh
|
||||
/usr/local/mariadb/columnstore/bin/cplogger
|
||||
/usr/local/mariadb/columnstore/bin/columnstore.def
|
||||
/usr/local/mariadb/columnstore/bin/dbbuilder
|
||||
/usr/local/mariadb/columnstore/bin/cpimport.bin
|
||||
/usr/local/mariadb/columnstore/bin/load_brm
|
||||
/usr/local/mariadb/columnstore/bin/save_brm
|
||||
/usr/local/mariadb/columnstore/bin/dbrmctl
|
||||
/usr/local/mariadb/columnstore/bin/controllernode
|
||||
/usr/local/mariadb/columnstore/bin/reset_locks
|
||||
/usr/local/mariadb/columnstore/bin/workernode
|
||||
/usr/local/mariadb/columnstore/bin/colxml
|
||||
/usr/local/mariadb/columnstore/bin/clearShm
|
||||
/usr/local/mariadb/columnstore/bin/viewtablelock
|
||||
/usr/local/mariadb/columnstore/bin/cleartablelock
|
||||
/usr/local/mariadb/columnstore/bin/mcsadmin
|
||||
/usr/local/mariadb/columnstore/bin/trapHandler
|
||||
/usr/local/mariadb/columnstore/bin/remote_command.sh
|
||||
/usr/local/mariadb/columnstore/bin/postConfigure
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreLogRotate
|
||||
/usr/local/mariadb/columnstore/bin/transactionLog
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreDBWrite
|
||||
/usr/local/mariadb/columnstore/bin/transactionLogArchiver.sh
|
||||
/usr/local/mariadb/columnstore/bin/installer
|
||||
/usr/local/mariadb/columnstore/bin/module_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/user_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/performance_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/startupTests.sh
|
||||
/usr/local/mariadb/columnstore/bin/os_check.sh
|
||||
/usr/local/mariadb/columnstore/bin/sendtrap
|
||||
/usr/local/mariadb/columnstore/bin/remote_scp_put.sh
|
||||
/usr/local/mariadb/columnstore/bin/remotessh.exp
|
||||
/usr/local/mariadb/columnstore/bin/ServerMonitor
|
||||
/usr/local/mariadb/columnstore/bin/master-rep-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/slave-rep-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/rsync.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSupport
|
||||
/usr/local/mariadb/columnstore/bin/hardwareReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/softwareReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/configReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/logReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/bulklogReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/resourceReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/hadoopReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/alarmReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/amazonInstaller
|
||||
/usr/local/mariadb/columnstore/bin/remote_command_verify.sh
|
||||
/usr/local/mariadb/columnstore/bin/disable-rep-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstore.service
|
||||
|
||||
#
|
||||
%config /usr/local/mariadb/columnstore/etc/Columnstore.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/ConsoleCmds.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/ProcessConfig.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/snmpd.conf
|
||||
%config /usr/local/mariadb/columnstore/etc/snmptrapd.conf
|
||||
%config /usr/local/mariadb/columnstore/etc/Columnstore.xml.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/ProcessConfig.xml.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/snmpd.conf.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/snmptrapd.conf.singleserver
|
||||
#
|
||||
/usr/local/mariadb/columnstore/etc/MessageFile.txt
|
||||
/usr/local/mariadb/columnstore/etc/ErrorMessage.txt
|
||||
#
|
||||
%attr(0666, root, root) /usr/local/mariadb/columnstore/local/module
|
||||
#
|
||||
/usr/local/mariadb/columnstore/releasenum
|
||||
|
||||
# Tools...
|
||||
/usr/local/mariadb/columnstore/bin/rollback
|
||||
/usr/local/mariadb/columnstore/bin/editem
|
||||
/usr/local/mariadb/columnstore/bin/getConfig
|
||||
/usr/local/mariadb/columnstore/bin/setConfig
|
||||
/usr/local/mariadb/columnstore/bin/setenv-hdfs-12
|
||||
/usr/local/mariadb/columnstore/bin/setenv-hdfs-20
|
||||
/usr/local/mariadb/columnstore/bin/configxml.sh
|
||||
/usr/local/mariadb/columnstore/bin/remote_scp_get.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreAlias
|
||||
/usr/local/mariadb/columnstore/bin/autoConfigure
|
||||
/usr/local/mariadb/columnstore/bin/ddlcleanup
|
||||
/usr/local/mariadb/columnstore/bin/idbmeminfo
|
||||
/usr/local/mariadb/columnstore/bin/IDBInstanceCmds.sh
|
||||
/usr/local/mariadb/columnstore/bin/IDBVolumeCmds.sh
|
||||
/usr/local/mariadb/columnstore/bin/binary_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/myCnf-include-args.text
|
||||
/usr/local/mariadb/columnstore/bin/myCnf-exclude-args.text
|
||||
/usr/local/mariadb/columnstore/bin/mycnfUpgrade
|
||||
/usr/local/mariadb/columnstore/bin/getMySQLpw
|
||||
/usr/local/mariadb/columnstore/bin/columnstore.conf
|
||||
|
||||
/usr/local/mariadb/columnstore/sbin/snmpd
|
||||
/usr/local/mariadb/columnstore/sbin/snmptrapd
|
||||
%config %attr(0666, root, root) /usr/local/mariadb/columnstore/etc/AlarmConfig.xml
|
||||
#
|
||||
%config /usr/local/mariadb/columnstore/local/snmpdx.conf
|
||||
%config /usr/local/mariadb/columnstore/local/snmpdx.conf.singleserver
|
||||
#
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/AGENTX-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/CALPONT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-EVENT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-SCHEDULE-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-SCRIPT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/EtherLike-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HCNUM-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HOST-RESOURCES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HOST-RESOURCES-TYPES.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANAifType-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-LANGUAGE-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-RTPROTO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IF-INVERTED-STACK-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IF-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/INET-ADDRESS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IP-FORWARD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-ICMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-TCP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-UDP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NOTIFICATION-LOG-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC1155-SMI.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC1213-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC-1215.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RMON-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SMUX-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-COMMUNITY-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-FRAMEWORK-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-MPD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-NOTIFICATION-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-PROXY-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-TARGET-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USM-AES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USM-DH-OBJECTS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-CONF.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-SMI.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-TM.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/TCP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/TRANSPORT-ADDRESS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DEMO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DISKIO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DLMOD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-IPFWACC-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-SNMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UDP-MIB.txt
|
||||
#
|
||||
/usr/local/mariadb/columnstore/post/functions
|
||||
/usr/local/mariadb/columnstore/post/test-001.sh
|
||||
/usr/local/mariadb/columnstore/post/test-002.sh
|
||||
/usr/local/mariadb/columnstore/post/test-003.sh
|
||||
/usr/local/mariadb/columnstore/post/test-004.sh
|
||||
|
||||
# Tools...
|
||||
#
|
||||
%files libs
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/mariadb/columnstore/lib/libconfigcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlpackageproc.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlpackage.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdmlpackageproc.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdmlpackage.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libexecplan.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libfuncexp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libudfsdk.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libjoblist.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libjoiner.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libloggingcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libmessageqcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmpagent.so.30.0.3
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmphelpers.so.30.0.3
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmpmibs.so.30.0.3
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmp.so.30.0.3
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmptrapd.so.30.0.3
|
||||
#/usr/local/mariadb/columnstore/lib/libnetsnmpagent.so.5.2.1
|
||||
#/usr/local/mariadb/columnstore/lib/libnetsnmphelpers.so.5.2.1
|
||||
#/usr/local/mariadb/columnstore/lib/libnetsnmpmibs.so.5.2.1
|
||||
#/usr/local/mariadb/columnstore/lib/libnetsnmp.so.5.2.1
|
||||
#/usr/local/mariadb/columnstore/lib/libnetsnmptrapd.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/liboamcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libsnmpmanager.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libthreadpool.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwindowfunction.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengine.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengineclient.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libbrm.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/librwlock.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdataconvert.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/librowgroup.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcacheutils.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcommon.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcompress.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlcleanuputil.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libbatchloader.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libmysqlcl_idb.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libquerystats.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengineredistribute.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libidbdatafile.so.1.0.0
|
||||
#/usr/local/mariadb/columnstore/lib/hdfs-20.so
|
||||
#/usr/local/mariadb/columnstore/lib/hdfs-12.so
|
||||
/usr/local/mariadb/columnstore/lib/libthrift.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libquerytele.so.1.0.0
|
||||
|
||||
%files storage-engine
|
||||
/usr/local/mariadb/columnstore/lib/libcalmysql.so.1.0.0
|
||||
#/usr/local/mariadb/columnstore/lib/libudf_mysql.so.1.0.0
|
||||
|
||||
/usr/local/mariadb/columnstore/mysql/mysql-Columnstore
|
||||
/usr/local/mariadb/columnstore/mysql/install_calpont_mysql.sh
|
||||
/usr/local/mariadb/columnstore/mysql/syscatalog_mysql.sql
|
||||
/usr/local/mariadb/columnstore/mysql/dumpcat_mysql.sql
|
||||
/usr/local/mariadb/columnstore/mysql/dumpcat.pl
|
||||
/usr/local/mariadb/columnstore/mysql/calsetuserpriority.sql
|
||||
/usr/local/mariadb/columnstore/mysql/calremoveuserpriority.sql
|
||||
/usr/local/mariadb/columnstore/mysql/calshowprocesslist.sql
|
||||
|
||||
%config /usr/local/mariadb/columnstore/mysql/my.cnf
|
||||
|
||||
#
|
||||
# Scriptlets
|
||||
# for an install, pre & post run with $1 set to 1
|
||||
# for an erase, preun & postun run with $1 set to 0
|
||||
# for an upgrade, pre & post run first, with $1 set to 2 then the _old_ preun & postun run with $1 set to 1
|
||||
|
||||
%post platform
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
test -x /usr/local/mariadb/columnstore/bin/post-install && /usr/local/mariadb/columnstore/bin/post-install --prefix=$prefix --rpmmode=$rpmmode
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
%post libs
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
%post storage-engine
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
|
||||
%preun platform
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
if [ $rpmmode = erase ]; then
|
||||
test -x /usr/local/mariadb/columnstore/bin/pre-uninstall && /usr/local/mariadb/columnstore/bin/pre-uninstall
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun libs
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun storage-engine
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
|
@ -1,460 +0,0 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
Summary: MariaDB-Columnstore software
|
||||
Name: mariadb-columnstore
|
||||
@@VERSION@@
|
||||
@@RELEASE@@
|
||||
Vendor: MariaDB Corporation Ab
|
||||
URL: http://www.mariadb.com/
|
||||
@@PACKAGER@@
|
||||
Group: Applications
|
||||
License: Copyright (c) 2016 MariaDB Corporation Ab., all rights reserved; redistributable under the terms of the GPL, see the file COPYING for details.
|
||||
BuildRoot: %{_tmppath}/%{name}.%{release}-buildroot
|
||||
|
||||
%description
|
||||
MariaDB-Columnstore software meta-package
|
||||
|
||||
%package platform
|
||||
Summary: MariaDB-Columnstore software binaries
|
||||
Group: Applications
|
||||
Requires: expect, mariadb-columnstore-libs
|
||||
|
||||
%description platform
|
||||
MariaDB-Columnstore binary files
|
||||
@@BUILDINFO@@
|
||||
|
||||
%package libs
|
||||
Summary: MariaDB-Columnstore software libraries
|
||||
Group: Applications
|
||||
|
||||
%description libs
|
||||
MariaDB-Columnstore libraries
|
||||
|
||||
%package enterprise
|
||||
Summary: InfiniDB Enterprise software binaries
|
||||
Group: Applications
|
||||
Requires: mariadb-columnstore-libs, mariadb-columnstore-platform
|
||||
License: Proprietary; Copyright (c) 2016 MariaDB Corporation Ab., all rights reserved
|
||||
|
||||
%description enterprise
|
||||
InfiniDB Enterprise binary files
|
||||
|
||||
%package storage-engine
|
||||
Summary: MariaDB-Columnstore software MariaDB connector
|
||||
Group: Applications
|
||||
Requires: mariadb-columnstore-libs
|
||||
|
||||
%description storage-engine
|
||||
MariaDB Columnstore connector binary files
|
||||
|
||||
%prep
|
||||
%define _use_internal_dependency_generator 0
|
||||
%define __find_requires %{nil}
|
||||
%define __os_install_post %{nil}
|
||||
%define debug_package %{nil}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}/usr/local
|
||||
tar -C $RPM_BUILD_DIR/%{name}-%{version}.%{release} -cf - . | tar -C %{buildroot}/usr/local -xf -
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT $RPM_BUILD_DIR/%{name}-%{version}.%{release}
|
||||
|
||||
%changelog
|
||||
|
||||
%files platform
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/mariadb/columnstore/bin/DDLProc
|
||||
/usr/local/mariadb/columnstore/bin/ExeMgr
|
||||
/usr/local/mariadb/columnstore/bin/ProcMgr
|
||||
/usr/local/mariadb/columnstore/bin/ProcMon
|
||||
/usr/local/mariadb/columnstore/bin/DMLProc
|
||||
/usr/local/mariadb/columnstore/bin/WriteEngineServer
|
||||
/usr/local/mariadb/columnstore/bin/cpimport
|
||||
/usr/local/mariadb/columnstore/bin/post-install
|
||||
/usr/local/mariadb/columnstore/bin/post-mysql-install
|
||||
/usr/local/mariadb/columnstore/bin/post-mysqld-install
|
||||
/usr/local/mariadb/columnstore/bin/pre-uninstall
|
||||
/usr/local/mariadb/columnstore/bin/PrimProc
|
||||
/usr/local/mariadb/columnstore/bin/DecomSvr
|
||||
/usr/local/mariadb/columnstore/bin/upgrade-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/run.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstore
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSyslog
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSyslog7
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSyslog-ng
|
||||
/usr/local/mariadb/columnstore/bin/syslogSetup.sh
|
||||
/usr/local/mariadb/columnstore/bin/cplogger
|
||||
/usr/local/mariadb/columnstore/bin/columnstore.def
|
||||
/usr/local/mariadb/columnstore/bin/dbbuilder
|
||||
/usr/local/mariadb/columnstore/bin/cpimport.bin
|
||||
/usr/local/mariadb/columnstore/bin/load_brm
|
||||
/usr/local/mariadb/columnstore/bin/save_brm
|
||||
/usr/local/mariadb/columnstore/bin/dbrmctl
|
||||
/usr/local/mariadb/columnstore/bin/controllernode
|
||||
/usr/local/mariadb/columnstore/bin/reset_locks
|
||||
/usr/local/mariadb/columnstore/bin/workernode
|
||||
/usr/local/mariadb/columnstore/bin/colxml
|
||||
/usr/local/mariadb/columnstore/bin/clearShm
|
||||
/usr/local/mariadb/columnstore/bin/viewtablelock
|
||||
/usr/local/mariadb/columnstore/bin/cleartablelock
|
||||
/usr/local/mariadb/columnstore/bin/mcsadmin
|
||||
/usr/local/mariadb/columnstore/bin/trapHandler
|
||||
/usr/local/mariadb/columnstore/bin/remote_command.sh
|
||||
/usr/local/mariadb/columnstore/bin/postConfigure
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreLogRotate
|
||||
/usr/local/mariadb/columnstore/bin/transactionLog
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreDBWrite
|
||||
/usr/local/mariadb/columnstore/bin/transactionLogArchiver.sh
|
||||
/usr/local/mariadb/columnstore/bin/system_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/installer
|
||||
/usr/local/mariadb/columnstore/bin/module_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/patchInstaller
|
||||
/usr/local/mariadb/columnstore/bin/user_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/performance_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/startupTests.sh
|
||||
/usr/local/mariadb/columnstore/bin/os_check.sh
|
||||
/usr/local/mariadb/columnstore/bin/sendtrap
|
||||
/usr/local/mariadb/columnstore/bin/remote_scp_put.sh
|
||||
/usr/local/mariadb/columnstore/bin/remotessh.exp
|
||||
/usr/local/mariadb/columnstore/bin/ServerMonitor
|
||||
/usr/local/mariadb/columnstore/bin/master-rep-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/slave-rep-columnstore.sh
|
||||
/usr/local/mariadb/columnstore/bin/rsync.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreSupport
|
||||
/usr/local/mariadb/columnstore/bin/hardwareReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/softwareReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/configReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/logReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/bulklogReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/resourceReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/hadoopReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/alarmReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/amazonInstaller
|
||||
/usr/local/mariadb/columnstore/bin/remote_command_verify.sh
|
||||
/usr/local/mariadb/columnstore/bin/disable-rep-columnstore.sh
|
||||
|
||||
|
||||
#
|
||||
%config /usr/local/mariadb/columnstore/etc/Columnstore.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/ConsoleCmds.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/ProcessConfig.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/snmpd.conf
|
||||
%config /usr/local/mariadb/columnstore/etc/snmptrapd.conf
|
||||
%config /usr/local/mariadb/columnstore/etc/Columnstore.xml.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/ProcessConfig.xml.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/snmpd.conf.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/snmptrapd.conf.singleserver
|
||||
#
|
||||
/usr/local/mariadb/columnstore/etc/MessageFile.txt
|
||||
/usr/local/mariadb/columnstore/etc/ErrorMessage.txt
|
||||
#
|
||||
%attr(0666, root, root) /usr/local/mariadb/columnstore/local/module
|
||||
#
|
||||
/usr/local/mariadb/columnstore/releasenum
|
||||
|
||||
# Tools...
|
||||
/usr/local/mariadb/columnstore/bin/rollback
|
||||
/usr/local/mariadb/columnstore/bin/editem
|
||||
/usr/local/mariadb/columnstore/bin/getConfig
|
||||
/usr/local/mariadb/columnstore/bin/setConfig
|
||||
/usr/local/mariadb/columnstore/bin/setenv-hdfs-12
|
||||
/usr/local/mariadb/columnstore/bin/setenv-hdfs-20
|
||||
/usr/local/mariadb/columnstore/bin/hdfsCheck
|
||||
/usr/local/mariadb/columnstore/bin/configxml.sh
|
||||
/usr/local/mariadb/columnstore/bin/remote_scp_get.sh
|
||||
/usr/local/mariadb/columnstore/bin/columnstoreAlias
|
||||
/usr/local/mariadb/columnstore/bin/autoConfigure
|
||||
/usr/local/mariadb/columnstore/bin/ddlcleanup
|
||||
/usr/local/mariadb/columnstore/bin/idbmeminfo
|
||||
/usr/local/mariadb/columnstore/bin/IDBInstanceCmds.sh
|
||||
/usr/local/mariadb/columnstore/bin/IDBVolumeCmds.sh
|
||||
/usr/local/mariadb/columnstore/bin/binary_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/myCnf-include-args.text
|
||||
/usr/local/mariadb/columnstore/bin/myCnf-exclude-args.text
|
||||
/usr/local/mariadb/columnstore/bin/mycnfUpgrade
|
||||
/usr/local/mariadb/columnstore/bin/getMySQLpw
|
||||
/usr/local/mariadb/columnstore/bin/columnstore.conf
|
||||
|
||||
/usr/local/mariadb/columnstore/sbin/snmpd
|
||||
/usr/local/mariadb/columnstore/sbin/snmptrapd
|
||||
%config %attr(0666, root, root) /usr/local/mariadb/columnstore/etc/AlarmConfig.xml
|
||||
#
|
||||
%config /usr/local/mariadb/columnstore/local/snmpdx.conf
|
||||
%config /usr/local/mariadb/columnstore/local/snmpdx.conf.singleserver
|
||||
#
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/AGENTX-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/CALPONT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-EVENT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-SCHEDULE-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-SCRIPT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/EtherLike-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HCNUM-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HOST-RESOURCES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HOST-RESOURCES-TYPES.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANAifType-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-LANGUAGE-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-RTPROTO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IF-INVERTED-STACK-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IF-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/INET-ADDRESS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IP-FORWARD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-ICMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-TCP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-UDP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NOTIFICATION-LOG-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC1155-SMI.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC1213-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC-1215.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RMON-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SMUX-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-COMMUNITY-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-FRAMEWORK-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-MPD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-NOTIFICATION-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-PROXY-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-TARGET-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USM-AES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USM-DH-OBJECTS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-CONF.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-SMI.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-TM.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/TCP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/TRANSPORT-ADDRESS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DEMO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DISKIO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DLMOD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-IPFWACC-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-SNMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UDP-MIB.txt
|
||||
#
|
||||
/usr/local/mariadb/columnstore/post/functions
|
||||
/usr/local/mariadb/columnstore/post/test-001.sh
|
||||
/usr/local/mariadb/columnstore/post/test-002.sh
|
||||
/usr/local/mariadb/columnstore/post/test-003.sh
|
||||
/usr/local/mariadb/columnstore/post/test-004.sh
|
||||
|
||||
%files enterprise
|
||||
%defattr(-, root, root)
|
||||
/usr/local/mariadb/columnstore/bin/displayJobGraph.sh
|
||||
/usr/local/mariadb/columnstore/bin/dbhealth.sh
|
||||
/usr/local/mariadb/columnstore/bin/dbhealth.sql
|
||||
|
||||
# Tools...
|
||||
/usr/local/mariadb/columnstore/bin/dumpcol
|
||||
/usr/local/mariadb/columnstore/bin/oid2file
|
||||
/usr/local/mariadb/columnstore/bin/evalcol
|
||||
/usr/local/mariadb/columnstore/bin/SesMgr
|
||||
/usr/local/mariadb/columnstore/bin/dumpVss
|
||||
/usr/local/mariadb/columnstore/bin/editTxn
|
||||
/usr/local/mariadb/columnstore/bin/dbprof.pl
|
||||
/usr/local/mariadb/columnstore/bin/dumpobm
|
||||
/usr/local/mariadb/columnstore/bin/file2oid.pl
|
||||
/usr/local/mariadb/columnstore/bin/print_journal
|
||||
/usr/local/mariadb/columnstore/bin/healthcheck
|
||||
/usr/local/mariadb/columnstore/bin/redistributeDB
|
||||
/usr/local/mariadb/columnstore/bin/databaseSizeReport
|
||||
/usr/local/mariadb/columnstore/bin/gdb
|
||||
#
|
||||
/usr/local/mariadb/columnstore/tools/copy2here.sh
|
||||
/usr/local/mariadb/columnstore/tools/getlogs.sh
|
||||
/usr/local/mariadb/columnstore/tools/getmodules.sh
|
||||
/usr/local/mariadb/columnstore/tools/getps.sh
|
||||
/usr/local/mariadb/columnstore/tools/getsar.sh
|
||||
/usr/local/mariadb/columnstore/tools/getuserinput.sh
|
||||
/usr/local/mariadb/columnstore/tools/prat
|
||||
/usr/local/mariadb/columnstore/tools/prat.sh
|
||||
/usr/local/mariadb/columnstore/tools/ps
|
||||
/usr/local/mariadb/columnstore/tools/pscollect
|
||||
/usr/local/mariadb/columnstore/tools/README
|
||||
/usr/local/mariadb/columnstore/tools/tarfiles.sh
|
||||
#
|
||||
%files libs
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/mariadb/columnstore/lib/libconfigcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlpackageproc.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlpackage.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdmlpackageproc.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdmlpackage.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libexecplan.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libfuncexp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libudfsdk.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libjoblist.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libjoiner.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libloggingcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libmessageqcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmpagent.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmphelpers.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmpmibs.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmp.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmptrapd.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/liboamcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libsnmpmanager.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libthreadpool.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwindowfunction.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengine.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengineclient.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libbrm.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/librwlock.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdataconvert.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/librowgroup.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcacheutils.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcommon.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libboost_idb.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcompress.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlcleanuputil.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libbatchloader.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libmysqlcl_idb.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libquerystats.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengineredistribute.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libidbdatafile.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/hdfs-20.so
|
||||
/usr/local/mariadb/columnstore/lib/hdfs-12.so
|
||||
/usr/local/mariadb/columnstore/lib/libgcc_s.so.1
|
||||
/usr/local/mariadb/columnstore/lib/libstdc++.so.6.0.14
|
||||
/usr/local/mariadb/columnstore/lib/libthrift.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libquerytele.so.1.0.0
|
||||
|
||||
%files storage-engine
|
||||
/usr/local/mariadb/columnstore/lib/libcalmysql.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libudf_mysql.so.1.0.0
|
||||
|
||||
/usr/local/mariadb/columnstore/mysql/mysql-Columnstore
|
||||
/usr/local/mariadb/columnstore/mysql/install_calpont_mysql.sh
|
||||
/usr/local/mariadb/columnstore/mysql/syscatalog_mysql.sql
|
||||
/usr/local/mariadb/columnstore/mysql/dumpcat_mysql.sql
|
||||
/usr/local/mariadb/columnstore/mysql/dumpcat.pl
|
||||
/usr/local/mariadb/columnstore/mysql/calsetuserpriority.sql
|
||||
/usr/local/mariadb/columnstore/mysql/calremoveuserpriority.sql
|
||||
/usr/local/mariadb/columnstore/mysql/calshowprocesslist.sql
|
||||
|
||||
%config /usr/local/mariadb/columnstore/mysql/my.cnf
|
||||
|
||||
#
|
||||
# Scriptlets
|
||||
# for an install, pre & post run with $1 set to 1
|
||||
# for an erase, preun & postun run with $1 set to 0
|
||||
# for an upgrade, pre & post run first, with $1 set to 2 then the _old_ preun & postun run with $1 set to 1
|
||||
|
||||
%post platform
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
test -x /usr/local/mariadb/columnstore/bin/post-install && /usr/local/mariadb/columnstore/bin/post-install --prefix=$prefix --rpmmode=$rpmmode
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
%post libs
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
%post storage-engine
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
|
||||
%post enterprise
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "MariaDB ColumnStore RPM install completed"
|
||||
|
||||
%preun platform
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
if [ $rpmmode = erase ]; then
|
||||
test -x /usr/local/mariadb/columnstore/bin/pre-uninstall && /usr/local/mariadb/columnstore/bin/pre-uninstall
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun libs
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun storage-engine
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun enterprise
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
./my.cnf
|
||||
./mysql-Columnstore
|
||||
./install_calpont_mysql.sh
|
@ -1,471 +0,0 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
Summary: InfiniDB-MariaDB software
|
||||
Name: infinidb
|
||||
@@VERSION@@
|
||||
@@RELEASE@@
|
||||
Vendor: MariaDB, Inc.
|
||||
URL: http://www.mariadb.com/
|
||||
@@PACKAGER@@
|
||||
Group: Applications
|
||||
License: Copyright (c) 2016 MariaDB, Inc., all rights reserved; redistributable under the terms of the GPL, see the file COPYING for details.
|
||||
BuildRoot: %{_tmppath}/%{name}-%{release}-buildroot
|
||||
|
||||
%description
|
||||
InfiniDB-MariaDB software meta-package
|
||||
|
||||
%package platform
|
||||
Summary: InfiniDB-MariaDB software binaries
|
||||
Group: Applications
|
||||
Obsoletes: calpont
|
||||
Requires: expect, infinidb-libs
|
||||
|
||||
%description platform
|
||||
InfiniDB-MariaDB binary files
|
||||
@@BUILDINFO@@
|
||||
|
||||
%package libs
|
||||
Summary: InfiniDB-MariaDB software libraries
|
||||
Group: Applications
|
||||
Obsoletes: calpont
|
||||
|
||||
%description libs
|
||||
InfiniDB-MariaDB libraries
|
||||
|
||||
%package enterprise
|
||||
Summary: InfiniDB Enterprise software binaries
|
||||
Group: Applications
|
||||
Obsoletes: calpont
|
||||
Requires: infinidb-libs, infinidb-platform
|
||||
License: Proprietary; Copyright (c) 2014 InfiniDB, Inc., all rights reserved
|
||||
|
||||
%description enterprise
|
||||
InfiniDB Enterprise binary files
|
||||
|
||||
%package storage-engine
|
||||
Summary: InfiniDB-MariaDB software MariaDB connector
|
||||
Group: Applications
|
||||
Obsoletes: calpont-mysql
|
||||
Requires: infinidb-libs
|
||||
|
||||
%description storage-engine
|
||||
InfiniDB MariaDB connector binary files
|
||||
|
||||
%prep
|
||||
%define _use_internal_dependency_generator 0
|
||||
%define __find_requires %{nil}
|
||||
%define __os_install_post %{nil}
|
||||
%define debug_package %{nil}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}/usr/local
|
||||
tar -C $RPM_BUILD_DIR/%{name}-%{version}-%{release} -cf - . | tar -C %{buildroot}/usr/local -xf -
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT $RPM_BUILD_DIR/%{name}-%{version}-%{release}
|
||||
|
||||
%changelog
|
||||
|
||||
%files platform
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/mariadb/columnstore/bin/DDLProc
|
||||
/usr/local/mariadb/columnstore/bin/ExeMgr
|
||||
/usr/local/mariadb/columnstore/bin/ProcMgr
|
||||
/usr/local/mariadb/columnstore/bin/ProcMon
|
||||
/usr/local/mariadb/columnstore/bin/DMLProc
|
||||
/usr/local/mariadb/columnstore/bin/WriteEngineServer
|
||||
/usr/local/mariadb/columnstore/bin/cpimport
|
||||
/usr/local/mariadb/columnstore/bin/post-install
|
||||
/usr/local/mariadb/columnstore/bin/post-mysql-install
|
||||
/usr/local/mariadb/columnstore/bin/post-mysqld-install
|
||||
/usr/local/mariadb/columnstore/bin/pre-uninstall
|
||||
/usr/local/mariadb/columnstore/bin/PrimProc
|
||||
/usr/local/mariadb/columnstore/bin/DecomSvr
|
||||
/usr/local/mariadb/columnstore/bin/upgrade-infinidb.sh
|
||||
/usr/local/mariadb/columnstore/bin/run.sh
|
||||
/usr/local/mariadb/columnstore/bin/infinidb
|
||||
/usr/local/mariadb/columnstore/bin/calpontSyslog
|
||||
/usr/local/mariadb/columnstore/bin/calpontSyslog7
|
||||
/usr/local/mariadb/columnstore/bin/calpontSyslog-ng
|
||||
/usr/local/mariadb/columnstore/bin/syslogSetup.sh
|
||||
/usr/local/mariadb/columnstore/bin/cplogger
|
||||
/usr/local/mariadb/columnstore/bin/infinidb.def
|
||||
/usr/local/mariadb/columnstore/bin/dbbuilder
|
||||
/usr/local/mariadb/columnstore/bin/cpimport.bin
|
||||
/usr/local/mariadb/columnstore/bin/load_brm
|
||||
/usr/local/mariadb/columnstore/bin/save_brm
|
||||
/usr/local/mariadb/columnstore/bin/dbrmctl
|
||||
/usr/local/mariadb/columnstore/bin/controllernode
|
||||
/usr/local/mariadb/columnstore/bin/reset_locks
|
||||
/usr/local/mariadb/columnstore/bin/workernode
|
||||
/usr/local/mariadb/columnstore/bin/colxml
|
||||
/usr/local/mariadb/columnstore/bin/clearShm
|
||||
/usr/local/mariadb/columnstore/bin/viewtablelock
|
||||
/usr/local/mariadb/columnstore/bin/cleartablelock
|
||||
/usr/local/mariadb/columnstore/bin/mcsadmin
|
||||
/usr/local/mariadb/columnstore/bin/trapHandler
|
||||
/usr/local/mariadb/columnstore/bin/remote_command.sh
|
||||
/usr/local/mariadb/columnstore/bin/postConfigure
|
||||
/usr/local/mariadb/columnstore/bin/calpontLogRotate
|
||||
/usr/local/mariadb/columnstore/bin/transactionLog
|
||||
/usr/local/mariadb/columnstore/bin/calpontDBWrite
|
||||
/usr/local/mariadb/columnstore/bin/transactionLogArchiver.sh
|
||||
/usr/local/mariadb/columnstore/bin/system_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/installer
|
||||
/usr/local/mariadb/columnstore/bin/module_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/patchInstaller
|
||||
/usr/local/mariadb/columnstore/bin/patch_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/xm_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/calpontUninstall.sh
|
||||
/usr/local/mariadb/columnstore/bin/director_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/user_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/performance_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/startupTests.sh
|
||||
/usr/local/mariadb/columnstore/bin/os_check.sh
|
||||
/usr/local/mariadb/columnstore/bin/sendtrap
|
||||
/usr/local/mariadb/columnstore/bin/remote_scp_put.sh
|
||||
/usr/local/mariadb/columnstore/bin/remotessh.exp
|
||||
/usr/local/mariadb/columnstore/bin/ServerMonitor
|
||||
/usr/local/mariadb/columnstore/bin/master-rep-infinidb.sh
|
||||
/usr/local/mariadb/columnstore/bin/slave-rep-infinidb.sh
|
||||
/usr/local/mariadb/columnstore/bin/rsync.sh
|
||||
/usr/local/mariadb/columnstore/bin/calpontSupport
|
||||
/usr/local/mariadb/columnstore/bin/hardwareReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/softwareReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/configReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/logReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/bulklogReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/resourceReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/hadoopReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/alarmReport.sh
|
||||
/usr/local/mariadb/columnstore/bin/amazonInstaller
|
||||
/usr/local/mariadb/columnstore/bin/remote_command_verify.sh
|
||||
/usr/local/mariadb/columnstore/bin/disable-rep-infinidb.sh
|
||||
|
||||
|
||||
#
|
||||
%config /usr/local/mariadb/columnstore/etc/Columnstore.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/ConsoleCmds.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/ProcessConfig.xml
|
||||
%config /usr/local/mariadb/columnstore/etc/snmpd.conf
|
||||
%config /usr/local/mariadb/columnstore/etc/snmptrapd.conf
|
||||
%config /usr/local/mariadb/columnstore/etc/Columnstore.xml.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/ProcessConfig.xml.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/snmpd.conf.singleserver
|
||||
%config /usr/local/mariadb/columnstore/etc/snmptrapd.conf.singleserver
|
||||
#
|
||||
/usr/local/mariadb/columnstore/etc/MessageFile.txt
|
||||
/usr/local/mariadb/columnstore/etc/ErrorMessage.txt
|
||||
#
|
||||
%attr(0666, root, root) /usr/local/mariadb/columnstore/local/module
|
||||
#
|
||||
/usr/local/mariadb/columnstore/releasenum
|
||||
|
||||
# Tools...
|
||||
/usr/local/mariadb/columnstore/bin/rollback
|
||||
/usr/local/mariadb/columnstore/bin/editem
|
||||
/usr/local/mariadb/columnstore/bin/getConfig
|
||||
/usr/local/mariadb/columnstore/bin/setConfig
|
||||
/usr/local/mariadb/columnstore/bin/setenv-hdfs-12
|
||||
/usr/local/mariadb/columnstore/bin/setenv-hdfs-20
|
||||
/usr/local/mariadb/columnstore/bin/hdfsCheck
|
||||
/usr/local/mariadb/columnstore/bin/configxml.sh
|
||||
/usr/local/mariadb/columnstore/bin/remote_scp_get.sh
|
||||
/usr/local/mariadb/columnstore/bin/calpontAlias
|
||||
/usr/local/mariadb/columnstore/bin/autoConfigure
|
||||
/usr/local/mariadb/columnstore/bin/ddlcleanup
|
||||
/usr/local/mariadb/columnstore/bin/idbmeminfo
|
||||
/usr/local/mariadb/columnstore/bin/IDBInstanceCmds.sh
|
||||
/usr/local/mariadb/columnstore/bin/IDBVolumeCmds.sh
|
||||
/usr/local/mariadb/columnstore/bin/binary_installer.sh
|
||||
/usr/local/mariadb/columnstore/bin/myCnf-include-args.text
|
||||
/usr/local/mariadb/columnstore/bin/myCnf-exclude-args.text
|
||||
/usr/local/mariadb/columnstore/bin/mycnfUpgrade
|
||||
/usr/local/mariadb/columnstore/bin/getMySQLpw
|
||||
/usr/local/mariadb/columnstore/bin/infinidb.conf
|
||||
|
||||
/usr/local/mariadb/columnstore/sbin/snmpd
|
||||
/usr/local/mariadb/columnstore/sbin/snmptrapd
|
||||
%config %attr(0666, root, root) /usr/local/mariadb/columnstore/etc/AlarmConfig.xml
|
||||
#
|
||||
%config /usr/local/mariadb/columnstore/local/snmpdx.conf
|
||||
%config /usr/local/mariadb/columnstore/local/snmpdx.conf.singleserver
|
||||
#
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/AGENTX-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/CALPONT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-EVENT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-SCHEDULE-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/DISMAN-SCRIPT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/EtherLike-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HCNUM-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HOST-RESOURCES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/HOST-RESOURCES-TYPES.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANAifType-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-LANGUAGE-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IANA-RTPROTO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IF-INVERTED-STACK-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IF-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/INET-ADDRESS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IP-FORWARD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-ICMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-TCP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/IPV6-UDP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NET-SNMP-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/NOTIFICATION-LOG-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC1155-SMI.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC1213-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RFC-1215.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/RMON-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SMUX-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-COMMUNITY-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-FRAMEWORK-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-MPD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-NOTIFICATION-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-PROXY-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-TARGET-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USM-AES-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-USM-DH-OBJECTS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-CONF.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-SMI.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-TC.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMPv2-TM.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/TCP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/TRANSPORT-ADDRESS-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DEMO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DISKIO-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-DLMOD-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-IPFWACC-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UCD-SNMP-MIB.txt
|
||||
/usr/local/mariadb/columnstore/share/snmp/mibs/UDP-MIB.txt
|
||||
#
|
||||
/usr/local/mariadb/columnstore/post/functions
|
||||
/usr/local/mariadb/columnstore/post/test-001.sh
|
||||
/usr/local/mariadb/columnstore/post/test-002.sh
|
||||
/usr/local/mariadb/columnstore/post/test-003.sh
|
||||
/usr/local/mariadb/columnstore/post/test-004.sh
|
||||
|
||||
%files enterprise
|
||||
%defattr(-, root, root)
|
||||
/usr/local/mariadb/columnstore/bin/displayJobGraph.sh
|
||||
/usr/local/mariadb/columnstore/bin/dbhealth.sh
|
||||
/usr/local/mariadb/columnstore/bin/dbhealth.sql
|
||||
|
||||
# Tools...
|
||||
/usr/local/mariadb/columnstore/bin/dumpcol
|
||||
/usr/local/mariadb/columnstore/bin/oid2file
|
||||
/usr/local/mariadb/columnstore/bin/evalcol
|
||||
/usr/local/mariadb/columnstore/bin/SesMgr
|
||||
/usr/local/mariadb/columnstore/bin/dumpVss
|
||||
/usr/local/mariadb/columnstore/bin/editTxn
|
||||
/usr/local/mariadb/columnstore/bin/dbprof.pl
|
||||
/usr/local/mariadb/columnstore/bin/dumpobm
|
||||
/usr/local/mariadb/columnstore/bin/file2oid.pl
|
||||
/usr/local/mariadb/columnstore/bin/print_journal
|
||||
/usr/local/mariadb/columnstore/bin/healthcheck
|
||||
/usr/local/mariadb/columnstore/bin/glusterctl
|
||||
/usr/local/mariadb/columnstore/bin/glusteradd
|
||||
/usr/local/mariadb/columnstore/bin/glusterconf
|
||||
/usr/local/mariadb/columnstore/bin/redistributeDB
|
||||
/usr/local/mariadb/columnstore/bin/databaseSizeReport
|
||||
/usr/local/mariadb/columnstore/bin/gdb
|
||||
#
|
||||
/usr/local/mariadb/columnstore/tools/copy2here.sh
|
||||
/usr/local/mariadb/columnstore/tools/getlogs.sh
|
||||
/usr/local/mariadb/columnstore/tools/getmodules.sh
|
||||
/usr/local/mariadb/columnstore/tools/getps.sh
|
||||
/usr/local/mariadb/columnstore/tools/getsar.sh
|
||||
/usr/local/mariadb/columnstore/tools/getuserinput.sh
|
||||
/usr/local/mariadb/columnstore/tools/prat
|
||||
/usr/local/mariadb/columnstore/tools/prat.sh
|
||||
/usr/local/mariadb/columnstore/tools/ps
|
||||
/usr/local/mariadb/columnstore/tools/pscollect
|
||||
/usr/local/mariadb/columnstore/tools/README
|
||||
/usr/local/mariadb/columnstore/tools/tarfiles.sh
|
||||
#
|
||||
%files libs
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/mariadb/columnstore/lib/libconfigcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlpackageproc.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlpackage.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdmlpackageproc.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdmlpackage.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libexecplan.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libfuncexp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libudfsdk.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libjoblist.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libjoiner.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libloggingcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libmessageqcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmpagent.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmphelpers.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmpmibs.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmp.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/libnetsnmptrapd.so.5.2.1
|
||||
/usr/local/mariadb/columnstore/lib/liboamcpp.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libsnmpmanager.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libthreadpool.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwindowfunction.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengine.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengineclient.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libbrm.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/librwlock.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libdataconvert.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/librowgroup.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcacheutils.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcommon.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libboost_idb.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libcompress.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libddlcleanuputil.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libbatchloader.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libmysqlcl_idb.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libquerystats.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libwriteengineredistribute.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libidbdatafile.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/hdfs-20.so
|
||||
/usr/local/mariadb/columnstore/lib/hdfs-12.so
|
||||
/usr/local/mariadb/columnstore/lib/libgcc_s.so.1
|
||||
/usr/local/mariadb/columnstore/lib/libstdc++.so.6.0.14
|
||||
/usr/local/mariadb/columnstore/lib/libthrift.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libquerytele.so.1.0.0
|
||||
|
||||
%files storage-engine
|
||||
/usr/local/mariadb/columnstore/lib/libcalmysql.so.1.0.0
|
||||
/usr/local/mariadb/columnstore/lib/libudf_mysql.so.1.0.0
|
||||
|
||||
/usr/local/mariadb/columnstore/mysql/mysql-Calpont
|
||||
/usr/local/mariadb/columnstore/mysql/install_calpont_mysql.sh
|
||||
/usr/local/mariadb/columnstore/mysql/syscatalog_mysql.sql
|
||||
/usr/local/mariadb/columnstore/mysql/dumpcat_mysql.sql
|
||||
/usr/local/mariadb/columnstore/mysql/dumpcat.pl
|
||||
/usr/local/mariadb/columnstore/mysql/calsetuserpriority.sql
|
||||
/usr/local/mariadb/columnstore/mysql/calremoveuserpriority.sql
|
||||
/usr/local/mariadb/columnstore/mysql/calshowprocesslist.sql
|
||||
|
||||
%config /usr/local/mariadb/columnstore/mysql/my.cnf
|
||||
|
||||
#
|
||||
# Scriptlets
|
||||
# for an install, pre & post run with $1 set to 1
|
||||
# for an erase, preun & postun run with $1 set to 0
|
||||
# for an upgrade, pre & post run first, with $1 set to 2 then the _old_ preun & postun run with $1 set to 1
|
||||
|
||||
%post platform
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
test -x /usr/local/mariadb/columnstore/bin/post-install && /usr/local/mariadb/columnstore/bin/post-install --prefix=$prefix --rpmmode=$rpmmode
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%post libs
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%post storage-engine
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
|
||||
%post enterprise
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%preun platform
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
if [ $rpmmode = erase ]; then
|
||||
test -x /usr/local/mariadb/columnstore/bin/pre-uninstall && /usr/local/mariadb/columnstore/bin/pre-uninstall
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun libs
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun storage-engine
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun enterprise
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
|
@ -1,625 +0,0 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
Summary: InfiniDB software
|
||||
Name: infinidb
|
||||
@@VERSION@@
|
||||
@@RELEASE@@
|
||||
Vendor: MariaDB Corporation Ab
|
||||
URL: http://www.mariadb.com/
|
||||
@@PACKAGER@@
|
||||
Group: Applications
|
||||
License: Copyright (c) 2014 InfiniDB, Inc., all rights reserved
|
||||
BuildRoot: %{_tmppath}/%{name}-%{release}-buildroot
|
||||
|
||||
%description
|
||||
InfiniDB software meta-package
|
||||
|
||||
%package platform
|
||||
Summary: InfiniDB software binaries
|
||||
Group: Applications
|
||||
Obsoletes: calpont
|
||||
Requires: expect, infinidb-libs
|
||||
|
||||
%description platform
|
||||
InfiniDB binary files
|
||||
@@BUILDINFO@@
|
||||
|
||||
%package libs
|
||||
Summary: InfiniDB software libraries
|
||||
Group: Applications
|
||||
Obsoletes: calpont
|
||||
|
||||
%description libs
|
||||
InfiniDB libraries
|
||||
|
||||
%package enterprise
|
||||
Summary: InfiniDB Enterprise software binaries
|
||||
Group: Applications
|
||||
Obsoletes: calpont
|
||||
Requires: infinidb-libs, infinidb-platform
|
||||
|
||||
%description enterprise
|
||||
InfiniDB Enterprise binary files
|
||||
|
||||
%package storage-engine
|
||||
Summary: InfiniDB software MySQL connector
|
||||
Group: Applications
|
||||
Obsoletes: calpont-mysql
|
||||
Requires: infinidb-libs
|
||||
|
||||
%description storage-engine
|
||||
InfiniDB MySQL connector binary files
|
||||
|
||||
%package mysql
|
||||
Summary: InfiniDB software MySQL server
|
||||
Group: Applications
|
||||
Obsoletes: calpont-mysqld
|
||||
|
||||
%description mysql
|
||||
InfiniDB/MySQL 5.1.73 server binary files
|
||||
|
||||
%prep
|
||||
%define _use_internal_dependency_generator 0
|
||||
%define __find_requires %{nil}
|
||||
%define __os_install_post %{nil}
|
||||
%define debug_package %{nil}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}/usr/local
|
||||
tar -C $RPM_BUILD_DIR/%{name}-%{version}-%{release} -cf - . | tar -C %{buildroot}/usr/local -xf -
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT $RPM_BUILD_DIR/%{name}-%{version}-%{release}
|
||||
|
||||
%changelog
|
||||
|
||||
%files platform
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/Calpont/bin/DDLProc
|
||||
/usr/local/Calpont/bin/ExeMgr
|
||||
/usr/local/Calpont/bin/ProcMgr
|
||||
/usr/local/Calpont/bin/ProcMon
|
||||
/usr/local/Calpont/bin/DMLProc
|
||||
/usr/local/Calpont/bin/WriteEngineServer
|
||||
/usr/local/Calpont/bin/cpimport
|
||||
/usr/local/Calpont/bin/post-install
|
||||
/usr/local/Calpont/bin/post-mysql-install
|
||||
/usr/local/Calpont/bin/post-mysqld-install
|
||||
/usr/local/Calpont/bin/pre-uninstall
|
||||
/usr/local/Calpont/bin/PrimProc
|
||||
/usr/local/Calpont/bin/DecomSvr
|
||||
/usr/local/Calpont/bin/upgrade-infinidb.sh
|
||||
/usr/local/Calpont/bin/run.sh
|
||||
/usr/local/Calpont/bin/infinidb
|
||||
/usr/local/Calpont/bin/calpontSyslog
|
||||
/usr/local/Calpont/bin/calpontSyslog-ng
|
||||
/usr/local/Calpont/bin/syslogSetup.sh
|
||||
/usr/local/Calpont/bin/cplogger
|
||||
/usr/local/Calpont/bin/infinidb.def
|
||||
/usr/local/Calpont/bin/dbbuilder
|
||||
/usr/local/Calpont/bin/cpimport.bin
|
||||
/usr/local/Calpont/bin/load_brm
|
||||
/usr/local/Calpont/bin/save_brm
|
||||
/usr/local/Calpont/bin/dbrmctl
|
||||
/usr/local/Calpont/bin/controllernode
|
||||
/usr/local/Calpont/bin/reset_locks
|
||||
/usr/local/Calpont/bin/workernode
|
||||
/usr/local/Calpont/bin/colxml
|
||||
/usr/local/Calpont/bin/clearShm
|
||||
/usr/local/Calpont/bin/viewtablelock
|
||||
/usr/local/Calpont/bin/cleartablelock
|
||||
/usr/local/Calpont/bin/calpontConsole
|
||||
/usr/local/Calpont/bin/trapHandler
|
||||
/usr/local/Calpont/bin/remote_command.sh
|
||||
/usr/local/Calpont/bin/postConfigure
|
||||
/usr/local/Calpont/bin/calpontLogRotate
|
||||
/usr/local/Calpont/bin/transactionLog
|
||||
/usr/local/Calpont/bin/calpontDBWrite
|
||||
/usr/local/Calpont/bin/transactionLogArchiver.sh
|
||||
/usr/local/Calpont/bin/system_installer.sh
|
||||
/usr/local/Calpont/bin/installer
|
||||
/usr/local/Calpont/bin/module_installer.sh
|
||||
/usr/local/Calpont/bin/patchInstaller
|
||||
/usr/local/Calpont/bin/patch_installer.sh
|
||||
/usr/local/Calpont/bin/xm_installer.sh
|
||||
/usr/local/Calpont/bin/calpontUninstall.sh
|
||||
/usr/local/Calpont/bin/director_installer.sh
|
||||
/usr/local/Calpont/bin/user_installer.sh
|
||||
/usr/local/Calpont/bin/performance_installer.sh
|
||||
/usr/local/Calpont/bin/startupTests.sh
|
||||
/usr/local/Calpont/bin/os_check.sh
|
||||
/usr/local/Calpont/bin/sendtrap
|
||||
/usr/local/Calpont/bin/remote_scp_put.sh
|
||||
/usr/local/Calpont/bin/remotessh.exp
|
||||
/usr/local/Calpont/bin/ServerMonitor
|
||||
/usr/local/Calpont/bin/master-rep-infinidb.sh
|
||||
/usr/local/Calpont/bin/slave-rep-infinidb.sh
|
||||
/usr/local/Calpont/bin/rsync.sh
|
||||
/usr/local/Calpont/bin/calpontSupport
|
||||
/usr/local/Calpont/bin/hardwareReport.sh
|
||||
/usr/local/Calpont/bin/softwareReport.sh
|
||||
/usr/local/Calpont/bin/configReport.sh
|
||||
/usr/local/Calpont/bin/logReport.sh
|
||||
/usr/local/Calpont/bin/bulklogReport.sh
|
||||
/usr/local/Calpont/bin/resourceReport.sh
|
||||
/usr/local/Calpont/bin/hadoopReport.sh
|
||||
/usr/local/Calpont/bin/alarmReport.sh
|
||||
/usr/local/Calpont/bin/amazonInstaller
|
||||
/usr/local/Calpont/bin/remote_command_verify.sh
|
||||
|
||||
#
|
||||
%config /usr/local/Calpont/etc/Columnstore.xml
|
||||
%config /usr/local/Calpont/etc/ConsoleCmds.xml
|
||||
%config /usr/local/Calpont/etc/ProcessConfig.xml
|
||||
%config /usr/local/Calpont/etc/snmpd.conf
|
||||
%config /usr/local/Calpont/etc/snmptrapd.conf
|
||||
%config /usr/local/Calpont/etc/Columnstore.xml.singleserver
|
||||
%config /usr/local/Calpont/etc/ProcessConfig.xml.singleserver
|
||||
%config /usr/local/Calpont/etc/snmpd.conf.singleserver
|
||||
%config /usr/local/Calpont/etc/snmptrapd.conf.singleserver
|
||||
#
|
||||
/usr/local/Calpont/etc/MessageFile.txt
|
||||
/usr/local/Calpont/etc/ErrorMessage.txt
|
||||
#
|
||||
%attr(0666, root, root) /usr/local/Calpont/local/module
|
||||
#
|
||||
/usr/local/Calpont/releasenum
|
||||
|
||||
# Tools...
|
||||
/usr/local/Calpont/bin/rollback
|
||||
/usr/local/Calpont/bin/editem
|
||||
/usr/local/Calpont/bin/getConfig
|
||||
/usr/local/Calpont/bin/setConfig
|
||||
/usr/local/Calpont/bin/setenv-hdfs-12
|
||||
/usr/local/Calpont/bin/setenv-hdfs-20
|
||||
/usr/local/Calpont/bin/hdfsCheck
|
||||
/usr/local/Calpont/bin/configxml.sh
|
||||
/usr/local/Calpont/bin/remote_scp_get.sh
|
||||
/usr/local/Calpont/bin/calpontAlias
|
||||
/usr/local/Calpont/bin/autoConfigure
|
||||
/usr/local/Calpont/bin/ddlcleanup
|
||||
/usr/local/Calpont/bin/idbmeminfo
|
||||
/usr/local/Calpont/bin/IDBInstanceCmds.sh
|
||||
/usr/local/Calpont/bin/IDBVolumeCmds.sh
|
||||
/usr/local/Calpont/bin/binary_installer.sh
|
||||
/usr/local/Calpont/bin/myCnf-include-args.text
|
||||
/usr/local/Calpont/bin/myCnf-exclude-args.text
|
||||
/usr/local/Calpont/bin/mycnfUpgrade
|
||||
|
||||
/usr/local/Calpont/sbin/snmpd
|
||||
/usr/local/Calpont/sbin/snmptrapd
|
||||
%config %attr(0666, root, root) /usr/local/Calpont/etc/AlarmConfig.xml
|
||||
#
|
||||
%config /usr/local/Calpont/local/snmpdx.conf
|
||||
%config /usr/local/Calpont/local/snmpdx.conf.singleserver
|
||||
#
|
||||
/usr/local/Calpont/share/snmp/mibs/AGENTX-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/CALPONT-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/DISMAN-EVENT-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/DISMAN-SCHEDULE-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/DISMAN-SCRIPT-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/EtherLike-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/HCNUM-TC.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/HOST-RESOURCES-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/HOST-RESOURCES-TYPES.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IANAifType-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IANA-LANGUAGE-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IANA-RTPROTO-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IF-INVERTED-STACK-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IF-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/INET-ADDRESS-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IP-FORWARD-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IPV6-ICMP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IPV6-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IPV6-TCP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IPV6-TC.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/IPV6-UDP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/NET-SNMP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/NET-SNMP-TC.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/NOTIFICATION-LOG-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/RFC1155-SMI.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/RFC1213-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/RFC-1215.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/RMON-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SMUX-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-COMMUNITY-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-FRAMEWORK-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-MPD-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-NOTIFICATION-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-PROXY-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-TARGET-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-USM-AES-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-USM-DH-OBJECTS-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMPv2-CONF.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMPv2-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMPv2-SMI.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMPv2-TC.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMPv2-TM.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/TCP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/TRANSPORT-ADDRESS-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/UCD-DEMO-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/UCD-DISKIO-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/UCD-DLMOD-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/UCD-IPFWACC-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/UCD-SNMP-MIB.txt
|
||||
/usr/local/Calpont/share/snmp/mibs/UDP-MIB.txt
|
||||
#
|
||||
/usr/local/Calpont/post/functions
|
||||
/usr/local/Calpont/post/test-001.sh
|
||||
/usr/local/Calpont/post/test-002.sh
|
||||
/usr/local/Calpont/post/test-003.sh
|
||||
/usr/local/Calpont/post/test-004.sh
|
||||
|
||||
%files enterprise
|
||||
%defattr(-, root, root)
|
||||
/usr/local/Calpont/bin/displayJobGraph.sh
|
||||
/usr/local/Calpont/bin/dbhealth.sh
|
||||
/usr/local/Calpont/bin/dbhealth.sql
|
||||
|
||||
# Tools...
|
||||
/usr/local/Calpont/bin/dumpcol
|
||||
/usr/local/Calpont/bin/oid2file
|
||||
/usr/local/Calpont/bin/evalcol
|
||||
/usr/local/Calpont/bin/SesMgr
|
||||
/usr/local/Calpont/bin/dumpVss
|
||||
/usr/local/Calpont/bin/editTxn
|
||||
/usr/local/Calpont/bin/dbprof.pl
|
||||
/usr/local/Calpont/bin/dumpobm
|
||||
/usr/local/Calpont/bin/file2oid.pl
|
||||
/usr/local/Calpont/bin/print_journal
|
||||
/usr/local/Calpont/bin/healthcheck
|
||||
/usr/local/Calpont/bin/glusterctl
|
||||
/usr/local/Calpont/bin/glusteradd
|
||||
/usr/local/Calpont/bin/glusterconf
|
||||
/usr/local/Calpont/bin/redistributeDB
|
||||
/usr/local/Calpont/bin/databaseSizeReport
|
||||
/usr/local/Calpont/bin/gdb
|
||||
#
|
||||
/usr/local/Calpont/tools/copy2here.sh
|
||||
/usr/local/Calpont/tools/getlogs.sh
|
||||
/usr/local/Calpont/tools/getmodules.sh
|
||||
/usr/local/Calpont/tools/getps.sh
|
||||
/usr/local/Calpont/tools/getsar.sh
|
||||
/usr/local/Calpont/tools/getuserinput.sh
|
||||
/usr/local/Calpont/tools/prat
|
||||
/usr/local/Calpont/tools/prat.sh
|
||||
/usr/local/Calpont/tools/ps
|
||||
/usr/local/Calpont/tools/pscollect
|
||||
/usr/local/Calpont/tools/README
|
||||
/usr/local/Calpont/tools/tarfiles.sh
|
||||
#
|
||||
%files libs
|
||||
%defattr(-, root, root)
|
||||
|
||||
/usr/local/Calpont/lib/libconfigcpp.so.1.0.0
|
||||
/usr/local/Calpont/lib/libddlpackageproc.so.1.0.0
|
||||
/usr/local/Calpont/lib/libddlpackage.so.1.0.0
|
||||
/usr/local/Calpont/lib/libdmlpackageproc.so.1.0.0
|
||||
/usr/local/Calpont/lib/libdmlpackage.so.1.0.0
|
||||
/usr/local/Calpont/lib/libexecplan.so.1.0.0
|
||||
/usr/local/Calpont/lib/libfuncexp.so.1.0.0
|
||||
/usr/local/Calpont/lib/libudfsdk.so.1.0.0
|
||||
/usr/local/Calpont/lib/libjoblist.so.1.0.0
|
||||
/usr/local/Calpont/lib/libjoiner.so.1.0.0
|
||||
/usr/local/Calpont/lib/libloggingcpp.so.1.0.0
|
||||
/usr/local/Calpont/lib/libmessageqcpp.so.1.0.0
|
||||
/usr/local/Calpont/lib/libnetsnmpagent.so.5.2.1
|
||||
/usr/local/Calpont/lib/libnetsnmphelpers.so.5.2.1
|
||||
/usr/local/Calpont/lib/libnetsnmpmibs.so.5.2.1
|
||||
/usr/local/Calpont/lib/libnetsnmp.so.5.2.1
|
||||
/usr/local/Calpont/lib/libnetsnmptrapd.so.5.2.1
|
||||
/usr/local/Calpont/lib/liboamcpp.so.1.0.0
|
||||
/usr/local/Calpont/lib/libsnmpmanager.so.1.0.0
|
||||
/usr/local/Calpont/lib/libthreadpool.so.1.0.0
|
||||
/usr/local/Calpont/lib/libwindowfunction.so.1.0.0
|
||||
/usr/local/Calpont/lib/libwriteengine.so.1.0.0
|
||||
/usr/local/Calpont/lib/libwriteengineclient.so.1.0.0
|
||||
/usr/local/Calpont/lib/libbrm.so.1.0.0
|
||||
/usr/local/Calpont/lib/librwlock.so.1.0.0
|
||||
/usr/local/Calpont/lib/libdataconvert.so.1.0.0
|
||||
/usr/local/Calpont/lib/librowgroup.so.1.0.0
|
||||
/usr/local/Calpont/lib/libcacheutils.so.1.0.0
|
||||
/usr/local/Calpont/lib/libcommon.so.1.0.0
|
||||
/usr/local/Calpont/lib/libboost_idb.so.1.0.0
|
||||
/usr/local/Calpont/lib/libcompress.so.1.0.0
|
||||
/usr/local/Calpont/lib/libddlcleanuputil.so.1.0.0
|
||||
/usr/local/Calpont/lib/libbatchloader.so.1.0.0
|
||||
/usr/local/Calpont/lib/libmysqlcl_idb.so.1.0.0
|
||||
/usr/local/Calpont/lib/libquerystats.so.1.0.0
|
||||
/usr/local/Calpont/lib/libwriteengineredistribute.so.1.0.0
|
||||
/usr/local/Calpont/lib/libidbdatafile.so.1.0.0
|
||||
/usr/local/Calpont/lib/hdfs-20.so
|
||||
/usr/local/Calpont/lib/hdfs-12.so
|
||||
/usr/local/Calpont/lib/libgcc_s.so.1
|
||||
/usr/local/Calpont/lib/libstdc++.so.6.0.14
|
||||
/usr/local/Calpont/lib/libthrift.so.1.0.0
|
||||
/usr/local/Calpont/lib/libquerytele.so.1.0.0
|
||||
|
||||
%files storage-engine
|
||||
/usr/local/Calpont/lib/libcalmysql.so.1.0.0
|
||||
/usr/local/Calpont/lib/libudf_mysql.so.1.0.0
|
||||
|
||||
%files mysql
|
||||
/usr/local/Calpont/mysql/lib/mysql/libmysqlclient.so.16.0.0
|
||||
/usr/local/Calpont/mysql/lib/mysql/libmysqlclient_r.so.16.0.0
|
||||
/usr/local/Calpont/mysql/lib/mysql/plugin/ha_federated.so.0.0.0
|
||||
/usr/local/Calpont/mysql/lib/mysql/plugin/ha_blackhole.so.0.0.0
|
||||
/usr/local/Calpont/mysql/lib/mysql/plugin/ha_archive.so.0.0.0
|
||||
/usr/local/Calpont/mysql/lib/mysql/plugin/ha_innodb.so.0.0.0
|
||||
/usr/local/Calpont/mysql/lib/mysql/plugin/ha_innodb_plugin.so.0.0.0
|
||||
/usr/local/Calpont/mysql/libexec/mysqlmanager
|
||||
/usr/local/Calpont/mysql/libexec/mysqld
|
||||
/usr/local/Calpont/mysql/bin/mysql_find_rows
|
||||
/usr/local/Calpont/mysql/bin/mysqlbug
|
||||
/usr/local/Calpont/mysql/bin/innochecksum
|
||||
/usr/local/Calpont/mysql/bin/mysql_secure_installation
|
||||
/usr/local/Calpont/mysql/bin/resolve_stack_dump
|
||||
/usr/local/Calpont/mysql/bin/my_print_defaults
|
||||
/usr/local/Calpont/mysql/bin/mysql_waitpid
|
||||
/usr/local/Calpont/mysql/bin/resolveip
|
||||
/usr/local/Calpont/mysql/bin/perror
|
||||
/usr/local/Calpont/mysql/bin/myisamlog
|
||||
/usr/local/Calpont/mysql/bin/mysql
|
||||
/usr/local/Calpont/mysql/bin/myisamchk
|
||||
/usr/local/Calpont/mysql/bin/mysql_fix_privilege_tables
|
||||
/usr/local/Calpont/mysql/bin/mysql_upgrade
|
||||
/usr/local/Calpont/mysql/bin/mysqlcheck
|
||||
/usr/local/Calpont/mysql/bin/myisampack
|
||||
/usr/local/Calpont/mysql/bin/mysql_setpermission
|
||||
/usr/local/Calpont/mysql/bin/mysqladmin
|
||||
/usr/local/Calpont/mysql/bin/mysqlslap
|
||||
/usr/local/Calpont/mysql/bin/mysql_zap
|
||||
/usr/local/Calpont/mysql/bin/mysqldump
|
||||
/usr/local/Calpont/mysql/bin/mysqld_safe
|
||||
/usr/local/Calpont/mysql/bin/mysqlshow
|
||||
/usr/local/Calpont/mysql/bin/mysqltest
|
||||
/usr/local/Calpont/mysql/bin/mysql_config
|
||||
/usr/local/Calpont/mysql/bin/mysql_client_test
|
||||
/usr/local/Calpont/mysql/bin/mysqlbinlog
|
||||
/usr/local/Calpont/mysql/bin/mysqld_multi
|
||||
/usr/local/Calpont/mysql/bin/mysqlaccess
|
||||
/usr/local/Calpont/mysql/bin/mysql_install_db
|
||||
/usr/local/Calpont/mysql/bin/msql2mysql
|
||||
/usr/local/Calpont/mysql/bin/mysqlimport
|
||||
/usr/local/Calpont/mysql/bin/replace
|
||||
/usr/local/Calpont/mysql/bin/mysql_convert_table_format
|
||||
/usr/local/Calpont/mysql/bin/myisam_ftdump
|
||||
/usr/local/Calpont/mysql/bin/mysql_tzinfo_to_sql
|
||||
/usr/local/Calpont/mysql/bin/mysql_fix_extensions
|
||||
/usr/local/Calpont/mysql/bin/mysqldumpslow
|
||||
/usr/local/Calpont/mysql/bin/mysqlhotcopy
|
||||
/usr/local/Calpont/mysql/share/mysql/config.small.ini
|
||||
/usr/local/Calpont/mysql/share/mysql/romanian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/korean/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/norwegian-ny/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/binary-configure
|
||||
/usr/local/Calpont/mysql/share/mysql/french/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/greek/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/mysql-log-rotate
|
||||
/usr/local/Calpont/mysql/share/mysql/mysql_system_tables_data.sql
|
||||
/usr/local/Calpont/mysql/share/mysql/russian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/mysql.server
|
||||
/usr/local/Calpont/mysql/share/mysql/mi_test_all.res
|
||||
/usr/local/Calpont/mysql/share/mysql/danish/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/portuguese/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/mysql_fix_privilege_tables.sql
|
||||
/usr/local/Calpont/mysql/share/mysql/italian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/mi_test_all
|
||||
/usr/local/Calpont/mysql/share/mysql/mysql_system_tables.sql
|
||||
/usr/local/Calpont/mysql/share/mysql/my-innodb-heavy-4G.cnf
|
||||
/usr/local/Calpont/mysql/share/mysql/norwegian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/fill_help_tables.sql
|
||||
/usr/local/Calpont/mysql/share/mysql/spanish/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/ndb-config-2-node.ini
|
||||
/usr/local/Calpont/mysql/share/mysql/slovak/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/mysql_test_data_timezone.sql
|
||||
/usr/local/Calpont/mysql/share/mysql/czech/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/english/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/hungarian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/mysqld_multi.server
|
||||
/usr/local/Calpont/mysql/share/mysql/estonian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/german/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/errmsg.txt
|
||||
/usr/local/Calpont/mysql/share/mysql/swedish/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/dutch/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp866.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/hebrew.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/latin2.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/armscii8.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/latin7.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/geostd8.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/latin5.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/swe7.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/keybcs2.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp1257.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/macroman.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp1251.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp1256.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/macce.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/dec8.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/latin1.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/greek.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp850.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/hp8.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp852.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/koi8r.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/README
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/cp1250.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/koi8u.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/Index.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/charsets/ascii.xml
|
||||
/usr/local/Calpont/mysql/share/mysql/config.medium.ini
|
||||
/usr/local/Calpont/mysql/share/mysql/my-huge.cnf
|
||||
/usr/local/Calpont/mysql/share/mysql/polish/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/my-medium.cnf
|
||||
/usr/local/Calpont/mysql/share/mysql/my-large.cnf
|
||||
/usr/local/Calpont/mysql/share/mysql/config.huge.ini
|
||||
/usr/local/Calpont/mysql/share/mysql/ukrainian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/serbian/errmsg.sys
|
||||
/usr/local/Calpont/mysql/share/mysql/my-small.cnf
|
||||
/usr/local/Calpont/mysql/share/mysql/japanese/errmsg.sys
|
||||
/usr/local/Calpont/mysql/mysql-Calpont
|
||||
/usr/local/Calpont/mysql/install_calpont_mysql.sh
|
||||
/usr/local/Calpont/mysql/syscatalog_mysql.sql
|
||||
/usr/local/Calpont/mysql/dumpcat_mysql.sql
|
||||
/usr/local/Calpont/mysql/dumpcat.pl
|
||||
/usr/local/Calpont/mysql/calsetuserpriority.sql
|
||||
/usr/local/Calpont/mysql/calremoveuserpriority.sql
|
||||
/usr/local/Calpont/mysql/calshowprocesslist.sql
|
||||
|
||||
%config /usr/local/Calpont/mysql/my.cnf
|
||||
|
||||
#
|
||||
# Scriptlets
|
||||
# for an install, pre & post run with $1 set to 1
|
||||
# for an erase, preun & postun run with $1 set to 0
|
||||
# for an upgrade, pre & post run first, with $1 set to 2 then the _old_ preun & postun run with $1 set to 1
|
||||
|
||||
%post platform
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
test -x /usr/local/Calpont/bin/post-install && /usr/local/Calpont/bin/post-install --prefix=$prefix --rpmmode=$rpmmode
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%post libs
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%post storage-engine
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%post mysql
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%post enterprise
|
||||
rpmmode=install
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=upgrade
|
||||
fi
|
||||
fi
|
||||
|
||||
prefix=/usr/local
|
||||
|
||||
echo "InfinIDB RPM install completed"
|
||||
|
||||
%preun platform
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
if [ $rpmmode = erase ]; then
|
||||
test -x /usr/local/Calpont/bin/pre-uninstall && /usr/local/Calpont/bin/pre-uninstall
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun libs
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun storage-engine
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun enterprise
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
%preun mysql
|
||||
rpmmode=upgrade
|
||||
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
||||
if [ $1 -ne 1 ]; then
|
||||
rpmmode=erase
|
||||
fi
|
||||
else
|
||||
rpmmode=erase
|
||||
fi
|
||||
|
||||
if [ $rpmmode = erase ]; then
|
||||
/etc/init.d/mysql-Calpont stop > /dev/null 2>&1
|
||||
if [ -x /sbin/chkconfig ]; then
|
||||
/sbin/chkconfig mysql-Calpont off > /dev/null 2>&1
|
||||
/sbin/chkconfig --del mysql-Calpont > /dev/null 2>&1
|
||||
elif [ -x /usr/sbin/update-rc.d ]; then
|
||||
/usr/sbin/update-rc.d -f mysql-Calpont remove > /dev/null 2>&1
|
||||
fi
|
||||
rm -f /etc/init.d/mysql-Calpont
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
267
configure.ac
267
configure.ac
@ -1,267 +0,0 @@
|
||||
# $Id$
|
||||
# -*- Autoconf -*-
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.59)
|
||||
AC_INIT(columnstore, 1.0.2, support@mariadb.com)
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
### we don't want the deault CXXFLAGS set by AC_INIT, but we do want to allow the user to set them
|
||||
SAVE_CXXFLAGS=
|
||||
if test -n "$CXXFLAGS"; then
|
||||
SAVE_CXXFLAGS="$CXXFLAGS"
|
||||
fi
|
||||
CXXFLAGS=
|
||||
SAVE_CFLAGS=
|
||||
if test -n "$CFLAGS"; then
|
||||
SAVE_CFLAGS="$CFLAGS"
|
||||
fi
|
||||
CFLAGS=
|
||||
## AC_CONFIG_SRCDIR([configcpp/configcpp.cpp])
|
||||
AM_INIT_AUTOMAKE
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
||||
AC_PREFIX_DEFAULT([/usr/local/mariadb/columnstore])
|
||||
|
||||
AC_LANG_CPLUSPLUS
|
||||
|
||||
# Checks for programs.
|
||||
AC_PROG_CC
|
||||
if test -n "$SAVE_CFLAGS"; then
|
||||
CFLAGS="$SAVE_CFLAGS"
|
||||
else
|
||||
CFLAGS=
|
||||
fi
|
||||
AC_PROG_CXX
|
||||
if test -n "$SAVE_CXXFLAGS"; then
|
||||
CXXFLAGS="$SAVE_CXXFLAGS"
|
||||
else
|
||||
CXXFLAGS=
|
||||
fi
|
||||
AC_ENABLE_STATIC([no])
|
||||
AC_PROG_LIBTOOL
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_LEX
|
||||
if test "x$LEX" = "x:"; then
|
||||
AC_MSG_ERROR([Could not find a usable lex program!])
|
||||
fi
|
||||
AC_PROG_YACC
|
||||
$YACC --version >/dev/null 2>&1
|
||||
if test $? -ne 0; then
|
||||
AC_MSG_ERROR([Could not find a usable yacc program!])
|
||||
fi
|
||||
AC_PROG_AWK
|
||||
AC_PROG_CPP
|
||||
AC_PROG_LN_S
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
# FIXME:
|
||||
# for quicklz (note this macro is not needed if autotools is 1.14 or
|
||||
# greater, but old versions of CentOS do not have newer version
|
||||
# of autotools
|
||||
AM_PROG_CC_C_O
|
||||
|
||||
# Checks for header files.
|
||||
AC_FUNC_ALLOCA
|
||||
AC_HEADER_STDC
|
||||
AC_HEADER_SYS_WAIT
|
||||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h malloc.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/file.h sys/mount.h sys/socket.h sys/statfs.h sys/time.h sys/timeb.h syslog.h unistd.h utime.h values.h])
|
||||
|
||||
# Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_HEADER_STAT
|
||||
AC_HEADER_STDBOOL
|
||||
AC_C_CONST
|
||||
AC_C_INLINE
|
||||
AC_TYPE_MODE_T
|
||||
AC_TYPE_OFF_T
|
||||
AC_TYPE_PID_T
|
||||
AC_C_RESTRICT
|
||||
AC_TYPE_SIZE_T
|
||||
AC_HEADER_TIME
|
||||
AC_STRUCT_TM
|
||||
AC_C_VOLATILE
|
||||
AC_CHECK_TYPES([ptrdiff_t])
|
||||
|
||||
# Checks for library functions.
|
||||
AC_FUNC_ERROR_AT_LINE
|
||||
AC_REPLACE_FNMATCH
|
||||
AC_FUNC_FORK
|
||||
AC_FUNC_MALLOC
|
||||
AC_FUNC_MEMCMP
|
||||
AC_FUNC_MKTIME
|
||||
AC_FUNC_SELECT_ARGTYPES
|
||||
AC_FUNC_SETVBUF_REVERSED
|
||||
AC_TYPE_SIGNAL
|
||||
AC_FUNC_STAT
|
||||
AC_FUNC_STRERROR_R
|
||||
AC_FUNC_STRFTIME
|
||||
AC_FUNC_STRTOD
|
||||
AC_FUNC_UTIME_NULL
|
||||
AC_CHECK_FUNCS([alarm dup2 floor ftime ftruncate gethostbyname getpagesize gettimeofday inet_ntoa isascii localtime_r memchr memmove memset mkdir pow regcomp rmdir select setenv setlocale socket strcasecmp strchr strcspn strdup strerror strrchr strspn strstr strtol strtoul strtoull utime])
|
||||
|
||||
AM_PATH_XML2([2.6.26])
|
||||
if test "x$XML_CPPFLAGS" = "x"; then
|
||||
AC_MSG_ERROR([Could not find a usable libxml2 development environment!])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS([zlib.h])
|
||||
if test "x$ac_cv_header_zlib_h" != "xyes"; then
|
||||
AC_MSG_ERROR([Could not find a usable zlib development environment!])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS([readline/readline.h])
|
||||
if test "x$ac_cv_header_readline_readline_h" != "xyes"; then
|
||||
AC_MSG_ERROR([Could not find a usable readline development environment!])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS([ncurses.h])
|
||||
if test "x$ac_cv_header_ncurses_h" != "xyes"; then
|
||||
AC_MSG_ERROR([Could not find a usable ncurses development environment!])
|
||||
fi
|
||||
|
||||
#CXX_FLAG_CHECK([-Wno-unused-local-typedefs])
|
||||
#CXX_FLAG_CHECK([-Wno-unused-result])
|
||||
#CXX_FLAG_CHECK([-Wno-format])
|
||||
|
||||
AC_MSG_CHECKING(whether to enable debugging)
|
||||
AC_SUBST([idb_cppflags], [' '])
|
||||
AC_ARG_WITH([debug],
|
||||
AS_HELP_STRING([--with-debug],[include debugging symbols/no optimization]))
|
||||
if test "x$with_debug" = "xyes"; then
|
||||
AC_SUBST([idb_cxxflags],['-ggdb3 -O0 -Wall -D_DEBUG'])
|
||||
AC_SUBST([idb_cflags],['-ggdb3 -O0 -Wall -D _DEBUG'])
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_SUBST([idb_cxxflags],["-g0 -O3 -fno-strict-aliasing -Wall $cxx_extra_flags"])
|
||||
AC_SUBST([idb_cflags],['-g0 -O3 -fno-strict-aliasing -Wall'])
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
AC_SUBST([idbinstall], ['${prefix}'])
|
||||
AC_SUBST([idb_ldflags],['-Wl,--rpath -Wl,${idbinstall}/lib -Wl,--no-as-needed -Wl,--add-needed'])
|
||||
|
||||
AC_MSG_CHECKING(for CPU architecture)
|
||||
uname=`uname -m`
|
||||
AS_IF(
|
||||
[test `expr $uname : 'i.86'` -gt 0], [AC_SUBST([march_flags], ['-march=pentium4'])] [AC_MSG_RESULT(pentium4)],
|
||||
[AC_SUBST([march_flags], [' '])] [AC_MSG_RESULT(x86_64)]
|
||||
)
|
||||
|
||||
AC_SUBST([libdir], ['${idbinstall}/lib'])
|
||||
AC_SUBST([bindir], ['${idbinstall}/bin'])
|
||||
AC_SUBST([includedir], ['${idbinstall}/include'])
|
||||
AC_SUBST([etcdir], ['${idbinstall}/etc'])
|
||||
AC_SUBST([sysconfdir], ['${idbinstall}/etc'])
|
||||
AC_SUBST([mandir], ['${idbinstall}/man'])
|
||||
AC_SUBST([sbindir], ['${idbinstall}/sbin'])
|
||||
AC_SUBST([sharedir], ['${idbinstall}/share'])
|
||||
AC_SUBST([postdir], ['${idbinstall}/post'])
|
||||
AC_SUBST([localdir], ['${idbinstall}/local'])
|
||||
AC_SUBST([mysqldir], ['${idbinstall}/mysql'])
|
||||
AC_SUBST([mibdir], ['${idbinstall}/share/snmp/mibs'])
|
||||
AC_SUBST([toolsdir], ['${idbinstall}/tools'])
|
||||
|
||||
AC_SUBST([netsnmp_libs], ['-L${abs_top_builddir}/net-snmp/net-snmp/snmplib/.libs -L${abs_top_builddir}/net-snmp/net-snmp/agent/helpers/.libs -L${abs_top_builddir}/net-snmp/net-snmp/agent/.libs/ -L${abs_top_builddir}/net-snmp/net-snmp/apps/.libs/ -lnetsnmpmibs -lnetsnmpagent -lnetsnmp -lnetsnmpmibs -lnetsnmphelpers'])
|
||||
AC_SUBST([idb_common_libs], ['${abs_top_builddir}/utils/messageqcpp/libmessageqcpp.la ${abs_top_builddir}/utils/loggingcpp/libloggingcpp.la ${abs_top_builddir}/utils/configcpp/libconfigcpp.la ${abs_top_builddir}/utils/startup/libidbboot.a -lxml2 -lpthread -lrt -lboost_system -lboost_filesystem -lboost_thread -lboost_regex -lboost_date_time'])
|
||||
AC_SUBST([idb_oam_libs], ['${abs_top_builddir}/oam/oamcpp/liboamcpp.la ${abs_top_builddir}/snmpd/snmpmanager/libsnmpmanager.la ${netsnmp_libs}'])
|
||||
AC_SUBST([idb_brm_libs], ['${abs_top_builddir}/versioning/BRM/libbrm.la ${abs_top_builddir}/utils/idbdatafile/libidbdatafile.la ${abs_top_builddir}/utils/cacheutils/libcacheutils.la ${abs_top_builddir}/utils/rwlock/librwlock.la ${idb_oam_libs} ${idb_common_libs}'])
|
||||
AC_SUBST([idb_exec_libs], ['${abs_top_builddir}/dbcon/joblist/libjoblist.la ${abs_top_builddir}/dbcon/execplan/libexecplan.la ${abs_top_builddir}/utils/windowfunction/libwindowfunction.la ${abs_top_builddir}/utils/joiner/libjoiner.la ${abs_top_builddir}/utils/rowgroup/librowgroup.la ${abs_top_builddir}/utils/funcexp/libfuncexp.la ${abs_top_builddir}/utils/udfsdk/libudfsdk.la ${abs_top_builddir}/utils/dataconvert/libdataconvert.la ${abs_top_builddir}/utils/common/libcommon.la ${abs_top_builddir}/utils/compress/libcompress.la ${abs_top_builddir}/utils/mysqlcl_idb/libmysqlcl_idb.la ${abs_top_builddir}/utils/querystats/libquerystats.la ${abs_top_builddir}/utils/querytele/libquerytele.la ${abs_top_builddir}/utils/thrift/libthrift.la ${abs_top_builddir}/utils/threadpool/libthreadpool.la ${idb_brm_libs}'])
|
||||
AC_SUBST([idb_write_libs], ['${abs_top_builddir}/dbcon/ddlpackageproc/libddlpackageproc.la ${abs_top_builddir}/dbcon/ddlpackage/libddlpackage.la ${abs_top_builddir}/dbcon/dmlpackageproc/libdmlpackageproc.la ${abs_top_builddir}/dbcon/dmlpackage/libdmlpackage.la ${abs_top_builddir}/writeengine/wrapper/libwriteengine.la ${abs_top_builddir}/writeengine/client/libwriteengineclient.la ${abs_top_builddir}/utils/idbdatafile/libidbdatafile.la ${abs_top_builddir}/utils/cacheutils/libcacheutils.la ${idb_exec_libs}'])
|
||||
AC_SUBST([idb_common_includes], ['-I${abs_top_builddir}/utils/libxml -I${abs_top_builddir}/utils/messageqcpp -I${abs_top_builddir}/writeengine/shared -I${abs_top_builddir}/utils/idbdatafile -I${abs_top_builddir}/utils/loggingcpp -I${abs_top_builddir}/utils/configcpp -I${abs_top_builddir}/utils/compress -I${abs_top_builddir}/versioning/BRM -I${abs_top_builddir}/utils/rowgroup -I${abs_top_builddir}/utils/common -I${abs_top_builddir}/utils/dataconvert -I${abs_top_builddir}/utils/rwlock -I${abs_top_builddir}/utils/funcexp -I${abs_top_builddir}/snmpd/snmpmanager -I${abs_top_builddir}/utils -I${abs_top_builddir}/oam/oamcpp -I${abs_top_builddir}/dbcon/ddlpackageproc -I${abs_top_builddir}/dbcon/ddlpackage -I${abs_top_builddir}/dbcon/execplan -I${abs_top_builddir}/utils/startup -I${abs_top_builddir}/dbcon/joblist -I${abs_top_builddir}/writeengine/wrapper -I${abs_top_builddir}/writeengine/server -I${abs_top_builddir}/dbcon/dmlpackage -I${abs_top_builddir}/writeengine/client -I${abs_top_builddir}/dbcon/dmlpackageproc -I${abs_top_builddir}/utils/cacheutils -I${abs_top_builddir}/utils/mysqlcl_idb -I${abs_top_builddir}/utils/querytele -I${abs_top_builddir}/utils/thrift -I${abs_top_builddir}/utils/joiner -I${abs_top_builddir}/utils/threadpool -I${abs_top_builddir}/utils/batchloader -I${abs_top_builddir}/utils/ddlcleanup -I${abs_top_builddir}/utils/querystats -I${abs_top_builddir}/writeengine/xml -I${abs_top_builddir}/../../../sql -I${abs_top_builddir}/../../../include -I${abs_top_builddir}/../../../pcre -I${abs_top_builddir}/../sql -I${abs_top_builddir}/../include -I${abs_top_builddir}/../pcre -I${abs_top_builddir}/net-snmp/net-snmp -I${abs_top_builddir}/net-snmp/net-snmp/include -I${abs_top_builddir}/snmpd/snmpmanager'])
|
||||
AC_SUBST([idb_common_ldflags], [''])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
utils/Makefile
|
||||
utils/startup/Makefile
|
||||
utils/common/Makefile
|
||||
utils/configcpp/Makefile
|
||||
utils/loggingcpp/Makefile
|
||||
utils/messageqcpp/Makefile
|
||||
utils/threadpool/Makefile
|
||||
utils/rwlock/Makefile
|
||||
utils/dataconvert/Makefile
|
||||
utils/joiner/Makefile
|
||||
utils/rowgroup/Makefile
|
||||
utils/cacheutils/Makefile
|
||||
utils/funcexp/Makefile
|
||||
utils/udfsdk/Makefile
|
||||
utils/compress/Makefile
|
||||
utils/ddlcleanup/Makefile
|
||||
utils/batchloader/Makefile
|
||||
utils/mysqlcl_idb/Makefile
|
||||
utils/querystats/Makefile
|
||||
utils/jemalloc/Makefile
|
||||
utils/windowfunction/Makefile
|
||||
utils/idbdatafile/Makefile
|
||||
utils/idbhdfs/Makefile
|
||||
utils/idbhdfs/hdfs-12/Makefile
|
||||
utils/idbhdfs/hdfs-20/Makefile
|
||||
utils/winport/Makefile
|
||||
utils/thrift/Makefile
|
||||
utils/querytele/Makefile
|
||||
exemgr/Makefile
|
||||
ddlproc/Makefile
|
||||
dbcon/Makefile
|
||||
dbcon/ddlpackage/Makefile
|
||||
dbcon/ddlpackageproc/Makefile
|
||||
dbcon/dmlpackage/Makefile
|
||||
dbcon/dmlpackageproc/Makefile
|
||||
dbcon/execplan/Makefile
|
||||
dbcon/joblist/Makefile
|
||||
dbcon/mysql/Makefile
|
||||
dmlproc/Makefile
|
||||
oam/Makefile
|
||||
oam/etc/Makefile
|
||||
oam/install_scripts/Makefile
|
||||
oam/oamcpp/Makefile
|
||||
oam/post/Makefile
|
||||
oam/cloud/Makefile
|
||||
oamapps/Makefile
|
||||
oamapps/mcsadmin/Makefile
|
||||
oamapps/calpontDB/Makefile
|
||||
oamapps/postConfigure/Makefile
|
||||
oamapps/serverMonitor/Makefile
|
||||
oamapps/sessionWalker/Makefile
|
||||
oamapps/traphandler/Makefile
|
||||
oamapps/sendtrap/Makefile
|
||||
oamapps/calpontSupport/Makefile
|
||||
oamapps/columnstoreDB/Makefile
|
||||
primitives/Makefile
|
||||
primitives/blockcache/Makefile
|
||||
primitives/linux-port/Makefile
|
||||
primitives/primproc/Makefile
|
||||
decomsvr/Makefile
|
||||
procmgr/Makefile
|
||||
procmon/Makefile
|
||||
net-snmp/Makefile
|
||||
snmpd/Makefile
|
||||
snmpd/etc/Makefile
|
||||
snmpd/snmpmanager/Makefile
|
||||
oamapps/columnstoreSupport/Makefile
|
||||
tools/Makefile
|
||||
tools/editem/Makefile
|
||||
tools/cplogger/Makefile
|
||||
tools/clearShm/Makefile
|
||||
tools/setConfig/Makefile
|
||||
tools/getConfig/Makefile
|
||||
tools/dbbuilder/Makefile
|
||||
tools/dbloadxml/Makefile
|
||||
tools/configMgt/Makefile
|
||||
tools/viewtablelock/Makefile
|
||||
tools/cleartablelock/Makefile
|
||||
tools/ddlcleanup/Makefile
|
||||
tools/idbmeminfo/Makefile
|
||||
versioning/Makefile
|
||||
versioning/BRM/Makefile
|
||||
writeengine/Makefile
|
||||
writeengine/shared/Makefile
|
||||
writeengine/index/Makefile
|
||||
writeengine/dictionary/Makefile
|
||||
writeengine/wrapper/Makefile
|
||||
writeengine/xml/Makefile
|
||||
writeengine/bulk/Makefile
|
||||
writeengine/client/Makefile
|
||||
writeengine/splitter/Makefile
|
||||
writeengine/server/Makefile
|
||||
writeengine/redistribute/Makefile
|
||||
])
|
||||
AC_OUTPUT
|
@ -1,267 +0,0 @@
|
||||
# $Id$
|
||||
# -*- Autoconf -*-
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.59)
|
||||
AC_INIT(columnstore, 1.0.2, support@mariadb.com)
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
### we don't want the deault CXXFLAGS set by AC_INIT, but we do want to allow the user to set them
|
||||
SAVE_CXXFLAGS=
|
||||
if test -n "$CXXFLAGS"; then
|
||||
SAVE_CXXFLAGS="$CXXFLAGS"
|
||||
fi
|
||||
CXXFLAGS=
|
||||
SAVE_CFLAGS=
|
||||
if test -n "$CFLAGS"; then
|
||||
SAVE_CFLAGS="$CFLAGS"
|
||||
fi
|
||||
CFLAGS=
|
||||
## AC_CONFIG_SRCDIR([configcpp/configcpp.cpp])
|
||||
AM_INIT_AUTOMAKE
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
||||
AC_PREFIX_DEFAULT([/usr/local/mariadb/columnstore])
|
||||
|
||||
AC_LANG_CPLUSPLUS
|
||||
|
||||
# Checks for programs.
|
||||
AC_PROG_CC
|
||||
if test -n "$SAVE_CFLAGS"; then
|
||||
CFLAGS="$SAVE_CFLAGS"
|
||||
else
|
||||
CFLAGS=
|
||||
fi
|
||||
AC_PROG_CXX
|
||||
if test -n "$SAVE_CXXFLAGS"; then
|
||||
CXXFLAGS="$SAVE_CXXFLAGS"
|
||||
else
|
||||
CXXFLAGS=
|
||||
fi
|
||||
AC_ENABLE_STATIC([no])
|
||||
AC_PROG_LIBTOOL
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_LEX
|
||||
if test "x$LEX" = "x:"; then
|
||||
AC_MSG_ERROR([Could not find a usable lex program!])
|
||||
fi
|
||||
AC_PROG_YACC
|
||||
$YACC --version >/dev/null 2>&1
|
||||
if test $? -ne 0; then
|
||||
AC_MSG_ERROR([Could not find a usable yacc program!])
|
||||
fi
|
||||
AC_PROG_AWK
|
||||
AC_PROG_CPP
|
||||
AC_PROG_LN_S
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
# FIXME:
|
||||
# for quicklz (note this macro is not needed if autotools is 1.14 or
|
||||
# greater, but old versions of CentOS do not have newer version
|
||||
# of autotools
|
||||
AM_PROG_CC_C_O
|
||||
|
||||
# Checks for header files.
|
||||
AC_FUNC_ALLOCA
|
||||
AC_HEADER_STDC
|
||||
AC_HEADER_SYS_WAIT
|
||||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h malloc.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/file.h sys/mount.h sys/socket.h sys/statfs.h sys/time.h sys/timeb.h syslog.h unistd.h utime.h values.h])
|
||||
|
||||
# Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_HEADER_STAT
|
||||
AC_HEADER_STDBOOL
|
||||
AC_C_CONST
|
||||
AC_C_INLINE
|
||||
AC_TYPE_MODE_T
|
||||
AC_TYPE_OFF_T
|
||||
AC_TYPE_PID_T
|
||||
AC_C_RESTRICT
|
||||
AC_TYPE_SIZE_T
|
||||
AC_HEADER_TIME
|
||||
AC_STRUCT_TM
|
||||
AC_C_VOLATILE
|
||||
AC_CHECK_TYPES([ptrdiff_t])
|
||||
|
||||
# Checks for library functions.
|
||||
AC_FUNC_ERROR_AT_LINE
|
||||
AC_REPLACE_FNMATCH
|
||||
AC_FUNC_FORK
|
||||
AC_FUNC_MALLOC
|
||||
AC_FUNC_MEMCMP
|
||||
AC_FUNC_MKTIME
|
||||
AC_FUNC_SELECT_ARGTYPES
|
||||
AC_FUNC_SETVBUF_REVERSED
|
||||
AC_TYPE_SIGNAL
|
||||
AC_FUNC_STAT
|
||||
AC_FUNC_STRERROR_R
|
||||
AC_FUNC_STRFTIME
|
||||
AC_FUNC_STRTOD
|
||||
AC_FUNC_UTIME_NULL
|
||||
AC_CHECK_FUNCS([alarm dup2 floor ftime ftruncate gethostbyname getpagesize gettimeofday inet_ntoa isascii localtime_r memchr memmove memset mkdir pow regcomp rmdir select setenv setlocale socket strcasecmp strchr strcspn strdup strerror strrchr strspn strstr strtol strtoul strtoull utime])
|
||||
|
||||
AM_PATH_XML2([2.6.26])
|
||||
if test "x$XML_CPPFLAGS" = "x"; then
|
||||
AC_MSG_ERROR([Could not find a usable libxml2 development environment!])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS([zlib.h])
|
||||
if test "x$ac_cv_header_zlib_h" != "xyes"; then
|
||||
AC_MSG_ERROR([Could not find a usable zlib development environment!])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS([readline/readline.h])
|
||||
if test "x$ac_cv_header_readline_readline_h" != "xyes"; then
|
||||
AC_MSG_ERROR([Could not find a usable readline development environment!])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS([ncurses.h])
|
||||
if test "x$ac_cv_header_ncurses_h" != "xyes"; then
|
||||
AC_MSG_ERROR([Could not find a usable ncurses development environment!])
|
||||
fi
|
||||
|
||||
#CXX_FLAG_CHECK([-Wno-unused-local-typedefs])
|
||||
#CXX_FLAG_CHECK([-Wno-unused-result])
|
||||
#CXX_FLAG_CHECK([-Wno-format])
|
||||
|
||||
AC_MSG_CHECKING(whether to enable debugging)
|
||||
AC_SUBST([idb_cppflags], [' '])
|
||||
AC_ARG_WITH([debug],
|
||||
AS_HELP_STRING([--with-debug],[include debugging symbols/no optimization]))
|
||||
if test "x$with_debug" = "xyes"; then
|
||||
AC_SUBST([idb_cxxflags],['-ggdb3 -O0 -Wall -D_DEBUG'])
|
||||
AC_SUBST([idb_cflags],['-ggdb3 -O0 -Wall -D _DEBUG'])
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_SUBST([idb_cxxflags],["-g0 -O3 -fno-strict-aliasing -Wall $cxx_extra_flags"])
|
||||
AC_SUBST([idb_cflags],['-g0 -O3 -fno-strict-aliasing -Wall'])
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
AC_SUBST([idbinstall], ['${prefix}'])
|
||||
AC_SUBST([idb_ldflags],['-Wl,--rpath -Wl,${idbinstall}/lib -Wl,--no-as-needed -Wl,--add-needed'])
|
||||
|
||||
AC_MSG_CHECKING(for CPU architecture)
|
||||
uname=`uname -m`
|
||||
AS_IF(
|
||||
[test `expr $uname : 'i.86'` -gt 0], [AC_SUBST([march_flags], ['-march=pentium4'])] [AC_MSG_RESULT(pentium4)],
|
||||
[AC_SUBST([march_flags], [' '])] [AC_MSG_RESULT(x86_64)]
|
||||
)
|
||||
|
||||
AC_SUBST([libdir], ['${idbinstall}/lib'])
|
||||
AC_SUBST([bindir], ['${idbinstall}/bin'])
|
||||
AC_SUBST([includedir], ['${idbinstall}/include'])
|
||||
AC_SUBST([etcdir], ['${idbinstall}/etc'])
|
||||
AC_SUBST([sysconfdir], ['${idbinstall}/etc'])
|
||||
AC_SUBST([mandir], ['${idbinstall}/man'])
|
||||
AC_SUBST([sbindir], ['${idbinstall}/sbin'])
|
||||
AC_SUBST([sharedir], ['${idbinstall}/share'])
|
||||
AC_SUBST([postdir], ['${idbinstall}/post'])
|
||||
AC_SUBST([localdir], ['${idbinstall}/local'])
|
||||
AC_SUBST([mysqldir], ['${idbinstall}/mysql'])
|
||||
AC_SUBST([mibdir], ['${idbinstall}/share/snmp/mibs'])
|
||||
AC_SUBST([toolsdir], ['${idbinstall}/tools'])
|
||||
|
||||
AC_SUBST([netsnmp_libs], ['-L${abs_top_builddir}/net-snmp/net-snmp/snmplib/.libs -L${abs_top_builddir}/net-snmp/net-snmp/agent/helpers/.libs -L${abs_top_builddir}/net-snmp/net-snmp/agent/.libs/ -L${abs_top_builddir}/net-snmp/net-snmp/apps/.libs/ -lnetsnmpmibs -lnetsnmpagent -lnetsnmp -lnetsnmpmibs -lnetsnmphelpers'])
|
||||
AC_SUBST([idb_common_libs], ['${abs_top_builddir}/utils/messageqcpp/libmessageqcpp.la ${abs_top_builddir}/utils/loggingcpp/libloggingcpp.la ${abs_top_builddir}/utils/configcpp/libconfigcpp.la ${abs_top_builddir}/utils/startup/libidbboot.a -lxml2 -lpthread -lrt libboost_system libboost_filesystem '])
|
||||
AC_SUBST([idb_oam_libs], ['${abs_top_builddir}/oam/oamcpp/liboamcpp.la ${abs_top_builddir}/snmpd/snmpmanager/libsnmpmanager.la ${netsnmp_libs}'])
|
||||
AC_SUBST([idb_brm_libs], ['${abs_top_builddir}/versioning/BRM/libbrm.la ${abs_top_builddir}/utils/idbdatafile/libidbdatafile.la ${abs_top_builddir}/utils/cacheutils/libcacheutils.la ${abs_top_builddir}/utils/rwlock/librwlock.la ${idb_oam_libs} ${idb_common_libs}'])
|
||||
AC_SUBST([idb_exec_libs], ['${abs_top_builddir}/dbcon/joblist/libjoblist.la ${abs_top_builddir}/dbcon/execplan/libexecplan.la ${abs_top_builddir}/utils/windowfunction/libwindowfunction.la ${abs_top_builddir}/utils/joiner/libjoiner.la ${abs_top_builddir}/utils/rowgroup/librowgroup.la ${abs_top_builddir}/utils/funcexp/libfuncexp.la ${abs_top_builddir}/utils/udfsdk/libudfsdk.la ${abs_top_builddir}/utils/dataconvert/libdataconvert.la ${abs_top_builddir}/utils/common/libcommon.la ${abs_top_builddir}/utils/compress/libcompress.la ${abs_top_builddir}/utils/mysqlcl_idb/libmysqlcl_idb.la ${abs_top_builddir}/utils/querystats/libquerystats.la ${abs_top_builddir}/utils/querytele/libquerytele.la ${abs_top_builddir}/utils/thrift/libthrift.la ${abs_top_builddir}/utils/threadpool/libthreadpool.la ${idb_brm_libs}'])
|
||||
AC_SUBST([idb_write_libs], ['${abs_top_builddir}/dbcon/ddlpackageproc/libddlpackageproc.la ${abs_top_builddir}/dbcon/ddlpackage/libddlpackage.la ${abs_top_builddir}/dbcon/dmlpackageproc/libdmlpackageproc.la ${abs_top_builddir}/dbcon/dmlpackage/libdmlpackage.la ${abs_top_builddir}/writeengine/wrapper/libwriteengine.la ${abs_top_builddir}/writeengine/client/libwriteengineclient.la ${abs_top_builddir}/utils/idbdatafile/libidbdatafile.la ${abs_top_builddir}/utils/cacheutils/libcacheutils.la ${idb_exec_libs}'])
|
||||
AC_SUBST([idb_common_includes], ['-I${abs_top_builddir}/utils/libxml -I${abs_top_builddir}/utils/messageqcpp -I${abs_top_builddir}/writeengine/shared -I${abs_top_builddir}/utils/idbdatafile -I${abs_top_builddir}/utils/loggingcpp -I${abs_top_builddir}/utils/configcpp -I${abs_top_builddir}/utils/compress -I${abs_top_builddir}/versioning/BRM -I${abs_top_builddir}/utils/rowgroup -I${abs_top_builddir}/utils/common -I${abs_top_builddir}/utils/dataconvert -I${abs_top_builddir}/utils/rwlock -I${abs_top_builddir}/utils/funcexp -I${abs_top_builddir}/snmpd/snmpmanager -I${abs_top_builddir}/utils -I${abs_top_builddir}/oam/oamcpp -I${abs_top_builddir}/dbcon/ddlpackageproc -I${abs_top_builddir}/dbcon/ddlpackage -I${abs_top_builddir}/dbcon/execplan -I${abs_top_builddir}/utils/startup -I${abs_top_builddir}/dbcon/joblist -I${abs_top_builddir}/writeengine/wrapper -I${abs_top_builddir}/writeengine/server -I${abs_top_builddir}/dbcon/dmlpackage -I${abs_top_builddir}/writeengine/client -I${abs_top_builddir}/dbcon/dmlpackageproc -I${abs_top_builddir}/utils/cacheutils -I${abs_top_builddir}/utils/mysqlcl_idb -I${abs_top_builddir}/utils/querytele -I${abs_top_builddir}/utils/boost_idb -I${abs_top_builddir}/utils/thrift -I${abs_top_builddir}/utils/joiner -I${abs_top_builddir}/utils/threadpool -I${abs_top_builddir}/utils/batchloader -I${abs_top_builddir}/utils/ddlcleanup -I${abs_top_builddir}/utils/querystats -I${abs_top_builddir}/writeengine/xml -I${abs_top_builddir}/../../../sql -I${abs_top_builddir}/../../../include -I${abs_top_builddir}/../../../pcre -I${abs_top_builddir}/../sql -I${abs_top_builddir}/../include -I${abs_top_builddir}/../pcre -I${abs_top_builddir}/net-snmp/net-snmp -I${abs_top_builddir}/net-snmp/net-snmp/include -I${abs_top_builddir}/snmpd/snmpmanager'])
|
||||
AC_SUBST([idb_common_ldflags], [''])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
utils/Makefile
|
||||
utils/startup/Makefile
|
||||
utils/common/Makefile
|
||||
utils/configcpp/Makefile
|
||||
utils/loggingcpp/Makefile
|
||||
utils/messageqcpp/Makefile
|
||||
utils/threadpool/Makefile
|
||||
utils/rwlock/Makefile
|
||||
utils/dataconvert/Makefile
|
||||
utils/joiner/Makefile
|
||||
utils/rowgroup/Makefile
|
||||
utils/cacheutils/Makefile
|
||||
utils/funcexp/Makefile
|
||||
utils/udfsdk/Makefile
|
||||
utils/compress/Makefile
|
||||
utils/ddlcleanup/Makefile
|
||||
utils/batchloader/Makefile
|
||||
utils/mysqlcl_idb/Makefile
|
||||
utils/querystats/Makefile
|
||||
utils/jemalloc/Makefile
|
||||
utils/windowfunction/Makefile
|
||||
utils/idbdatafile/Makefile
|
||||
utils/idbhdfs/Makefile
|
||||
utils/idbhdfs/hdfs-12/Makefile
|
||||
utils/idbhdfs/hdfs-20/Makefile
|
||||
utils/winport/Makefile
|
||||
utils/thrift/Makefile
|
||||
utils/querytele/Makefile
|
||||
exemgr/Makefile
|
||||
ddlproc/Makefile
|
||||
dbcon/Makefile
|
||||
dbcon/ddlpackage/Makefile
|
||||
dbcon/ddlpackageproc/Makefile
|
||||
dbcon/dmlpackage/Makefile
|
||||
dbcon/dmlpackageproc/Makefile
|
||||
dbcon/execplan/Makefile
|
||||
dbcon/joblist/Makefile
|
||||
dbcon/mysql/Makefile
|
||||
dmlproc/Makefile
|
||||
oam/Makefile
|
||||
oam/etc/Makefile
|
||||
oam/install_scripts/Makefile
|
||||
oam/oamcpp/Makefile
|
||||
oam/post/Makefile
|
||||
oam/cloud/Makefile
|
||||
oamapps/Makefile
|
||||
oamapps/mcsadmin/Makefile
|
||||
oamapps/calpontDB/Makefile
|
||||
oamapps/postConfigure/Makefile
|
||||
oamapps/serverMonitor/Makefile
|
||||
oamapps/sessionWalker/Makefile
|
||||
oamapps/traphandler/Makefile
|
||||
oamapps/sendtrap/Makefile
|
||||
oamapps/calpontSupport/Makefile
|
||||
oamapps/columnstoreDB/Makefile
|
||||
primitives/Makefile
|
||||
primitives/blockcache/Makefile
|
||||
primitives/linux-port/Makefile
|
||||
primitives/primproc/Makefile
|
||||
decomsvr/Makefile
|
||||
procmgr/Makefile
|
||||
procmon/Makefile
|
||||
net-snmp/Makefile
|
||||
snmpd/Makefile
|
||||
snmpd/etc/Makefile
|
||||
snmpd/snmpmanager/Makefile
|
||||
oamapps/columnstoreSupport/Makefile
|
||||
tools/Makefile
|
||||
tools/editem/Makefile
|
||||
tools/cplogger/Makefile
|
||||
tools/clearShm/Makefile
|
||||
tools/setConfig/Makefile
|
||||
tools/getConfig/Makefile
|
||||
tools/dbbuilder/Makefile
|
||||
tools/dbloadxml/Makefile
|
||||
tools/configMgt/Makefile
|
||||
tools/viewtablelock/Makefile
|
||||
tools/cleartablelock/Makefile
|
||||
tools/ddlcleanup/Makefile
|
||||
tools/idbmeminfo/Makefile
|
||||
versioning/Makefile
|
||||
versioning/BRM/Makefile
|
||||
writeengine/Makefile
|
||||
writeengine/shared/Makefile
|
||||
writeengine/index/Makefile
|
||||
writeengine/dictionary/Makefile
|
||||
writeengine/wrapper/Makefile
|
||||
writeengine/xml/Makefile
|
||||
writeengine/bulk/Makefile
|
||||
writeengine/client/Makefile
|
||||
writeengine/splitter/Makefile
|
||||
writeengine/server/Makefile
|
||||
writeengine/redistribute/Makefile
|
||||
])
|
||||
AC_OUTPUT
|
21813
configure.save
21813
configure.save
File diff suppressed because it is too large
Load Diff
@ -1,34 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 861 2009-04-02 14:14:12Z rdempsey $
|
||||
|
||||
SUBDIRS = ddlpackage ddlpackageproc dmlpackage dmlpackageproc execplan joblist mysql
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
for subdir in $(SUBDIRS); \
|
||||
do $(MAKE) -C $$subdir bootstrap || exit $$?; \
|
||||
done
|
||||
|
@ -1,90 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = -version-info 1:0:0 $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libddlpackage.la
|
||||
libddlpackage_la_SOURCES = serialize.cpp \
|
||||
ddl-scan.cpp \
|
||||
ddl-gram.cpp \
|
||||
ddlpkg.cpp \
|
||||
columndef.cpp \
|
||||
createtable.cpp \
|
||||
tabledef.cpp \
|
||||
sqlstatement.cpp \
|
||||
sqlstatementlist.cpp \
|
||||
altertable.cpp \
|
||||
createindex.cpp \
|
||||
dropindex.cpp \
|
||||
droptable.cpp \
|
||||
sqlparser.cpp \
|
||||
markpartition.cpp \
|
||||
restorepartition.cpp \
|
||||
droppartition.cpp
|
||||
include_HEADERS = ddlpkg.h \
|
||||
sqlparser.h
|
||||
|
||||
ddl-gram.h: ddl-gram.cpp
|
||||
|
||||
ddl-gram.cpp: ddl.y
|
||||
$(YACC) -l -v -d -p ddl -o ddl-gram-temp.cpp ddl.y
|
||||
set +e; \
|
||||
if [ -f ddl-gram.cpp ]; \
|
||||
then diff -abBq ddl-gram-temp.cpp ddl-gram.cpp >/dev/null 2>&1; \
|
||||
if [ $$? -ne 0 ]; \
|
||||
then mv -f ddl-gram-temp.cpp ddl-gram.cpp; \
|
||||
else touch ddl-gram.cpp; \
|
||||
fi; \
|
||||
else mv -f ddl-gram-temp.cpp ddl-gram.cpp; \
|
||||
fi
|
||||
set +e; \
|
||||
if [ -f ddl-gram.h ]; \
|
||||
then diff -abBq ddl-gram-temp.hpp ddl-gram.h >/dev/null 2>&1; \
|
||||
if [ $$? -ne 0 ]; \
|
||||
then mv -f ddl-gram-temp.hpp ddl-gram.h; \
|
||||
else touch ddl-gram.h; \
|
||||
fi; \
|
||||
else mv -f ddl-gram-temp.hpp ddl-gram.h; \
|
||||
fi
|
||||
rm -f ddl-gram-temp.cpp ddl-gram-temp.hpp ddl-gram-temp.output
|
||||
|
||||
ddl-scan.cpp: ddl.l
|
||||
$(LEX) -i -L -Pddl -oddl-scan-temp.cpp ddl.l
|
||||
set +e; \
|
||||
if [ -f ddl-scan.cpp ]; \
|
||||
then diff -abBq ddl-scan-temp.cpp ddl-scan.cpp >/dev/null 2>&1; \
|
||||
if [ $$? -ne 0 ]; \
|
||||
then mv -f ddl-scan-temp.cpp ddl-scan.cpp; \
|
||||
else touch ddl-scan.cpp; \
|
||||
fi; \
|
||||
else mv -f ddl-scan-temp.cpp ddl-scan.cpp; \
|
||||
fi
|
||||
rm -f ddl-scan-temp.cpp
|
||||
|
||||
ddl.l: ddl-gram.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: ddl-gram.h ddl-gram.cpp ddl-scan.cpp install-data-am
|
||||
|
@ -1,46 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = -version-info 1:0:0 $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libddlpackageproc.la
|
||||
libddlpackageproc_la_SOURCES = ddlpackageprocessor.cpp \
|
||||
createtableprocessor.cpp \
|
||||
altertableprocessor.cpp \
|
||||
droptableprocessor.cpp \
|
||||
markpartitionprocessor.cpp \
|
||||
restorepartitionprocessor.cpp \
|
||||
droppartitionprocessor.cpp
|
||||
include_HEADERS = ddlpackageprocessor.h \
|
||||
createtableprocessor.h \
|
||||
altertableprocessor.h \
|
||||
droptableprocessor.h \
|
||||
markpartitionprocessor.h \
|
||||
restorepartitionprocessor.h \
|
||||
droppartitionprocessor.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,104 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = -version-info 1:0:0 $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libdmlpackage.la
|
||||
libdmlpackage_la_SOURCES = dml-scan.cpp \
|
||||
dml-gram.cpp \
|
||||
calpontdmlfactory.cpp \
|
||||
calpontdmlpackage.cpp \
|
||||
dmlcolumn.cpp \
|
||||
deletedmlpackage.cpp \
|
||||
dmlobject.cpp \
|
||||
insertdmlpackage.cpp \
|
||||
mysqldmlstatement.cpp \
|
||||
oracledmlstatement.cpp \
|
||||
row.cpp \
|
||||
dmltable.cpp \
|
||||
updatedmlpackage.cpp \
|
||||
vendordmlstatement.cpp \
|
||||
commanddmlpackage.cpp \
|
||||
dmlpkg.cpp \
|
||||
dmlparser.cpp
|
||||
include_HEADERS = calpontdmlfactory.h \
|
||||
calpontdmlpackage.h \
|
||||
dmlcolumn.h \
|
||||
deletedmlpackage.h \
|
||||
dmlobject.h \
|
||||
dmlpackage.h \
|
||||
insertdmlpackage.h \
|
||||
mysqldmlstatement.h \
|
||||
oracledmlstatement.h \
|
||||
row.h \
|
||||
dmltable.h \
|
||||
updatedmlpackage.h \
|
||||
vendordmlstatement.h \
|
||||
commanddmlpackage.h \
|
||||
dmlpkg.h \
|
||||
dmlparser.h
|
||||
|
||||
dml-gram.h: dml-gram.cpp
|
||||
|
||||
dml-gram.cpp: dml.y
|
||||
$(YACC) -l -v -d -p dml -o dml-gram-temp.cpp dml.y
|
||||
set +e; \
|
||||
if [ -f dml-gram.cpp ]; \
|
||||
then diff -abBq dml-gram-temp.cpp dml-gram.cpp >/dev/null 2>&1; \
|
||||
if [ $$? -ne 0 ]; \
|
||||
then mv -f dml-gram-temp.cpp dml-gram.cpp; \
|
||||
else touch dml-gram.cpp; \
|
||||
fi; \
|
||||
else mv -f dml-gram-temp.cpp dml-gram.cpp; \
|
||||
fi
|
||||
set +e; \
|
||||
if [ -f dml-gram.h ]; \
|
||||
then diff -abBq dml-gram-temp.hpp dml-gram.h >/dev/null 2>&1; \
|
||||
if [ $$? -ne 0 ]; \
|
||||
then mv -f dml-gram-temp.hpp dml-gram.h; \
|
||||
else touch dml-gram.h; \
|
||||
fi; \
|
||||
else mv -f dml-gram-temp.hpp dml-gram.h; \
|
||||
fi
|
||||
rm -f dml-gram-temp.cpp dml-gram-temp.hpp dml-gram-temp.output
|
||||
|
||||
dml-scan.cpp: dml.l
|
||||
$(LEX) -i -L -Pdml -odml-scan-temp.cpp dml.l
|
||||
set +e; \
|
||||
if [ -f dml-scan.cpp ]; \
|
||||
then diff -abBq dml-scan-temp.cpp dml-scan.cpp >/dev/null 2>&1; \
|
||||
if [ $$? -ne 0 ]; \
|
||||
then mv -f dml-scan-temp.cpp dml-scan.cpp; \
|
||||
else touch dml-scan.cpp; \
|
||||
fi; \
|
||||
else mv -f dml-scan-temp.cpp dml-scan.cpp; \
|
||||
fi
|
||||
rm -f dml-scan-temp.cpp
|
||||
|
||||
dml.l: dml-gram.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: dml-gram.h dml-gram.cpp dml-scan.cpp install-data-am
|
||||
|
@ -1,46 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = -version-info 1:0:0 $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libdmlpackageproc.la
|
||||
libdmlpackageproc_la_SOURCES = deletepackageprocessor.cpp \
|
||||
dmlpackageprocessor.cpp \
|
||||
insertpackageprocessor.cpp \
|
||||
updatepackageprocessor.cpp \
|
||||
commandpackageprocessor.cpp \
|
||||
autoincrementdata.cpp \
|
||||
tablelockdata.cpp
|
||||
include_HEADERS = deletepackageprocessor.h \
|
||||
dmlpackageprocessor.h \
|
||||
insertpackageprocessor.h \
|
||||
updatepackageprocessor.h \
|
||||
commandpackageprocessor.h\
|
||||
autoincrementdata.h \
|
||||
tablelockdata.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,115 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = -version-info 1:0:0 $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libexecplan.la
|
||||
libexecplan_la_SOURCES = calpontsystemcatalog.cpp \
|
||||
aggregatecolumn.cpp \
|
||||
arithmeticcolumn.cpp \
|
||||
arithmeticoperator.cpp \
|
||||
calpontexecutionplan.cpp \
|
||||
calpontexecutionplanfactory.cpp \
|
||||
calpontselectexecutionplan.cpp \
|
||||
clientrotator.cpp \
|
||||
constantcolumn.cpp \
|
||||
constantfilter.cpp \
|
||||
existsfilter.cpp \
|
||||
expressionparser.cpp \
|
||||
filter.cpp \
|
||||
functioncolumn.cpp \
|
||||
groupconcatcolumn.cpp \
|
||||
intervalcolumn.cpp \
|
||||
logicoperator.cpp \
|
||||
mysqlexecutionplan.cpp \
|
||||
objectidmanager.cpp \
|
||||
objectreader.cpp \
|
||||
operator.cpp \
|
||||
oracleexecutionplan.cpp \
|
||||
outerjoinonfilter.cpp \
|
||||
predicateoperator.cpp \
|
||||
pseudocolumn.cpp \
|
||||
range.cpp \
|
||||
returnedcolumn.cpp \
|
||||
rowcolumn.cpp \
|
||||
selectfilter.cpp \
|
||||
sessionmanager.cpp \
|
||||
simplecolumn.cpp \
|
||||
simplefilter.cpp \
|
||||
simplescalarfilter.cpp \
|
||||
treenode.cpp \
|
||||
treenodeimpl.cpp \
|
||||
vendorexecutionplan.cpp \
|
||||
windowfunctioncolumn.cpp
|
||||
|
||||
include_HEADERS = aggregatecolumn.h \
|
||||
arithmeticcolumn.h \
|
||||
arithmeticoperator.h \
|
||||
blocksize.h \
|
||||
calpontexecutionplanfactory.h \
|
||||
calpontexecutionplan.h \
|
||||
calpontsystemcatalog.h \
|
||||
calpontselectexecutionplan.h \
|
||||
clientrotator.h \
|
||||
columnresult.h \
|
||||
constantcolumn.h \
|
||||
constantfilter.h \
|
||||
existsfilter.h \
|
||||
expressionparser.h \
|
||||
exp_templates.h \
|
||||
filter.h \
|
||||
functioncolumn.h \
|
||||
groupconcatcolumn.h \
|
||||
intervalcolumn.h \
|
||||
logicoperator.h \
|
||||
mysqlexecutionplan.h \
|
||||
njlcolumnresult.h \
|
||||
objectidmanager.h \
|
||||
objectreader.h \
|
||||
operator.h \
|
||||
oracleexecutionplan.h \
|
||||
outerjoinonfilter.h \
|
||||
parsetree.h \
|
||||
predicateoperator.h \
|
||||
pseudocolumn.h \
|
||||
range.h \
|
||||
returnedcolumn.h \
|
||||
rowcolumn.h \
|
||||
selectfilter.h \
|
||||
sessionmanager.h \
|
||||
simplecolumn.h \
|
||||
simplecolumn_decimal.h \
|
||||
simplecolumn_int.h \
|
||||
simplecolumn_uint.h \
|
||||
simplefilter.h \
|
||||
simplescalarfilter.h \
|
||||
treenode.h \
|
||||
treenodeimpl.h \
|
||||
vendorexecutionplan.h \
|
||||
windowfunctioncolumn.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,114 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = -version-info 1:0:0 $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libjoblist.la
|
||||
libjoblist_la_CPPFLAGS = -I../../mysql/include -I../../mysql/sql -I../../mysql/regex $(AM_CPPFLAGS)
|
||||
libjoblist_la_CXXFLAGS = $(march_flags) $(AM_CXXFLAGS)
|
||||
libjoblist_la_SOURCES = \
|
||||
anydatalist.cpp \
|
||||
batchprimitiveprocessor-jl.cpp \
|
||||
columncommand-jl.cpp \
|
||||
command-jl.cpp \
|
||||
crossenginestep.cpp \
|
||||
dictstep-jl.cpp \
|
||||
diskjoinstep.cpp \
|
||||
distributedenginecomm.cpp \
|
||||
elementtype.cpp \
|
||||
expressionstep.cpp \
|
||||
filtercommand-jl.cpp \
|
||||
filterstep.cpp \
|
||||
groupconcat.cpp \
|
||||
jl_logger.cpp \
|
||||
jlf_common.cpp \
|
||||
jlf_execplantojoblist.cpp \
|
||||
jlf_graphics.cpp \
|
||||
jlf_tuplejoblist.cpp \
|
||||
jlf_subquery.cpp \
|
||||
joblist.cpp \
|
||||
joblistfactory.cpp \
|
||||
jobstep.cpp \
|
||||
jobstepassociation.cpp \
|
||||
lbidlist.cpp \
|
||||
limitedorderby.cpp \
|
||||
passthrucommand-jl.cpp \
|
||||
passthrustep.cpp \
|
||||
pcolscan.cpp \
|
||||
pcolstep.cpp \
|
||||
pdictionary.cpp \
|
||||
pdictionaryscan.cpp \
|
||||
primitivemsg.cpp \
|
||||
pseudocc-jl.cpp \
|
||||
resourcedistributor.cpp \
|
||||
resourcemanager.cpp \
|
||||
rowestimator.cpp \
|
||||
rtscommand-jl.cpp \
|
||||
subquerystep.cpp \
|
||||
subquerytransformer.cpp \
|
||||
tablecolumn.cpp \
|
||||
timestamp.cpp \
|
||||
tuple-bps.cpp \
|
||||
tupleaggregatestep.cpp \
|
||||
tupleannexstep.cpp \
|
||||
tupleconstantstep.cpp \
|
||||
tuplehashjoin.cpp \
|
||||
tuplehavingstep.cpp \
|
||||
tupleunion.cpp \
|
||||
unique32generator.cpp \
|
||||
virtualtable.cpp \
|
||||
windowfunctionstep.cpp
|
||||
|
||||
include_HEADERS = \
|
||||
bpp-jl.h \
|
||||
datalist.h \
|
||||
datalistimpl.h \
|
||||
distributedenginecomm.h \
|
||||
elementcompression.h \
|
||||
elementtype.h \
|
||||
errorinfo.h \
|
||||
fifo.h \
|
||||
groupconcat.h \
|
||||
jl_logger.h \
|
||||
joblist.h \
|
||||
joblistfactory.h \
|
||||
joblisttypes.h \
|
||||
jobstep.h \
|
||||
lbidlist.h \
|
||||
limitedorderby.h \
|
||||
primitivemsg.h \
|
||||
resourcedistributor.h \
|
||||
resourcemanager.h \
|
||||
rtscommand-jl.h \
|
||||
tablecolumn.h \
|
||||
threadsafequeue.h \
|
||||
timeset.h \
|
||||
timestamp.h \
|
||||
unique32generator.h \
|
||||
windowfunctionstep.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,43 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libcalmysql.la
|
||||
libcalmysql_la_SOURCES = ha_calpont.cpp ha_calpont_impl.cpp ha_calpont_dml.cpp ha_calpont_ddl.cpp ha_calpont_execplan.cpp ha_scalar_sub.cpp ha_in_sub.cpp ha_exists_sub.cpp ha_from_sub.cpp ha_select_sub.cpp ha_view.cpp sm.cpp ha_window_function.cpp ha_calpont_partition.cpp ha_pseudocolumn.cpp
|
||||
libcalmysql_la_LDFLAGS = -version-info 1:0:0 $(idb_common_ldflags) $(idb_common_libs) $(idb_write_libs) $(AM_LDFLAGS)
|
||||
libcalmysql_la_CPPFLAGS = -I/usr/include/libxml2 -I../../../mysql/include -I../../../mysql/sql -I../../../mysql/regex -DMYSQL_DYNAMIC_PLUGIN $(AM_CPPFLAGS)
|
||||
include_HEADERS = idb_mysql.h
|
||||
|
||||
dist_mysql_DATA = syscatalog_mysql.sql dumpcat_mysql.sql calsetuserpriority.sql calremoveuserpriority.sql calshowprocesslist.sql my.cnf
|
||||
dist_mysql_SCRIPTS = install_calpont_mysql.sh mysql-Columnstore dumpcat.pl
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
||||
libcalmysql_la-ha_calpont.lo: ha_calpont.cpp
|
||||
if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcalmysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -fno-rtti -fno-implicit-templates -MT libcalmysql_la-ha_calpont.lo -MD -MP -MF "$(DEPDIR)/libcalmysql_la-ha_calpont.Tpo" -c -o libcalmysql_la-ha_calpont.lo `test -f 'ha_calpont.cpp' || echo '$(srcdir)/'`ha_calpont.cpp; \
|
||||
then mv -f "$(DEPDIR)/libcalmysql_la-ha_calpont.Tpo" "$(DEPDIR)/libcalmysql_la-ha_calpont.Plo"; else rm -f "$(DEPDIR)/libcalmysql_la-ha_calpont.Tpo"; exit 1; fi
|
||||
|
@ -1,194 +0,0 @@
|
||||
# Copyright (C) 2000-2006 MySQL AB
|
||||
#
|
||||
# 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; version 2 of the License.
|
||||
#
|
||||
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
#called from the top level Makefile
|
||||
|
||||
MYSQLDATAdir = $(localstatedir)
|
||||
MYSQLSHAREdir = $(pkgdatadir)
|
||||
MYSQLBASEdir= $(prefix)
|
||||
MYSQLLIBdir= $(pkglibdir)
|
||||
pkgplugindir = $(pkglibdir)/plugin
|
||||
INCLUDES = @ZLIB_INCLUDES@ \
|
||||
-I$(top_builddir)/include -I$(top_srcdir)/include \
|
||||
-I$(top_srcdir)/regex -I$(srcdir) $(openssl_includes)
|
||||
WRAPLIBS= @WRAPLIBS@
|
||||
SUBDIRS = share
|
||||
libexec_PROGRAMS = mysqld
|
||||
EXTRA_PROGRAMS = gen_lex_hash
|
||||
bin_PROGRAMS = mysql_tzinfo_to_sql
|
||||
|
||||
noinst_LTLIBRARIES= libndb.la \
|
||||
udf_example.la
|
||||
|
||||
SUPPORTING_LIBS = $(top_builddir)/vio/libvio.a \
|
||||
$(top_builddir)/mysys/libmysys.a \
|
||||
$(top_builddir)/dbug/libdbug.a \
|
||||
$(top_builddir)/regex/libregex.a \
|
||||
$(top_builddir)/strings/libmystrings.a
|
||||
mysqld_DEPENDENCIES= @mysql_plugin_libs@ $(SUPPORTING_LIBS) libndb.la
|
||||
LDADD = $(SUPPORTING_LIBS) @ZLIB_LIBS@ @NDB_SCI_LIBS@
|
||||
mysqld_LDADD = libndb.la \
|
||||
@MYSQLD_EXTRA_LDFLAGS@ \
|
||||
@pstack_libs@ \
|
||||
@mysql_plugin_libs@ \
|
||||
$(LDADD) $(CXXLDFLAGS) $(WRAPLIBS) @LIBDL@ \
|
||||
$(yassl_libs) $(openssl_libs) @MYSQLD_EXTRA_LIBS@
|
||||
|
||||
noinst_HEADERS = item.h item_func.h item_sum.h item_cmpfunc.h \
|
||||
item_strfunc.h item_timefunc.h \
|
||||
item_xmlfunc.h item_window_function.h \
|
||||
item_create.h item_subselect.h item_row.h \
|
||||
mysql_priv.h item_geofunc.h sql_bitmap.h \
|
||||
procedure.h sql_class.h sql_lex.h sql_list.h \
|
||||
sql_map.h sql_string.h unireg.h \
|
||||
sql_error.h field.h handler.h mysqld_suffix.h \
|
||||
sql_profile.h \
|
||||
ha_ndbcluster.h ha_ndbcluster_cond.h \
|
||||
ha_ndbcluster_binlog.h ha_ndbcluster_tables.h \
|
||||
ha_partition.h rpl_constants.h \
|
||||
opt_range.h protocol.h rpl_tblmap.h rpl_utility.h \
|
||||
rpl_reporting.h \
|
||||
log.h sql_show.h rpl_rli.h rpl_mi.h \
|
||||
sql_select.h structs.h table.h sql_udf.h hash_filo.h \
|
||||
lex.h lex_symbol.h sql_acl.h sql_crypt.h \
|
||||
sql_repl.h slave.h rpl_filter.h rpl_injector.h \
|
||||
log_event.h rpl_record.h \
|
||||
log_event_old.h rpl_record_old.h \
|
||||
sql_sort.h sql_cache.h set_var.h \
|
||||
spatial.h gstream.h client_settings.h tzfile.h \
|
||||
tztime.h my_decimal.h\
|
||||
sp_head.h sp_pcontext.h sp_rcontext.h sp.h sp_cache.h \
|
||||
parse_file.h sql_view.h sql_trigger.h \
|
||||
sql_array.h sql_cursor.h events.h scheduler.h \
|
||||
event_db_repository.h event_queue.h \
|
||||
sql_plugin.h authors.h event_parse_data.h \
|
||||
event_data_objects.h event_scheduler.h \
|
||||
sql_partition.h partition_info.h partition_element.h \
|
||||
contributors.h sql_servers.h \
|
||||
item_create_window_function.h \
|
||||
errorids.h
|
||||
|
||||
mysqld_SOURCES = sql_lex.cc sql_handler.cc sql_partition.cc \
|
||||
item.cc item_sum.cc item_buff.cc item_func.cc item_window_function.cc\
|
||||
item_cmpfunc.cc item_strfunc.cc item_timefunc.cc\
|
||||
thr_malloc.cc item_create.cc item_create_window_function.cc item_subselect.cc \
|
||||
item_row.cc item_geofunc.cc item_xmlfunc.cc \
|
||||
field.cc strfunc.cc key.cc sql_class.cc sql_list.cc \
|
||||
net_serv.cc protocol.cc sql_state.c \
|
||||
lock.cc my_lock.c \
|
||||
sql_string.cc sql_manager.cc sql_map.cc \
|
||||
mysqld.cc password.c hash_filo.cc hostname.cc \
|
||||
sql_connect.cc scheduler.cc sql_parse.cc \
|
||||
set_var.cc sql_yacc.yy \
|
||||
sql_base.cc table.cc sql_select.cc sql_insert.cc \
|
||||
sql_profile.cc \
|
||||
sql_prepare.cc sql_error.cc sql_locale.cc \
|
||||
sql_update.cc sql_delete.cc uniques.cc sql_do.cc \
|
||||
procedure.cc sql_test.cc \
|
||||
log.cc init.cc derror.cc sql_acl.cc \
|
||||
unireg.cc des_key_file.cc \
|
||||
log_event.cc rpl_record.cc \
|
||||
log_event_old.cc rpl_record_old.cc \
|
||||
discover.cc time.cc opt_range.cc opt_sum.cc \
|
||||
records.cc filesort.cc handler.cc \
|
||||
ha_partition.cc \
|
||||
sql_db.cc sql_table.cc sql_rename.cc sql_crypt.cc \
|
||||
sql_load.cc mf_iocache.cc field_conv.cc sql_show.cc \
|
||||
sql_udf.cc sql_analyse.cc sql_analyse.h sql_cache.cc \
|
||||
slave.cc sql_repl.cc rpl_filter.cc rpl_tblmap.cc \
|
||||
rpl_utility.cc rpl_injector.cc rpl_rli.cc rpl_mi.cc \
|
||||
rpl_reporting.cc \
|
||||
sql_union.cc sql_derived.cc \
|
||||
sql_client.cc \
|
||||
repl_failsafe.h repl_failsafe.cc \
|
||||
sql_olap.cc sql_view.cc \
|
||||
gstream.cc spatial.cc sql_help.cc sql_cursor.cc \
|
||||
tztime.cc my_decimal.cc\
|
||||
sp_head.cc sp_pcontext.cc sp_rcontext.cc sp.cc \
|
||||
sp_cache.cc parse_file.cc sql_trigger.cc \
|
||||
event_scheduler.cc event_data_objects.cc \
|
||||
event_queue.cc event_db_repository.cc events.cc \
|
||||
sql_plugin.cc sql_binlog.cc \
|
||||
sql_builtin.cc sql_tablespace.cc partition_info.cc \
|
||||
sql_servers.cc event_parse_data.cc
|
||||
|
||||
nodist_mysqld_SOURCES = mini_client_errors.c pack.c client.c my_time.c my_user.c
|
||||
|
||||
libndb_la_CPPFLAGS= @ndbcluster_includes@
|
||||
libndb_la_SOURCES= ha_ndbcluster.cc \
|
||||
ha_ndbcluster_binlog.cc \
|
||||
ha_ndbcluster_cond.cc
|
||||
|
||||
gen_lex_hash_SOURCES = gen_lex_hash.cc
|
||||
gen_lex_hash_LDFLAGS = @NOINST_LDFLAGS@
|
||||
|
||||
mysql_tzinfo_to_sql_SOURCES = tztime.cc
|
||||
mysql_tzinfo_to_sql_CXXFLAGS= -DTZINFO2SQL
|
||||
|
||||
DEFS = -DMYSQL_SERVER \
|
||||
-DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" \
|
||||
-DMYSQL_DATADIR="\"$(MYSQLDATAdir)\"" \
|
||||
-DSHAREDIR="\"$(MYSQLSHAREdir)\"" \
|
||||
-DPLUGINDIR="\"$(pkgplugindir)\"" \
|
||||
-DHAVE_EVENT_SCHEDULER \
|
||||
@DEFS@
|
||||
|
||||
BUILT_MAINT_SRC = sql_yacc.cc sql_yacc.h
|
||||
BUILT_SOURCES = $(BUILT_MAINT_SRC) lex_hash.h link_sources
|
||||
EXTRA_DIST = udf_example.c udf_example.def $(BUILT_MAINT_SRC) \
|
||||
nt_servc.cc nt_servc.h \
|
||||
message.mc message.h message.rc MSG00001.bin \
|
||||
CMakeLists.txt
|
||||
|
||||
CLEANFILES = lex_hash.h sql_yacc.output link_sources
|
||||
DISTCLEANFILES = $(EXTRA_PROGRAMS)
|
||||
MAINTAINERCLEANFILES = $(BUILT_MAINT_SRC)
|
||||
AM_YFLAGS = -d --verbose
|
||||
|
||||
# These are listed in 'nodist_mysqld_SOURCES'
|
||||
link_sources:
|
||||
rm -f mini_client_errors.c
|
||||
@LN_CP_F@ $(top_srcdir)/libmysql/errmsg.c mini_client_errors.c
|
||||
rm -f pack.c
|
||||
@LN_CP_F@ $(top_srcdir)/sql-common/pack.c pack.c
|
||||
rm -f client.c
|
||||
@LN_CP_F@ $(top_srcdir)/sql-common/client.c client.c
|
||||
rm -f my_time.c
|
||||
@LN_CP_F@ $(top_srcdir)/sql-common/my_time.c my_time.c
|
||||
rm -f my_user.c
|
||||
@LN_CP_F@ $(top_srcdir)/sql-common/my_user.c my_user.c
|
||||
echo timestamp > link_sources
|
||||
|
||||
# This generates lex_hash.h
|
||||
# NOTE Built sources should depend on their sources not the tool
|
||||
# this avoid the rebuild of the built files in a source dist
|
||||
lex_hash.h: gen_lex_hash.cc lex.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT)
|
||||
./gen_lex_hash$(EXEEXT) > $@-t
|
||||
$(MV) $@-t $@
|
||||
|
||||
# For testing of udf_example.so
|
||||
udf_example_la_SOURCES= udf_example.c
|
||||
udf_example_la_LDFLAGS= -module -rpath $(pkglibdir)
|
||||
|
||||
# We might have some stuff not built in this build, but that we want to install
|
||||
install-exec-hook:
|
||||
$(mkinstalldirs) $(DESTDIR)$(libexecdir) $(DESTDIR)$(pkglibdir)
|
||||
test ! -x mysqld-debug$(EXEEXT) || $(INSTALL_PROGRAM) mysqld-debug$(EXEEXT) $(DESTDIR)$(libexecdir)
|
||||
test ! -f mysqld-debug.sym.gz || $(INSTALL_DATA) mysqld-debug.sym.gz $(DESTDIR)$(pkglibdir)
|
||||
test ! -f mysqld.sym.gz || $(INSTALL_DATA) mysqld.sym.gz $(DESTDIR)$(pkglibdir)
|
||||
|
||||
# Don't update the files from bitkeeper
|
||||
%::SCCS/s.%
|
@ -1,3 +0,0 @@
|
||||
./my.cnf
|
||||
./mysql-Columnstore
|
||||
./install_calpont_mysql.sh
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 665 2012-04-04 18:19:21Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = DDLProc
|
||||
DDLProc_SOURCES = ddlproc.cpp ddlprocessor.cpp
|
||||
DDLProc_LDFLAGS = $(idb_common_ldflags) $(idb_write_libs) -lthreadpool $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,40 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id$
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = DecomSvr
|
||||
DecomSvr_SOURCES = quicklz.c server.cpp
|
||||
DecomSvr_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
DecomSvr_LDFLAGS = $(idb_common_ldflags) $(AM_LDFLAGS) -lpthread -lrt -lboost_system -lboost_filesystem -lboost_thread -lboost_regex
|
||||
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 197 2009-04-03 17:41:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = DMLProc
|
||||
DMLProc_SOURCES = dmlproc.cpp dmlprocessor.cpp dmlresultbuffer.cpp batchinsertprocessor.cpp
|
||||
DMLProc_LDFLAGS = $(idb_common_ldflags) $(idb_write_libs) ${abs_top_builddir}/utils/threadpool/libthreadpool.la ${abs_top_builddir}/utils/ddlcleanup/libddlcleanuputil.la ${abs_top_builddir}/utils/batchloader/libbatchloader.la $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 808 2012-04-04 18:19:10Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ExeMgr
|
||||
ExeMgr_SOURCES = main.cpp activestatementcounter.cpp femsghandler.cpp
|
||||
ExeMgr_LDFLAGS = $(idb_common_ldflags) $(idb_exec_libs) -lcacheutils -lthreadpool $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,34 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 878 2009-04-03 20:34:32Z rdempsey $
|
||||
|
||||
SUBDIRS = etc post oamcpp install_scripts cloud
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
for subdir in $(SUBDIRS); \
|
||||
do $(MAKE) -C $$subdir bootstrap || exit $$?; \
|
||||
done
|
||||
|
@ -1,29 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
bin_SCRIPTS = IDBInstanceCmds.sh IDBVolumeCmds.sh
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,29 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
dist_sysconf_DATA = AlarmConfig.xml Columnstore.xml ProcessConfig.xml ConsoleCmds.xml Columnstore.xml.singleserver ProcessConfig.xml.singleserver
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,102 +0,0 @@
|
||||
<?xml version = '1.0'?>
|
||||
<kdevelop>
|
||||
<general>
|
||||
<author/>
|
||||
<email>dhill@srvhill04.calpont.com</email>
|
||||
<version>$VERSION$</version>
|
||||
<projectmanagement>KDevCustomProject</projectmanagement>
|
||||
<primarylanguage>C</primarylanguage>
|
||||
<ignoreparts/>
|
||||
</general>
|
||||
<kdevcustomproject>
|
||||
<run>
|
||||
<mainprogram>etc</mainprogram>
|
||||
<directoryradio>executable</directoryradio>
|
||||
</run>
|
||||
</kdevcustomproject>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell/>
|
||||
</general>
|
||||
</kdevdebugger>
|
||||
<kdevdoctreeview>
|
||||
<ignoretocs>
|
||||
<toc>ada</toc>
|
||||
<toc>ada_bugs_gcc</toc>
|
||||
<toc>bash</toc>
|
||||
<toc>bash_bugs</toc>
|
||||
<toc>clanlib</toc>
|
||||
<toc>fortran_bugs_gcc</toc>
|
||||
<toc>gnome1</toc>
|
||||
<toc>gnustep</toc>
|
||||
<toc>gtk</toc>
|
||||
<toc>gtk_bugs</toc>
|
||||
<toc>haskell</toc>
|
||||
<toc>haskell_bugs_ghc</toc>
|
||||
<toc>java_bugs_gcc</toc>
|
||||
<toc>java_bugs_sun</toc>
|
||||
<toc>kde2book</toc>
|
||||
<toc>libstdc++</toc>
|
||||
<toc>opengl</toc>
|
||||
<toc>pascal_bugs_fp</toc>
|
||||
<toc>php</toc>
|
||||
<toc>php_bugs</toc>
|
||||
<toc>perl</toc>
|
||||
<toc>perl_bugs</toc>
|
||||
<toc>python</toc>
|
||||
<toc>python_bugs</toc>
|
||||
<toc>qt-kdev3</toc>
|
||||
<toc>ruby</toc>
|
||||
<toc>ruby_bugs</toc>
|
||||
<toc>sdl</toc>
|
||||
<toc>stl</toc>
|
||||
<toc>sw</toc>
|
||||
<toc>w3c-dom-level2-html</toc>
|
||||
<toc>w3c-svg</toc>
|
||||
<toc>w3c-uaag10</toc>
|
||||
<toc>wxwidgets_bugs</toc>
|
||||
</ignoretocs>
|
||||
<ignoreqt_xml>
|
||||
<toc>Guide to the Qt Translation Tools</toc>
|
||||
<toc>Qt Assistant Manual</toc>
|
||||
<toc>Qt Designer Manual</toc>
|
||||
<toc>Qt Reference Documentation</toc>
|
||||
<toc>qmake User Guide</toc>
|
||||
</ignoreqt_xml>
|
||||
<ignoredoxygen>
|
||||
<toc>KDE Libraries (Doxygen)</toc>
|
||||
</ignoredoxygen>
|
||||
</kdevdoctreeview>
|
||||
<kdevfilecreate>
|
||||
<filetypes/>
|
||||
<useglobaltypes>
|
||||
<type ext="c" />
|
||||
<type ext="h" />
|
||||
</useglobaltypes>
|
||||
</kdevfilecreate>
|
||||
<kdevcppsupport>
|
||||
<references/>
|
||||
<codecompletion>
|
||||
<includeGlobalFunctions>true</includeGlobalFunctions>
|
||||
<includeTypes>true</includeTypes>
|
||||
<includeEnums>true</includeEnums>
|
||||
<includeTypedefs>false</includeTypedefs>
|
||||
<automaticCodeCompletion>true</automaticCodeCompletion>
|
||||
<automaticArgumentsHint>true</automaticArgumentsHint>
|
||||
<automaticHeaderCompletion>true</automaticHeaderCompletion>
|
||||
<codeCompletionDelay>250</codeCompletionDelay>
|
||||
<argumentsHintDelay>400</argumentsHintDelay>
|
||||
<headerCompletionDelay>250</headerCompletionDelay>
|
||||
</codecompletion>
|
||||
</kdevcppsupport>
|
||||
<kdevfileview>
|
||||
<groups>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
<hidenonlocation>false</hidenonlocation>
|
||||
</groups>
|
||||
<tree>
|
||||
<hidepatterns>*.o,*.lo,CVS</hidepatterns>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
</tree>
|
||||
</kdevfileview>
|
||||
</kdevelop>
|
@ -1,3 +0,0 @@
|
||||
# KDevelop Custom Project File List
|
||||
Makefile.am
|
||||
Makefile.in
|
Binary file not shown.
@ -1,26 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE KDevPrjSession>
|
||||
<KDevPrjSession>
|
||||
<DocsAndViews NumberOfDocuments="2" >
|
||||
<Doc0 NumberOfViews="1" URL="file:///home/dhill/mariadb-columnstore-engine/oam/etc/Columnstore.xml" >
|
||||
<View0 line="543" Type="Source" />
|
||||
</Doc0>
|
||||
<Doc1 NumberOfViews="1" URL="file:///home/dhill/mariadb-columnstore-engine/oam/etc/Columnstore.xml.singleserver" >
|
||||
<View0 line="516" Type="Source" />
|
||||
</Doc1>
|
||||
</DocsAndViews>
|
||||
<pluginList>
|
||||
<kdevdebugger>
|
||||
<breakpointList/>
|
||||
</kdevdebugger>
|
||||
<kdevbookmarks>
|
||||
<bookmarks/>
|
||||
</kdevbookmarks>
|
||||
<kdevvalgrind>
|
||||
<executable path="" params="" />
|
||||
<valgrind path="" params="" />
|
||||
<calltree path="" params="" />
|
||||
<kcachegrind path="" />
|
||||
</kdevvalgrind>
|
||||
</pluginList>
|
||||
</KDevPrjSession>
|
@ -1,42 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
bin_SCRIPTS = post-install pre-uninstall remote_command.sh \
|
||||
columnstoreLogRotate transactionLog transactionLogArchiver.sh \
|
||||
module_installer.sh startupTests.sh \
|
||||
user_installer.sh performance_installer.sh \
|
||||
remote_scp_get.sh columnstoreAlias run.sh upgrade-columnstore.sh \
|
||||
post-mysql-install post-mysqld-install binary_installer.sh \
|
||||
os_check.sh columnstore columnstoreSyslog columnstoreSyslog-ng syslogSetup.sh \
|
||||
remote_scp_put.sh columnstoreUninstall.sh columnstore.def \
|
||||
remotessh.exp rsync.sh remote_command_verify.sh \
|
||||
columnstore.conf columnstoreSyslog7 master-rep-columnstore.sh \
|
||||
slave-rep-columnstore.sh disable-rep-columnstore.sh \
|
||||
myCnf-include-args.text myCnf-exclude-args.text columnstore.service
|
||||
|
||||
dist_local_DATA = module
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,606 +0,0 @@
|
||||
# Makefile.in generated by automake 1.15 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
subdir = oam/install_scripts
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(dist_local_DATA) \
|
||||
$(am__DIST_COMMON)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(localdir)"
|
||||
SCRIPTS = $(bin_SCRIPTS)
|
||||
AM_V_P = $(am__v_P_@AM_V@)
|
||||
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
||||
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_@AM_V@)
|
||||
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
DATA = $(dist_local_DATA)
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
||||
AR = @AR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
POW_LIB = @POW_LIB@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
XML2_CONFIG = @XML2_CONFIG@
|
||||
XML_CPPFLAGS = @XML_CPPFLAGS@
|
||||
XML_LIBS = @XML_LIBS@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
etcdir = @etcdir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
idb_brm_libs = @idb_brm_libs@
|
||||
idb_cflags = @idb_cflags@
|
||||
idb_common_includes = @idb_common_includes@
|
||||
idb_common_ldflags = @idb_common_ldflags@
|
||||
idb_common_libs = @idb_common_libs@
|
||||
idb_cppflags = @idb_cppflags@
|
||||
idb_cxxflags = @idb_cxxflags@
|
||||
idb_exec_libs = @idb_exec_libs@
|
||||
idb_ldflags = @idb_ldflags@
|
||||
idb_oam_libs = @idb_oam_libs@
|
||||
idb_write_libs = @idb_write_libs@
|
||||
idbinstall = @idbinstall@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localdir = @localdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
march_flags = @march_flags@
|
||||
mibdir = @mibdir@
|
||||
mkdir_p = @mkdir_p@
|
||||
mysqldir = @mysqldir@
|
||||
netsnmp_libs = @netsnmp_libs@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
postdir = @postdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
runstatedir = @runstatedir@
|
||||
sbindir = @sbindir@
|
||||
sharedir = @sharedir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
toolsdir = @toolsdir@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
bin_SCRIPTS = post-install pre-uninstall remote_command.sh \
|
||||
columnstoreLogRotate transactionLog transactionLogArchiver.sh \
|
||||
module_installer.sh startupTests.sh \
|
||||
user_installer.sh performance_installer.sh \
|
||||
remote_scp_get.sh columnstoreAlias run.sh upgrade-columnstore.sh \
|
||||
post-mysql-install post-mysqld-install binary_installer.sh \
|
||||
os_check.sh columnstore columnstoreSyslog columnstoreSyslog-ng syslogSetup.sh \
|
||||
remote_scp_put.sh columnstoreUninstall.sh columnstore.def \
|
||||
remotessh.exp rsync.sh remote_command_verify.sh \
|
||||
columnstore.conf columnstoreSyslog7 master-rep-columnstore.sh \
|
||||
slave-rep-columnstore.sh disable-rep-columnstore.sh \
|
||||
myCnf-include-args.text myCnf-exclude-args.text columnstore.service
|
||||
|
||||
dist_local_DATA = module
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu oam/install_scripts/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu oam/install_scripts/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-binSCRIPTS: $(bin_SCRIPTS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
|
||||
done | \
|
||||
sed -e 'p;s,.*/,,;n' \
|
||||
-e 'h;s|.*|.|' \
|
||||
-e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
|
||||
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
|
||||
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
||||
if ($$2 == $$4) { files[d] = files[d] " " $$1; \
|
||||
if (++n[d] == $(am__install_max)) { \
|
||||
print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
|
||||
else { print "f", d "/" $$4, $$1 } } \
|
||||
END { for (d in files) print "f", d, files[d] }' | \
|
||||
while read type dir files; do \
|
||||
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
||||
$(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
||||
} \
|
||||
; done
|
||||
|
||||
uninstall-binSCRIPTS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
|
||||
files=`for p in $$list; do echo "$$p"; done | \
|
||||
sed -e 's,.*/,,;$(transform)'`; \
|
||||
dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir)
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-dist_localDATA: $(dist_local_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(dist_local_DATA)'; test -n "$(localdir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(localdir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(localdir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(localdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(localdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-dist_localDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dist_local_DATA)'; test -n "$(localdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
dir='$(DESTDIR)$(localdir)'; $(am__uninstall_files_from_dir)
|
||||
tags TAGS:
|
||||
|
||||
ctags CTAGS:
|
||||
|
||||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(SCRIPTS) $(DATA)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(localdir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-dist_localDATA
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-binSCRIPTS
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-binSCRIPTS uninstall-dist_localDATA
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
cscopelist-am ctags-am distclean distclean-generic \
|
||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-binSCRIPTS install-data \
|
||||
install-data-am install-dist_localDATA install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags-am uninstall uninstall-am uninstall-binSCRIPTS \
|
||||
uninstall-dist_localDATA
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,102 +0,0 @@
|
||||
<?xml version = '1.0'?>
|
||||
<kdevelop>
|
||||
<general>
|
||||
<author/>
|
||||
<email>dhill@srvhill04.calpont.com</email>
|
||||
<version>$VERSION$</version>
|
||||
<projectmanagement>KDevCustomProject</projectmanagement>
|
||||
<primarylanguage>C</primarylanguage>
|
||||
<ignoreparts/>
|
||||
</general>
|
||||
<kdevcustomproject>
|
||||
<run>
|
||||
<mainprogram>install_scripts</mainprogram>
|
||||
<directoryradio>executable</directoryradio>
|
||||
</run>
|
||||
</kdevcustomproject>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell/>
|
||||
</general>
|
||||
</kdevdebugger>
|
||||
<kdevdoctreeview>
|
||||
<ignoretocs>
|
||||
<toc>ada</toc>
|
||||
<toc>ada_bugs_gcc</toc>
|
||||
<toc>bash</toc>
|
||||
<toc>bash_bugs</toc>
|
||||
<toc>clanlib</toc>
|
||||
<toc>fortran_bugs_gcc</toc>
|
||||
<toc>gnome1</toc>
|
||||
<toc>gnustep</toc>
|
||||
<toc>gtk</toc>
|
||||
<toc>gtk_bugs</toc>
|
||||
<toc>haskell</toc>
|
||||
<toc>haskell_bugs_ghc</toc>
|
||||
<toc>java_bugs_gcc</toc>
|
||||
<toc>java_bugs_sun</toc>
|
||||
<toc>kde2book</toc>
|
||||
<toc>libstdc++</toc>
|
||||
<toc>opengl</toc>
|
||||
<toc>pascal_bugs_fp</toc>
|
||||
<toc>php</toc>
|
||||
<toc>php_bugs</toc>
|
||||
<toc>perl</toc>
|
||||
<toc>perl_bugs</toc>
|
||||
<toc>python</toc>
|
||||
<toc>python_bugs</toc>
|
||||
<toc>qt-kdev3</toc>
|
||||
<toc>ruby</toc>
|
||||
<toc>ruby_bugs</toc>
|
||||
<toc>sdl</toc>
|
||||
<toc>stl</toc>
|
||||
<toc>sw</toc>
|
||||
<toc>w3c-dom-level2-html</toc>
|
||||
<toc>w3c-svg</toc>
|
||||
<toc>w3c-uaag10</toc>
|
||||
<toc>wxwidgets_bugs</toc>
|
||||
</ignoretocs>
|
||||
<ignoreqt_xml>
|
||||
<toc>Guide to the Qt Translation Tools</toc>
|
||||
<toc>Qt Assistant Manual</toc>
|
||||
<toc>Qt Designer Manual</toc>
|
||||
<toc>Qt Reference Documentation</toc>
|
||||
<toc>qmake User Guide</toc>
|
||||
</ignoreqt_xml>
|
||||
<ignoredoxygen>
|
||||
<toc>KDE Libraries (Doxygen)</toc>
|
||||
</ignoredoxygen>
|
||||
</kdevdoctreeview>
|
||||
<kdevfilecreate>
|
||||
<filetypes/>
|
||||
<useglobaltypes>
|
||||
<type ext="c" />
|
||||
<type ext="h" />
|
||||
</useglobaltypes>
|
||||
</kdevfilecreate>
|
||||
<kdevcppsupport>
|
||||
<references/>
|
||||
<codecompletion>
|
||||
<includeGlobalFunctions>true</includeGlobalFunctions>
|
||||
<includeTypes>true</includeTypes>
|
||||
<includeEnums>true</includeEnums>
|
||||
<includeTypedefs>false</includeTypedefs>
|
||||
<automaticCodeCompletion>true</automaticCodeCompletion>
|
||||
<automaticArgumentsHint>true</automaticArgumentsHint>
|
||||
<automaticHeaderCompletion>true</automaticHeaderCompletion>
|
||||
<codeCompletionDelay>250</codeCompletionDelay>
|
||||
<argumentsHintDelay>400</argumentsHintDelay>
|
||||
<headerCompletionDelay>250</headerCompletionDelay>
|
||||
</codecompletion>
|
||||
</kdevcppsupport>
|
||||
<kdevfileview>
|
||||
<groups>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
<hidenonlocation>false</hidenonlocation>
|
||||
</groups>
|
||||
<tree>
|
||||
<hidepatterns>*.o,*.lo,CVS</hidepatterns>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
</tree>
|
||||
</kdevfileview>
|
||||
</kdevelop>
|
@ -1,4 +0,0 @@
|
||||
# KDevelop Custom Project File List
|
||||
Makefile
|
||||
Makefile.am
|
||||
Makefile.in
|
@ -1,23 +0,0 @@
|
||||
<?xml version = '1.0' encoding = 'UTF-8'?>
|
||||
<!DOCTYPE KDevPrjSession>
|
||||
<KDevPrjSession>
|
||||
<DocsAndViews NumberOfDocuments="1" >
|
||||
<Doc0 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oam/install_scripts/columnstoreSyslog" >
|
||||
<View0 line="0" Type="Source" />
|
||||
</Doc0>
|
||||
</DocsAndViews>
|
||||
<pluginList>
|
||||
<kdevdebugger>
|
||||
<breakpointList/>
|
||||
</kdevdebugger>
|
||||
<kdevbookmarks>
|
||||
<bookmarks/>
|
||||
</kdevbookmarks>
|
||||
<kdevvalgrind>
|
||||
<executable path="" params="" />
|
||||
<valgrind path="" params="" />
|
||||
<calltree path="" params="" />
|
||||
<kcachegrind path="" />
|
||||
</kdevvalgrind>
|
||||
</pluginList>
|
||||
</KDevPrjSession>
|
@ -1,40 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 864 2009-04-02 19:22:49Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
lib_LTLIBRARIES = liboamcpp.la
|
||||
liboamcpp_la_SOURCES = liboamcpp.cpp oamcache.cpp
|
||||
liboamcpp_la_LDFLAGS = -version-info 1:0:0 $(AM_LDFLAGS)
|
||||
liboamcpp_la_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
include_HEADERS = liboamcpp.h oamcache.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,33 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
dist_post_SCRIPTS = functions \
|
||||
test-001.sh \
|
||||
test-002.sh \
|
||||
test-003.sh \
|
||||
test-004.sh
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,40 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 864 2009-04-02 19:22:49Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libreplaytxnlog.la
|
||||
libreplaytxnlog_la_SOURCES = replaytxnlog.cpp
|
||||
libreplaytxnlog_la_LDFLAGS = -version-info 1:0:0 $(AM_LDFLAGS)
|
||||
libreplaytxnlog_la_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
include_HEADERS = replaytxnlog.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,36 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 878 2009-04-03 20:34:32Z rdempsey $
|
||||
#
|
||||
#.PHONY: install
|
||||
|
||||
SUBDIRS = mcsadmin columnstoreDB postConfigure serverMonitor traphandler \
|
||||
sendtrap columnstoreSupport
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
#install:
|
||||
# for subdir in $(SUBDIRS); \
|
||||
# do $(MAKE) -C $$subdir install
|
||||
# done
|
@ -1,40 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 864 2009-04-02 19:22:49Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
lib_LTLIBRARIES = libsnmpmanager.la
|
||||
libsnmpmanager_la_SOURCES = snmpmanager.cpp alarm.cpp
|
||||
libsnmpmanager_la_LDFLAGS = -version-info 1:0:0 $(AM_LDFLAGS)
|
||||
libsnmpmanager_la_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
include_HEADERS = snmpglobal.h snmpmanager.h alarm.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = calpontConsole
|
||||
calpontConsole_SOURCES = calpontConsole.cpp
|
||||
calpontConsole_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
calpontConsole_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = calpontDBWrite
|
||||
calpontDBWrite_SOURCES = calpontDB.cpp
|
||||
calpontDBWrite_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
calpontDBWrite_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,48 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = calpontSupport
|
||||
calpontSupport_SOURCES = calpontSupport.cpp
|
||||
calpontSupport_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
calpontSupport_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
dist_bin_SCRIPTS=\
|
||||
alarmReport.sh \
|
||||
bulklogReport.sh \
|
||||
configReport.sh \
|
||||
hadoopReport.sh \
|
||||
hardwareReport.sh \
|
||||
logReport.sh \
|
||||
resourceReport.sh \
|
||||
softwareReport.sh
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = columnstoreDBWrite
|
||||
columnstoreDBWrite_SOURCES = columnstoreDB.cpp
|
||||
columnstoreDBWrite_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
columnstoreDBWrite_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,48 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = columnstoreSupport
|
||||
columnstoreSupport_SOURCES = columnstoreSupport.cpp
|
||||
columnstoreSupport_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
columnstoreSupport_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
dist_bin_SCRIPTS=\
|
||||
alarmReport.sh \
|
||||
bulklogReport.sh \
|
||||
configReport.sh \
|
||||
hadoopReport.sh \
|
||||
hardwareReport.sh \
|
||||
logReport.sh \
|
||||
resourceReport.sh \
|
||||
softwareReport.sh
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,83 +0,0 @@
|
||||
:******************************************************************************************
|
||||
# $Id: Makefile 2339 2012-05-02 18:20:56Z pleblanc $
|
||||
#
|
||||
# Copyright (C) 2009-2012 Calpont Corporation
|
||||
# All rights reserved
|
||||
#*****************************************************************************************/
|
||||
include ../../rules.mak
|
||||
|
||||
# The name of the executable
|
||||
|
||||
PROGRAM=mcadmin
|
||||
VERSION=1.0.0
|
||||
|
||||
# List all the source files here
|
||||
SRCS=mcadmin.cpp
|
||||
|
||||
# Run-time directories for project shared libs
|
||||
CALPONT_LIBRARY_PATH=$(EXPORT_ROOT)/lib
|
||||
|
||||
# Preprocessor flags
|
||||
CPPFLAGS=-I$(EXPORT_ROOT)/include -I/usr/include/libxml2
|
||||
|
||||
# Compiler flags
|
||||
CXXFLAGS+=$(DEBUG_FLAGS) -Wall
|
||||
|
||||
# Linker flags
|
||||
# we need to add some search paths here because on a boostrap build we won't find liboamcpp
|
||||
# anywhere except in ../oamcpp
|
||||
CLIBS=-L../oamcpp -L$(EXPORT_ROOT)/lib $(IDB_COMMON_LIBS) $(IDB_SNMP_LIBS)
|
||||
LDFLAGS+=$(CLIBS) -Wl,--rpath -Wl,/usr/local/Calpont/lib
|
||||
TLIBS=-L/usr/local/lib -lcppunit -ldl
|
||||
GLIBS=$(CLIBS)
|
||||
|
||||
.PHONY: install clean test docs FORCE coverage leakcheck
|
||||
|
||||
GLIBS=-lcppunit -ldl
|
||||
|
||||
OBJS=$(SRCS:.cpp=.o)
|
||||
|
||||
$(PROGRAM): $(OBJS)
|
||||
$(LINK.cpp) -o $@ $^ -Wl,-Bstatic -lreadline -Wl,-Bdynamic -lncurses -ltinfo
|
||||
|
||||
install: bootstrap $(PROGRAM)
|
||||
mkdir -p $(INSTALL_ROOT_BIN)
|
||||
$(INSTALL) $(PROGRAM) $(INSTALL_ROOT_BIN)
|
||||
|
||||
bootstrap:
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS) tdriver.o $(PROGRAM) $(LIBRARY) tdriver core *~ *.tag *-gcov.* *.gcov tdriver-gcov *.d *.d.* tdriver.output
|
||||
rm -rf html
|
||||
|
||||
docs:
|
||||
doxygen $(EXPORT_ROOT)/etc/Doxyfile
|
||||
|
||||
tdriver: tdriver.o
|
||||
$(LINK.cpp) -o $@ $^ $(TLIBS)
|
||||
|
||||
test: $(LIBRARY) tdriver
|
||||
rm -f /var/log/Calpont/uiCommands.log
|
||||
LD_LIBRARY_PATH=.:$(EXPORT_ROOT)/lib:/usr/local/lib ./tdriver
|
||||
|
||||
%-gcov.o: %.cpp
|
||||
$(COMPILE.cpp) -o $@ $^
|
||||
|
||||
tdriver-gcov: CXXFLAGS+=-fprofile-arcs -ftest-coverage
|
||||
tdriver-gcov: mcadmin-gcov.o $(subst .o,-gcov.o,$(OBJS))
|
||||
$(LINK.cpp) -o $@ $^ $(GLIBS)
|
||||
|
||||
|
||||
leakcheck: $(LIBRARY) tdriver
|
||||
rm -f /var/log/Calpont/uiCommands.log
|
||||
LD_LIBRARY_PATH=.:$(EXPORT_ROOT)/lib:/usr/local/lib valgrind --tool=memcheck --leak-check=yes ./tdriver
|
||||
|
||||
%.d: %.cpp
|
||||
@set -e; rm -f $@; \
|
||||
$(CC) -MM $(CPPFLAGS) $< > $@.$$$$; \
|
||||
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
|
||||
rm -f $@.$$$$
|
||||
|
||||
ifndef BOOTSTRAP
|
||||
-include $(SRCS:.cpp=.d) tdriver.d
|
||||
endif
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = mcsadmin
|
||||
mcsadmin_SOURCES = mcsadmin.cpp
|
||||
mcsadmin_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
mcsadmin_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,101 +0,0 @@
|
||||
<?xml version = '1.0'?>
|
||||
<kdevelop>
|
||||
<general>
|
||||
<author/>
|
||||
<email>dhill@srvhill04.calpont.com</email>
|
||||
<version>$VERSION$</version>
|
||||
<projectmanagement>KDevCustomProject</projectmanagement>
|
||||
<primarylanguage>C++</primarylanguage>
|
||||
<ignoreparts/>
|
||||
</general>
|
||||
<kdevcustomproject>
|
||||
<run>
|
||||
<mainprogram>mcsadmin</mainprogram>
|
||||
<directoryradio>executable</directoryradio>
|
||||
</run>
|
||||
</kdevcustomproject>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell/>
|
||||
</general>
|
||||
</kdevdebugger>
|
||||
<kdevdoctreeview>
|
||||
<ignoretocs>
|
||||
<toc>ada</toc>
|
||||
<toc>ada_bugs_gcc</toc>
|
||||
<toc>bash</toc>
|
||||
<toc>bash_bugs</toc>
|
||||
<toc>clanlib</toc>
|
||||
<toc>fortran_bugs_gcc</toc>
|
||||
<toc>gnome1</toc>
|
||||
<toc>gnustep</toc>
|
||||
<toc>gtk</toc>
|
||||
<toc>gtk_bugs</toc>
|
||||
<toc>haskell</toc>
|
||||
<toc>haskell_bugs_ghc</toc>
|
||||
<toc>java_bugs_gcc</toc>
|
||||
<toc>java_bugs_sun</toc>
|
||||
<toc>kde2book</toc>
|
||||
<toc>opengl</toc>
|
||||
<toc>pascal_bugs_fp</toc>
|
||||
<toc>php</toc>
|
||||
<toc>php_bugs</toc>
|
||||
<toc>perl</toc>
|
||||
<toc>perl_bugs</toc>
|
||||
<toc>python</toc>
|
||||
<toc>python_bugs</toc>
|
||||
<toc>qt-kdev3</toc>
|
||||
<toc>ruby</toc>
|
||||
<toc>ruby_bugs</toc>
|
||||
<toc>sdl</toc>
|
||||
<toc>sw</toc>
|
||||
<toc>w3c-dom-level2-html</toc>
|
||||
<toc>w3c-svg</toc>
|
||||
<toc>w3c-uaag10</toc>
|
||||
<toc>wxwidgets_bugs</toc>
|
||||
</ignoretocs>
|
||||
<ignoreqt_xml>
|
||||
<toc>Guide to the Qt Translation Tools</toc>
|
||||
<toc>Qt Assistant Manual</toc>
|
||||
<toc>Qt Designer Manual</toc>
|
||||
<toc>Qt Reference Documentation</toc>
|
||||
<toc>qmake User Guide</toc>
|
||||
</ignoreqt_xml>
|
||||
<ignoredoxygen>
|
||||
<toc>KDE Libraries (Doxygen)</toc>
|
||||
</ignoredoxygen>
|
||||
</kdevdoctreeview>
|
||||
<kdevfilecreate>
|
||||
<filetypes/>
|
||||
<useglobaltypes>
|
||||
<type ext="ui" />
|
||||
<type ext="cpp" />
|
||||
<type ext="h" />
|
||||
</useglobaltypes>
|
||||
</kdevfilecreate>
|
||||
<kdevcppsupport>
|
||||
<references/>
|
||||
<codecompletion>
|
||||
<includeGlobalFunctions>true</includeGlobalFunctions>
|
||||
<includeTypes>true</includeTypes>
|
||||
<includeEnums>true</includeEnums>
|
||||
<includeTypedefs>false</includeTypedefs>
|
||||
<automaticCodeCompletion>true</automaticCodeCompletion>
|
||||
<automaticArgumentsHint>true</automaticArgumentsHint>
|
||||
<automaticHeaderCompletion>true</automaticHeaderCompletion>
|
||||
<codeCompletionDelay>250</codeCompletionDelay>
|
||||
<argumentsHintDelay>400</argumentsHintDelay>
|
||||
<headerCompletionDelay>250</headerCompletionDelay>
|
||||
</codecompletion>
|
||||
</kdevcppsupport>
|
||||
<kdevfileview>
|
||||
<groups>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
<hidenonlocation>false</hidenonlocation>
|
||||
</groups>
|
||||
<tree>
|
||||
<hidepatterns>*.o,*.lo,CVS</hidepatterns>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
</tree>
|
||||
</kdevfileview>
|
||||
</kdevelop>
|
@ -1,4 +0,0 @@
|
||||
# KDevelop Custom Project File List
|
||||
Makefile
|
||||
mcsadmin.cpp
|
||||
mcsadmin.h
|
Binary file not shown.
@ -1,23 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE KDevPrjSession>
|
||||
<KDevPrjSession>
|
||||
<DocsAndViews NumberOfDocuments="1" >
|
||||
<Doc0 NumberOfViews="1" URL="file:///home/dhill/InfiniDB_MariaDB/oamapps/mcsadmin/mcsadmin.cpp" >
|
||||
<View0 line="4830" Type="Source" />
|
||||
</Doc0>
|
||||
</DocsAndViews>
|
||||
<pluginList>
|
||||
<kdevdebugger>
|
||||
<breakpointList/>
|
||||
</kdevdebugger>
|
||||
<kdevbookmarks>
|
||||
<bookmarks/>
|
||||
</kdevbookmarks>
|
||||
<kdevvalgrind>
|
||||
<executable path="" params="" />
|
||||
<valgrind path="" params="" />
|
||||
<calltree path="" params="" />
|
||||
<kcachegrind path="" />
|
||||
</kdevvalgrind>
|
||||
</pluginList>
|
||||
</KDevPrjSession>
|
@ -1,52 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags) -lreadline -lncurses
|
||||
bin_PROGRAMS = postConfigure installer getMySQLpw amazonInstaller mycnfUpgrade
|
||||
postConfigure_SOURCES = postConfigure.cpp helpers.cpp
|
||||
postConfigure_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
postConfigure_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
installer_SOURCES = installer.cpp helpers.cpp
|
||||
installer_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
installer_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
getMySQLpw_SOURCES = getMySQLpw.cpp
|
||||
getMySQLpw_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
getMySQLpw_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
amazonInstaller_SOURCES = amazonInstaller.cpp helpers.cpp
|
||||
amazonInstaller_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
amazonInstaller_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
mycnfUpgrade_SOURCES = mycnfUpgrade.cpp
|
||||
mycnfUpgrade_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
mycnfUpgrade_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<kdevelop>
|
||||
<general>
|
||||
<author></author>
|
||||
<email>dhill@srvhill04.calpont.com</email>
|
||||
<version>$VERSION$</version>
|
||||
<projectmanagement>KDevCustomProject</projectmanagement>
|
||||
<primarylanguage>C++</primarylanguage>
|
||||
<ignoreparts>
|
||||
</ignoreparts>
|
||||
</general>
|
||||
<kdevcustomproject>
|
||||
<run>
|
||||
<mainprogram>postConfigure</mainprogram>
|
||||
</run>
|
||||
</kdevcustomproject>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell></dbgshell>
|
||||
</general>
|
||||
</kdevdebugger>
|
||||
<kdevdoctreeview>
|
||||
<ignoretocs>
|
||||
<toc>ada</toc>
|
||||
<toc>ada_bugs_gcc</toc>
|
||||
<toc>bash</toc>
|
||||
<toc>bash_bugs</toc>
|
||||
<toc>clanlib</toc>
|
||||
<toc>fortran_bugs_gcc</toc>
|
||||
<toc>gnome1</toc>
|
||||
<toc>gnustep</toc>
|
||||
<toc>gtk</toc>
|
||||
<toc>gtk_bugs</toc>
|
||||
<toc>haskell</toc>
|
||||
<toc>haskell_bugs_ghc</toc>
|
||||
<toc>java_bugs_gcc</toc>
|
||||
<toc>java_bugs_sun</toc>
|
||||
<toc>kde2book</toc>
|
||||
<toc>opengl</toc>
|
||||
<toc>pascal_bugs_fp</toc>
|
||||
<toc>php</toc>
|
||||
<toc>php_bugs</toc>
|
||||
<toc>perl</toc>
|
||||
<toc>perl_bugs</toc>
|
||||
<toc>python</toc>
|
||||
<toc>python_bugs</toc>
|
||||
<toc>qt-kdev3</toc>
|
||||
<toc>ruby</toc>
|
||||
<toc>ruby_bugs</toc>
|
||||
<toc>sdl</toc>
|
||||
<toc>sw</toc>
|
||||
<toc>w3c-dom-level2-html</toc>
|
||||
<toc>w3c-svg</toc>
|
||||
<toc>w3c-uaag10</toc>
|
||||
<toc>wxwidgets_bugs</toc>
|
||||
</ignoretocs>
|
||||
<ignoreqt_xml>
|
||||
<toc>Guide to the Qt Translation Tools</toc>
|
||||
<toc>Qt Assistant Manual</toc>
|
||||
<toc>Qt Designer Manual</toc>
|
||||
<toc>Qt Reference Documentation</toc>
|
||||
<toc>qmake User Guide</toc>
|
||||
</ignoreqt_xml>
|
||||
<ignoredoxygen>
|
||||
<toc>KDE Libraries (Doxygen)</toc>
|
||||
</ignoredoxygen>
|
||||
</kdevdoctreeview>
|
||||
<kdevfilecreate>
|
||||
<filetypes/>
|
||||
<useglobaltypes>
|
||||
<type ext="ui" />
|
||||
<type ext="cpp" />
|
||||
<type ext="h" />
|
||||
</useglobaltypes>
|
||||
</kdevfilecreate>
|
||||
</kdevelop>
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ReplayTransactionLog
|
||||
ReplayTransactionLog_SOURCES = replaytransactionlog.cpp
|
||||
ReplayTransactionLog_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
ReplayTransactionLog_LDFLAGS = @idb_common_ldflags@ @idb_exec_libs@ -lreplaytxnlog $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,41 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ServerMonitor
|
||||
ServerMonitor_SOURCES = main.cpp serverMonitor.cpp cpuMonitor.cpp diskMonitor.cpp \
|
||||
memoryMonitor.cpp procmonMonitor.cpp msgProcessor.cpp dbhealthMonitor.cpp \
|
||||
UMAutoSync.cpp
|
||||
ServerMonitor_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
ServerMonitor_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = sessionWalker
|
||||
sessionWalker_SOURCES = sessionwalker.cpp
|
||||
sessionWalker_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
sessionWalker_LDFLAGS = @idb_common_ldflags@ @idb_common_libs@ @idb_write_libs@ @netsnmp_libs@ $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,32 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
SUBDIRS = blockcache linux-port primproc
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
for subdir in $(SUBDIRS); \
|
||||
do $(MAKE) -C $$subdir bootstrap || exit $$?; \
|
||||
done
|
||||
|
@ -1,48 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 864 2009-04-02 19:22:49Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
noinst_LIBRARIES = libdbbc.a
|
||||
libdbbc_a_SOURCES = \
|
||||
blockcacheclient.cpp \
|
||||
blockrequestprocessor.cpp \
|
||||
fileblockrequestqueue.cpp \
|
||||
filebuffer.cpp \
|
||||
filebuffermgr.cpp \
|
||||
filerequest.cpp \
|
||||
iomanager.cpp \
|
||||
stats.cpp \
|
||||
fsutils.cpp
|
||||
libdbbc_a_CPPFLAGS = -I../primproc $(AM_CPPFLAGS)
|
||||
libdbbc_a_CXXFLAGS = $(march_flags) $(AM_CXXFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
|
@ -1,42 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 864 2009-04-02 19:22:49Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
noinst_LIBRARIES = libprocessor.a
|
||||
libprocessor_a_SOURCES = \
|
||||
primitiveprocessor.cpp \
|
||||
dictionary.cpp \
|
||||
column.cpp
|
||||
libprocessor_a_CPPFLAGS = -I../blockcache -I../primproc $(AM_CPPFLAGS)
|
||||
libprocessor_a_CXXFLAGS = $(march_flags) $(AM_CXXFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
|
@ -1,54 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = PrimProc
|
||||
PrimProc_SOURCES = primproc.cpp \
|
||||
batchprimitiveprocessor.cpp \
|
||||
bppseeder.cpp \
|
||||
bppsendthread.cpp \
|
||||
columncommand.cpp \
|
||||
command.cpp \
|
||||
dictstep.cpp \
|
||||
filtercommand.cpp \
|
||||
logger.cpp \
|
||||
passthrucommand.cpp \
|
||||
primitiveserver.cpp \
|
||||
pseudocc.cpp \
|
||||
rtscommand.cpp \
|
||||
umsocketselector.cpp
|
||||
PrimProc_CPPFLAGS = -I../blockcache -I../linux-port $(AM_CPPFLAGS)
|
||||
PrimProc_CXXFLAGS = $(march_flags) $(AM_CXXFLAGS)
|
||||
PrimProc_LDFLAGS = $(idb_common_ldflags) $(idb_write_libs) $(idb_common_libs) -lthreadpool -lcacheutils $(netsnmp_libs) $(AM_LDFLAGS)
|
||||
PrimProc_LDADD = ../blockcache/libdbbc.a ../linux-port/libprocessor.a
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ProcMgr
|
||||
ProcMgr_SOURCES = main.cpp processmanager.cpp
|
||||
ProcMgr_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
ProcMgr_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) -lcacheutils $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ProcMon
|
||||
ProcMon_SOURCES = main.cpp processmonitor.cpp
|
||||
ProcMon_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
ProcMon_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) -lcacheutils $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
67
rules.mak
67
rules.mak
@ -1,67 +0,0 @@
|
||||
SHELL=/bin/bash
|
||||
|
||||
ifeq (,$(findstring /root,${PWD}))
|
||||
TOP=$(shell pwd | cut -d / -f 1,2,3,4)
|
||||
else
|
||||
TOP=$(shell pwd | cut -d / -f 1,2,3)
|
||||
endif
|
||||
|
||||
EXPORT_ROOT=$(TOP)/export
|
||||
INSTALL=cp --preserve=timestamps
|
||||
|
||||
CALPONT_INSTALL_ROOT=$(EXPORT_ROOT)
|
||||
|
||||
INSTALL_ROOT=$(CALPONT_INSTALL_ROOT)
|
||||
INSTALL_ROOT_INCLUDE=$(INSTALL_ROOT)/include
|
||||
INSTALL_ROOT_LIB=$(INSTALL_ROOT)/lib
|
||||
INSTALL_ROOT_BIN=$(INSTALL_ROOT)/bin
|
||||
INSTALL_ROOT_ETC=$(INSTALL_ROOT)/etc
|
||||
INSTALL_ROOT_POST=$(INSTALL_ROOT)/post
|
||||
INSTALL_ROOT_LOCAL=$(INSTALL_ROOT)/local
|
||||
INSTALL_ROOT_MYSQL=$(INSTALL_ROOT)/mysql
|
||||
INSTALL_ROOT_TOOLS=$(INSTALL_ROOT)/tools
|
||||
INSTALL_ROOT_DATDUP=$(INSTALL_ROOT)/gluster
|
||||
INSTALL_MIB=$(INSTALL_ROOT)/share/snmp/mibs
|
||||
|
||||
CALPONT_LIBRARY_PATH=$(EXPORT_ROOT)/lib
|
||||
CALPONT_INCLUDE_PATH=$(EXPORT_ROOT)/include
|
||||
|
||||
IDB_COMMON_LIBS=-lwindowfunction -ljoblist -lexecplan -ljoiner -lrowgroup -lfuncexp -ludfsdk \
|
||||
-loamcpp -lsnmpmanager -ldataconvert -lbrm -lcacheutils -lmessageqcpp -lloggingcpp -lconfigcpp -lrwlock \
|
||||
-lcommon -lcompress -lxml2 -lidbboot -lboost_idb -lmysqlcl_idb -lquerystats -lidbdatafile -lquerytele \
|
||||
-lthrift -lpthread -lrt
|
||||
IDB_WRITE_LIBS=-lddlpackageproc -lddlpackage -ldmlpackageproc -ldmlpackage -lwriteengine -lwriteengineclient -lcompress -lcacheutils
|
||||
IDB_SNMP_LIBS=-lnetsnmpagent -lnetsnmp -lnetsnmpmibs -lnetsnmphelpers
|
||||
|
||||
LDFLAGS=-Wl,--no-as-needed
|
||||
|
||||
#DEBUG_FLAGS=-ggdb3 -fno-tree-vectorize -DSAFE_MUTEX -DSAFEMALLOC
|
||||
DEBUG_FLAGS=-g0 -O3 -fno-strict-aliasing -fno-tree-vectorize -DDBUG_OFF
|
||||
|
||||
#DEBUG_FLAGS+=-DVALGRIND
|
||||
#DEBUG_FLAGS+=-DSKIP_OAM_INIT
|
||||
|
||||
ifeq (i686,$(shell uname -m))
|
||||
DEBUG_FLAGS+=-march=pentium4
|
||||
else ifeq (x86_64,$(shell uname -m))
|
||||
ifeq (opteron,$(shell egrep -qs Opteron /proc/cpuinfo && echo 'opteron'))
|
||||
DEBUG_FLAGS+=-march=opteron
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq (4.5,$(shell test -x /usr/local/gcc45/bin/gcc && /usr/local/gcc45/bin/gcc --version | awk '/^gcc/ {print $$3}' | cut -c1-3))
|
||||
export LD_LIBRARY_PATH=/usr/local/gcc45/lib64:/usr/local/gmp43/lib:/usr/local/mpfr24/lib:/usr/local/mpc08/lib
|
||||
export PATH=/usr/local/gcc45/bin:/usr/local/bin:/bin:/usr/bin
|
||||
CC=/usr/local/gcc45/bin/gcc
|
||||
CXX=/usr/local/gcc45/bin/g++
|
||||
ifeq (-O3,$(findstring -O3,$(DEBUG_FLAGS)))
|
||||
DEBUG_FLAGS+=-flto
|
||||
endif
|
||||
endif
|
||||
|
||||
#Use only the last, non-comment line from MyDebugFlags file
|
||||
LOCAL_DEBUG_FLAGS=$(shell test -f $(TOP)/MyDebugFlags && awk '/^[^\#]/ {last=$$0}END{print last}' $(TOP)/MyDebugFlags)
|
||||
ifneq (,$(LOCAL_DEBUG_FLAGS))
|
||||
DEBUG_FLAGS=$(LOCAL_DEBUG_FLAGS)
|
||||
endif
|
||||
|
@ -1,67 +0,0 @@
|
||||
SHELL=/bin/bash
|
||||
|
||||
ifeq (,$(findstring /root,${PWD}))
|
||||
TOP=$(shell pwd | cut -d / -f 1,2,3,4)
|
||||
else
|
||||
TOP=$(shell pwd | cut -d / -f 1,2,3)
|
||||
endif
|
||||
|
||||
EXPORT_ROOT=$(TOP)/export
|
||||
INSTALL=cp --preserve=timestamps
|
||||
|
||||
CALPONT_INSTALL_ROOT=$(EXPORT_ROOT)
|
||||
|
||||
INSTALL_ROOT=$(CALPONT_INSTALL_ROOT)
|
||||
INSTALL_ROOT_INCLUDE=$(INSTALL_ROOT)/include
|
||||
INSTALL_ROOT_LIB=$(INSTALL_ROOT)/lib
|
||||
INSTALL_ROOT_BIN=$(INSTALL_ROOT)/bin
|
||||
INSTALL_ROOT_ETC=$(INSTALL_ROOT)/etc
|
||||
INSTALL_ROOT_POST=$(INSTALL_ROOT)/post
|
||||
INSTALL_ROOT_LOCAL=$(INSTALL_ROOT)/local
|
||||
INSTALL_ROOT_MYSQL=$(INSTALL_ROOT)/mysql
|
||||
INSTALL_ROOT_TOOLS=$(INSTALL_ROOT)/tools
|
||||
INSTALL_ROOT_DATDUP=$(INSTALL_ROOT)/gluster
|
||||
INSTALL_MIB=$(INSTALL_ROOT)/share/snmp/mibs
|
||||
|
||||
CALPONT_LIBRARY_PATH=$(EXPORT_ROOT)/lib
|
||||
CALPONT_INCLUDE_PATH=$(EXPORT_ROOT)/include
|
||||
|
||||
IDB_COMMON_LIBS=-lwindowfunction -ljoblist -lexecplan -ljoiner -lrowgroup -lfuncexp -ludfsdk \
|
||||
-loamcpp -lsnmpmanager -ldataconvert -lbrm -lcacheutils -lmessageqcpp -lloggingcpp -lconfigcpp -lrwlock \
|
||||
-lcommon -lcompress -lxml2 -lidbboot -lboost_idb -lmysqlcl_idb -lquerystats -lidbdatafile -lquerytele \
|
||||
-lthrift -lpthread -lrt
|
||||
IDB_WRITE_LIBS=-lddlpackageproc -lddlpackage -ldmlpackageproc -ldmlpackage -lwriteengine -lwriteengineclient -lcompress -lcacheutils
|
||||
IDB_SNMP_LIBS=-lnetsnmpagent -lnetsnmp -lnetsnmpmibs -lnetsnmphelpers
|
||||
|
||||
LDFLAGS=-Wl,--no-as-needed
|
||||
|
||||
#DEBUG_FLAGS=-ggdb3 -fno-tree-vectorize -DSAFE_MUTEX -DSAFEMALLOC
|
||||
DEBUG_FLAGS=-g0 -O3 -fno-strict-aliasing -fno-tree-vectorize -DDBUG_OFF
|
||||
|
||||
#DEBUG_FLAGS+=-DVALGRIND
|
||||
#DEBUG_FLAGS+=-DSKIP_OAM_INIT
|
||||
|
||||
ifeq (i686,$(shell uname -m))
|
||||
DEBUG_FLAGS+=-march=pentium4
|
||||
else ifeq (x86_64,$(shell uname -m))
|
||||
ifeq (opteron,$(shell egrep -qs Opteron /proc/cpuinfo && echo 'opteron'))
|
||||
DEBUG_FLAGS+=-march=opteron
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq (4.5,$(shell test -x /usr/local/gcc45/bin/gcc && /usr/local/gcc45/bin/gcc --version | awk '/^gcc/ {print $$3}' | cut -c1-3))
|
||||
export LD_LIBRARY_PATH=/usr/local/gcc45/lib64:/usr/local/gmp43/lib:/usr/local/mpfr24/lib:/usr/local/mpc08/lib
|
||||
export PATH=/usr/local/gcc45/bin:/usr/local/bin:/bin:/usr/bin
|
||||
CC=/usr/local/gcc45/bin/gcc
|
||||
CXX=/usr/local/gcc45/bin/g++
|
||||
ifeq (-O3,$(findstring -O3,$(DEBUG_FLAGS)))
|
||||
DEBUG_FLAGS+=-flto
|
||||
endif
|
||||
endif
|
||||
|
||||
#Use only the last, non-comment line from MyDebugFlags file
|
||||
LOCAL_DEBUG_FLAGS=$(shell test -f $(TOP)/MyDebugFlags && awk '/^[^\#]/ {last=$$0}END{print last}' $(TOP)/MyDebugFlags)
|
||||
ifneq (,$(LOCAL_DEBUG_FLAGS))
|
||||
DEBUG_FLAGS=$(LOCAL_DEBUG_FLAGS)
|
||||
endif
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 878 2009-04-03 20:34:32Z rdempsey $
|
||||
|
||||
SUBDIRS = dbbuilder editem dbloadxml \
|
||||
getConfig cplogger \
|
||||
clearShm setConfig \
|
||||
configMgt viewtablelock cleartablelock ddlcleanup \
|
||||
idbmeminfo
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
for subdir in $(SUBDIRS); \
|
||||
do $(MAKE) -C $$subdir bootstrap || exit $$?; \
|
||||
done
|
||||
|
@ -1,23 +0,0 @@
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = brmtest
|
||||
brmtest_SOURCES = brmtest.cpp locks.cpp
|
||||
brmtest_CPPFLAGS = -I@prefix@/Calpont/include -I/usr/include/libxml2 $(AM_CPPFLAGS)
|
||||
brmtest_LDFLAGS = @idb_common_ldflags@ -lexecplan -ljoblist -lrowgroup -ldataconvert -lloggingcpp -l@boost_thread_lib@ -lbrm -lmessageqcpp -lrwlock -lconfigcpp -lxml2 -ljoiner \
|
||||
-loamcpp -lsnmpmanager -l@boost_filesystem_lib@ -l@boost_date_time_lib@ @netsnmp_libs@ -lmulticast -lfuncexp $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,25 +0,0 @@
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = cfread mtread
|
||||
cfread_SOURCES = cfread.cpp
|
||||
cfread_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
cfread_LDFLAGS = @idb_common_ldflags@ -lpthread -lwriteengine -lbrm -lrwlock -lmessageqcpp -ldl -lconfigcpp -lxml2 -lloggingcpp -lcacheutils -lboost_idb -lpthread -lrt $(AM_LDFLAGS)
|
||||
mtread_SOURCES = mtread.cpp
|
||||
mtread_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
mtread_LDFLAGS = @idb_common_ldflags@ -lpthread -lwriteengine -lbrm -lrwlock -lmessageqcpp -ldl -lconfigcpp -lxml2 -lloggingcpp -lcacheutils -lboost_idb -lpthread -lrt $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = clearShm
|
||||
clearShm_SOURCES = main.cpp
|
||||
clearShm_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = cleartablelock
|
||||
cleartablelock_SOURCES = cleartablelock.cpp cleartablelockthread.cpp
|
||||
cleartablelock_CPPFLAGS = ${idb_common_includes} $(AM_CPPFLAGS)
|
||||
cleartablelock_LDFLAGS = ${idb_common_ldflags} ${idb_write_libs} $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
|
@ -1,48 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 1929 2012-09-14 16:18:25Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = autoInstaller autoConfigure svnQuery
|
||||
|
||||
autoInstaller_SOURCES = autoInstaller.cpp
|
||||
autoInstaller_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
autoInstaller_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS)
|
||||
|
||||
autoConfigure_SOURCES = autoConfigure.cpp
|
||||
autoConfigure_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
autoConfigure_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
|
||||
svnQuery_SOURCES = svnQuery.cpp
|
||||
svnQuery_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
svnQuery_LDFLAGS = $(idb_common_ldflags) $(idb_brm_libs) $(idb_oam_libs) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = cplogger
|
||||
cplogger_SOURCES = main.cpp
|
||||
cplogger_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
cplogger_LDFLAGS = $(idb_common_ldflags) $(idb_exec_libs) $(idb_common_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = dbbuilder
|
||||
dbbuilder_SOURCES = dbbuilder.cpp systemcatalog.cpp
|
||||
dbbuilder_LDFLAGS = $(idb_common_ldflags) $(idb_write_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
Binary file not shown.
@ -1,43 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = colxml
|
||||
colxml_SOURCES = colxml.cpp
|
||||
colxml_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
colxml_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ $(AM_LDFLAGS)
|
||||
colxml_LDADD = libdbload.a
|
||||
noinst_LIBRARIES = libdbload.a
|
||||
libdbload_a_SOURCES = inputmgr.cpp
|
||||
libdbload_a_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ddlcleanup
|
||||
ddlcleanup_SOURCES = ddlcleanup.cpp
|
||||
ddlcleanup_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
ddlcleanup_LDFLAGS = $(idb_common_ldflags) $(idb_write_libs) ${abs_top_builddir}/utils/ddlcleanup/libddlcleanuputil.la $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = ddldriver
|
||||
ddldriver_SOURCES = ddldriver.cpp
|
||||
ddldriver_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
ddldriver_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ @idb_common_libs@ @netsnmp_libs@ $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = dmldriver
|
||||
dmldriver_SOURCES = dmldriver.cpp tpchrf2.cpp dmlif.cpp
|
||||
dmldriver_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
dmldriver_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ @idb_common_libs@ @netsnmp_libs@ $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_common_includes) $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = editem
|
||||
editem_SOURCES = editem.cpp
|
||||
editem_LDFLAGS = $(idb_common_ldflags) $(idb_exec_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,25 +0,0 @@
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = evalidx
|
||||
evalidx_SOURCES = evalidx.cpp
|
||||
evalidx_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
evalidx_LDFLAGS = @idb_common_ldflags@ -ldmlpackageproc -lexecplan -ljoblist -lrowgroup -lwriteengine -lbrm \
|
||||
-ldataconvert -lcacheutils -ldmlpackage -lmessageqcpp -lloggingcpp -lconfigcpp -lrwlock -l@boost_thread_lib@ -lxml2 \
|
||||
-ljoiner -loamcpp -lsnmpmanager -l@boost_filesystem_lib@ -l@boost_date_time_lib@ @netsnmp_libs@ -lmulticast -lfuncexp \
|
||||
$(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = getConfig
|
||||
getConfig_SOURCES = main.cpp
|
||||
getConfig_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
getConfig_LDFLAGS = $(idb_common_ldflags) $(idb_exec_libs) $(idb_common_libs) $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id$
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = idbmeminfo
|
||||
idbmeminfo_SOURCES = idbmeminfo.cpp
|
||||
idbmeminfo_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
idbmeminfo_LDFLAGS = $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,51 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id$
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
AM_YFLAGS = -d -p qfe
|
||||
AM_LFLAGS = -i -Pqfe -olex.yy.c
|
||||
bin_PROGRAMS = QFE
|
||||
QFE_SOURCES = \
|
||||
cseputils.cpp \
|
||||
ddlstmts.cpp \
|
||||
parsequery.cpp \
|
||||
returnedrows.cpp \
|
||||
sendcsep.cpp \
|
||||
server.cpp \
|
||||
socketio.cpp \
|
||||
qfelexer.lpp \
|
||||
qfeparser.ypp
|
||||
QFE_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
QFE_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ @idb_exec_libs@ $(AM_LDFLAGS)
|
||||
BUILT_SOURCES = qfeparser.cpp qfelexer.cpp qfeparser.h
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,22 +0,0 @@
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = sendPlan
|
||||
sendPlan_SOURCES = sendplan.cpp
|
||||
sendPlan_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
sendPlan_LDFLAGS = @idb_common_ldflags@ @idb_exec_libs@ $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,41 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = setConfig
|
||||
setConfig_SOURCES = main.cpp
|
||||
setConfig_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS)
|
||||
setConfig_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) $(idb_brm_libs) $(AM_LDFLAGS)
|
||||
|
||||
dist_bin_SCRIPTS = configxml.sh
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id$
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = vbgen
|
||||
vbgen_SOURCES = vbgen.cpp myrand.cpp
|
||||
vbgen_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
vbgen_LDFLAGS = $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap: install-data-am
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AM_CPPFLAGS = $(idb_cppflags)
|
||||
AM_CFLAGS = $(idb_cflags)
|
||||
AM_CXXFLAGS = $(idb_cxxflags)
|
||||
AM_LDFLAGS = $(idb_ldflags)
|
||||
bin_PROGRAMS = viewtablelock
|
||||
viewtablelock_SOURCES = viewtablelock.cpp
|
||||
viewtablelock_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
viewtablelock_LDFLAGS = @idb_common_ldflags@ @idb_exec_libs@ $(AM_LDFLAGS)
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright (C) 2014 InfiniDB, Inc.
|
||||
#
|
||||
# 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; version 2 of
|
||||
# the License.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
|
||||
# $Id: Makefile.am 4038 2013-08-07 14:02:48Z rdempsey $
|
||||
|
||||
SUBDIRS = startup common configcpp loggingcpp messageqcpp \
|
||||
threadpool rwlock dataconvert joiner rowgroup cacheutils \
|
||||
funcexp udfsdk compress batchloader ddlcleanup \
|
||||
mysqlcl_idb querystats jemalloc windowfunction idbdatafile \
|
||||
idbhdfs winport thrift querytele
|
||||
|
||||
test:
|
||||
|
||||
coverage:
|
||||
|
||||
leakcheck:
|
||||
|
||||
docs:
|
||||
|
||||
bootstrap:
|
||||
for subdir in $(SUBDIRS); \
|
||||
do $(MAKE) -C $$subdir bootstrap || exit $$?; \
|
||||
done
|
||||
|
@ -1,98 +0,0 @@
|
||||
|
||||
#
|
||||
# Not used
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## Copyright (C) 2014 InfiniDB, Inc.
|
||||
##
|
||||
## 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; version 2 of
|
||||
## the License.
|
||||
##
|
||||
## 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., 51 Franklin Street, Fifth Floor, Boston,
|
||||
## MA 02110-1301, USA.
|
||||
#
|
||||
## $Id$
|
||||
#
|
||||
#ACLOCAL_AMFLAGS = -I ./m4
|
||||
#
|
||||
#all-local: bootstrap
|
||||
# cd utils && $(MAKE) && $(MAKE) install
|
||||
# cd oam; \
|
||||
# $(MAKE) -C oamcpp install
|
||||
# cd snmpd && $(MAKE) && $(MAKE) install
|
||||
# cd dbcon; \
|
||||
# $(MAKE) -C execplan install; \
|
||||
# $(MAKE) -C joblist install
|
||||
# cd versioning && $(MAKE) && $(MAKE) install
|
||||
# cd oam && $(MAKE) && $(MAKE) install
|
||||
# cd versioning && $(MAKE) dbrm tools && $(MAKE) install_dbrm install_tools
|
||||
# cd writeengine; \
|
||||
# $(MAKE) -C wrapper install; \
|
||||
# $(MAKE) -C client install; \
|
||||
# $(MAKE) -C xml install; \
|
||||
# $(MAKE) -C redistribute install
|
||||
# cd dbcon; \
|
||||
# $(MAKE) -C ddlpackage install; \
|
||||
# $(MAKE) -C ddlpackageproc install; \
|
||||
# $(MAKE) -C dmlpackage install; \
|
||||
# $(MAKE) -C dmlpackageproc install
|
||||
# cd dbcon && $(MAKE) && $(MAKE) install
|
||||
# cd exemgr && $(MAKE) && $(MAKE) install
|
||||
# cd ddlproc && $(MAKE) && $(MAKE) install
|
||||
# cd dmlproc && $(MAKE) && $(MAKE) install
|
||||
# cd procmon && $(MAKE) && $(MAKE) install
|
||||
# cd procmgr && $(MAKE) && $(MAKE) install
|
||||
# cd oamapps && $(MAKE) && $(MAKE) install
|
||||
# cd decomsvr && $(MAKE) && $(MAKE) install
|
||||
# cd primitives && $(MAKE) && $(MAKE) install
|
||||
# cd tools && $(MAKE) && $(MAKE) install
|
||||
# cd versioning && $(MAKE) tools install_tools
|
||||
# $(MAKE) -C writeengine/server install_server
|
||||
# $(MAKE) -C writeengine/bulk install_bulk
|
||||
# $(MAKE) -C writeengine/splitter install_splitter
|
||||
# echo $(CXXFLAGS) $(DEBUG_FLAGS) > buildFlags
|
||||
#
|
||||
#compile: all-local
|
||||
#
|
||||
#.PHONY: test coverage leakcheck docs bootstrap
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap:
|
||||
# ./build/genVersion.sh --prefix=$(prefix)
|
||||
# for subdir in dbcon ddlproc dmlproc exemgr mysql net-snmp oam \
|
||||
# oamapps decomsvr primitives procmgr procmon qa snmpd tools utils versioning \
|
||||
# writeengine ; do \
|
||||
# if test -f $$subdir/Makefile; then \
|
||||
# $(MAKE) BOOTSTRAP=1 -C $$subdir bootstrap || exit $$?; \
|
||||
# fi; \
|
||||
# done
|
||||
#
|
||||
#clean: clean-am
|
||||
# for subdir in dbcon ddlproc dmlproc exemgr mysql net-snmp oam \
|
||||
# oamapps decomsvr primitives procmgr procmon qa snmpd tools utils versioning \
|
||||
# writeengine ; do \
|
||||
# if test -f $$subdir/Makefile; then \
|
||||
# $(MAKE) BOOTSTRAP=1 -C $$subdir clean || exit $$?; \
|
||||
# fi; \
|
||||
# done
|
||||
#
|
@ -1,340 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user