summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8aad447)
raw | patch | inline | side by side (parent: 8aad447)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 10 Apr 2005 11:30:14 +0000 (11:30 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 10 Apr 2005 11:30:14 +0000 (11:30 +0000) |
allow configuration of the default font at configure time
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@379 a5681a0c-68f1-0310-ab6d-d61299d08faa
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@379 a5681a0c-68f1-0310-ab6d-d61299d08faa
program/configure.ac | patch | blob | history | |
program/src/Makefile.am | patch | blob | history |
diff --git a/program/configure.ac b/program/configure.ac
index a67ea55145a5ae810a2a0e4e720290f7042e70af..dd6afa06a8e3ac0992c04b46f4274e50ae1ccf29 100644 (file)
--- a/program/configure.ac
+++ b/program/configure.ac
AC_PROG_CPP
AC_PROG_LIBTOOL
+dnl Check if we run on a system that has fonts
+AC_ARG_WITH(rrd-default-font,
+[ --with-rrd-default-font=[OPTIONS] set the full path to your default font.],
+[RRD_DEFAULT_FONT=$withval],[
+ if test -d ${WINDIR:-nodir}/cour.ttf ; then
+ RRD_DEFAULT_FONT=`cd $WINDIR;pwd`/cour.ttf
+ else
+ RRD_DEFAULT_FONT='$(fontsdir)/$(fonts_DATA)'
+ fi
+])
+
+AC_SUBST(RRD_DEFAULT_FONT)
+
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_DIRENT
dnl Check for Perl.
AC_PATH_PROG(PERL, perl, no)
-if test "x$PERL" = "xno"; then
+
+AC_ARG_ENABLE(perl,[ --disable-perl do not build the perl modules],
+[],[enable_perl=yes])
+
+
+if test "x$PERL" = "xno" -o x$enable_perl = xno; then
COMP_PERL=
else
COMP_PERL="perl_piped perl_shared"
index 85aad4e1052181253e4faf0ccf162cfd474ceb92..df9aa9404fe1dbd28ffe51030ee443dd2b07d9d8 100644 (file)
--- a/program/src/Makefile.am
+++ b/program/src/Makefile.am
#INCLUDES = $(CGI_INCLUDES) $(FREETYPE_INCLUDES) $(ART_INCLUDES) \
# $(PNG_INCLUDES) $(ZLIB_INCLUDES)
-AM_CPPFLAGS = -DRRD_DEFAULT_FONT=\"$(fontsdir)/$(fonts_DATA)\"
+RRD_DEFAULT_FONT=@RRD_DEFAULT_FONT@
+AM_CPPFLAGS = -DRRD_DEFAULT_FONT=\"$(RRD_DEFAULT_FONT)\"
RRD_C_FILES = \
getopt.c \