summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ef0e68b)
raw | patch | inline | side by side (parent: ef0e68b)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 18 Sep 2005 18:28:19 +0000 (18:28 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 18 Sep 2005 18:28:19 +0000 (18:28 +0000) |
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@684 a5681a0c-68f1-0310-ab6d-d61299d08faa
src/Makefile.NetWare | patch | blob | history |
diff --git a/src/Makefile.NetWare b/src/Makefile.NetWare
index 17320c03a7c0566dc0e8d3427bbf42ccba572fe4..417c40a0f7112b503ce06fa0fb772d7309ec15cd 100644 (file)
--- a/src/Makefile.NetWare
+++ b/src/Makefile.NetWare
# Comment the line below if you dont want to load protected automatically.
#LDRING = 3
+# Vertical label angle: 90.0 (default) or 270.0
+RRDGRAPH_YLEGEND_ANGLE = 90.0
+
# Edit the path below to point to your Novell NDK.
ifndef NDKBASE
NDKBASE = c:/novell
# Base for the lib sources
ifndef LIBBASE
-LIBBASE = d:/projects/cw
+LIBBASE = ..
endif
# All library code is statically linked to avoid problems with other lib NLMs.
# Edit the path below to point to your libgd sources or set environment var.
$(OBJDIR)/hash_32.o \
$(OBJDIR)/parsetime.o \
$(OBJDIR)/pngsize.o \
- $(OBJDIR)/strftime.o \
$(EOLIST)
GD2LIBOBJS = \
@echo $(DL)#define HAVE_ERRNO_H 1$(DL) >> $@
@echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
@echo $(DL)#define HAVE_FIONBIO 1$(DL) >> $@
+ @echo $(DL)#define HAVE_FLOAT_H 1$(DL) >> $@
@echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
@echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
@echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
@echo $(DL)#define HAVE_MALLOC_H 1$(DL) >> $@
@echo $(DL)#define HAVE_MATH_H 1$(DL) >> $@
@echo $(DL)#define HAVE_MBSTOWCS 1$(DL) >> $@
+ @echo $(DL)#define HAVE_MEMMOVE 1$(DL) >> $@
+ @echo $(DL)#define HAVE_MKTIME 1$(DL) >> $@
@echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
+ @echo $(DL)#define HAVE_SETLOCALE 1$(DL) >> $@
@echo $(DL)#define HAVE_SETJMP_H 1$(DL) >> $@
# @echo $(DL)#define HAVE_SIGNAL 1$(DL) >> $@
@echo $(DL)#define HAVE_SNPRINTF 1$(DL) >> $@
@echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
@echo $(DL)#define HAVE_SYS_STAT_H 1$(DL) >> $@
@echo $(DL)#define HAVE_SYS_TIME_H 1$(DL) >> $@
+ @echo $(DL)#define HAVE_SYS_TYPES_H 1$(DL) >> $@
@echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
@echo $(DL)#define HAVE_TIME_H 1$(DL) >> $@
+ @echo $(DL)#define HAVE_TZSET 1$(DL) >> $@
@echo $(DL)#define HAVE_UNAME 1$(DL) >> $@
+ @echo $(DL)#define HAVE_VPRINTF 1$(DL) >> $@
@echo $(DL)#define HAVE_UNISTD_H 1$(DL) >> $@
@echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
@echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
@echo $(DL)#define HAVE_ZLIB_H 1$(DL) >> $@
@echo $(DL)#define HAVE_LIBZ 1$(DL) >> $@
@echo $(DL)#define rrd_realloc(a,b) realloc((a), (b))$(DL) >> $@
- @echo $(DL)#define RRDGRAPH_YLEGEND_ANGLE 90.0$(DL) >> $@
+# @echo $(DL)#define rrd_realloc(a,b) ( (a) == NULL ? malloc( (b) ) : realloc( (a) , (b) ))$(DL) >> $@
+ @echo $(DL)#define RRDGRAPH_YLEGEND_ANGLE $(RRDGRAPH_YLEGEND_ANGLE)$(DL) >> $@
+ @echo $(DL)#define RRD_DEFAULT_FONT "arial.ttf"$(DL) >> $@