#!/bin/sh

usage() {
	cat <<EOF
Usage:
  /opt/td-agent/bin/jemalloc-config <option>
Options:
  --help | -h  : Print usage.
  --version    : Print jemalloc version.
  --revision   : Print shared library revision number.
  --config     : Print configure options used to build jemalloc.
  --prefix     : Print installation directory prefix.
  --bindir     : Print binary installation directory.
  --datadir    : Print data installation directory.
  --includedir : Print include installation directory.
  --libdir     : Print library installation directory.
  --mandir     : Print manual page installation directory.
  --cc         : Print compiler used to build jemalloc.
  --cflags     : Print compiler flags used to build jemalloc.
  --cppflags   : Print preprocessor flags used to build jemalloc.
  --cxxflags   : Print C++ compiler flags used to build jemalloc.
  --ldflags    : Print library flags used to build jemalloc.
  --libs       : Print libraries jemalloc was linked against.
EOF
}

prefix="/opt/td-agent"
exec_prefix="/opt/td-agent"

case "$1" in
--help | -h)
	usage
	exit 0
	;;
--version)
	echo "5.2.1-0-gea6b3e973b477b8061e0076bb257dbd7f3faa756"
	;;
--revision)
	echo "2"
	;;
--config)
	echo "--prefix=/opt/td-agent 'CFLAGS=-g -O2 -fdebug-prefix-map=/build/td-agent-4.0.0=. -fstack-protector-strong -Wformat -Werror=format-security' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' 'CXXFLAGS=-g -O2 -fdebug-prefix-map=/build/td-agent-4.0.0=. -fstack-protector-strong -Wformat -Werror=format-security'"
	;;
--prefix)
	echo "/opt/td-agent"
	;;
--bindir)
	echo "/opt/td-agent/bin"
	;;
--datadir)
	echo "/opt/td-agent/share"
	;;
--includedir)
	echo "/opt/td-agent/include"
	;;
--libdir)
	echo "/opt/td-agent/lib"
	;;
--mandir)
	echo "/opt/td-agent/share/man"
	;;
--cc)
	echo "gcc"
	;;
--cflags)
	echo "-std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -g -O2 -fdebug-prefix-map=/build/td-agent-4.0.0=. -fstack-protector-strong -Wformat -Werror=format-security"
	;;
--cppflags)
	echo "-Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -D_REENTRANT"
	;;
--cxxflags)
	echo "-Wall -Wextra -g3 -fvisibility=hidden -O3 -g -O2 -fdebug-prefix-map=/build/td-agent-4.0.0=. -fstack-protector-strong -Wformat -Werror=format-security"
	;;
--ldflags)
	echo "-Wl,-Bsymbolic-functions -Wl,-z,relro "
	;;
--libs)
	echo "-lm -lstdc++ -pthread -ldl"
	;;
*)
	usage
	exit 1
esac
