Skip to content
Snippets Groups Projects
Commit c4f37ebe authored by Mick Jordan's avatar Mick Jordan
Browse files

copyright fix; fix relative include in fficall/common

parent 060fec26
No related branches found
No related tags found
No related merge requests found
#
# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
......
......@@ -103,7 +103,7 @@ int R_finite(double x)
}
#undef _
#include "../../../gnur/R-3.1.3/src/nmath/nmath.h"
#include <nmath.h>
double fround(double x, double digits) {
#define MAX_DIGITS DBL_MAX_10_EXP
......
......@@ -52,7 +52,10 @@ C_OBJECTS := $(patsubst %.c,$(OBJ)/%.o,$(C_SOURCES))
JNI_INCLUDES = -I $(JAVA_HOME)/include -I $(JAVA_HOME)/include/$(JDK_OS_DIR)
FFI_INCLUDES = -I$(TOPDIR)/include -I$(TOPDIR)/gnur/R-3.1.3/src/include -I$(TOPDIR)/include/R_ext
INCLUDES := $(JNI_INCLUDES) $(FFI_INCLUDES)
# The need for thhis should be reviewed
GNUR_INCLUDES = -I$(TOPDIR)/gnur/R-3.1.3/src/include -I$(TOPDIR)/gnur/R-3.1.3/src/nmath
INCLUDES := $(JNI_INCLUDES) $(FFI_INCLUDES) $(GNUR_INCLUDES)
all: Makefile $(C_COMMON_SOURCES) $(C_LIB)
......
......@@ -40,13 +40,14 @@ com.oracle.truffle.r.library/src/com/oracle/truffle/r/library/utils/CountFields.
com.oracle.truffle.r.library/src/com/oracle/truffle/r/library/utils/Menu.java,gnu_r.copyright
com.oracle.truffle.r.library/src/com/oracle/truffle/r/library/utils/WriteTable.java,gnu_r.copyright
com.oracle.truffle.r.native/builtinlibs/src/xerbla.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/alloc.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/main_engine.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/main_print.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/register.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/sys.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/unimplemented.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/jni/src/util.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/jni/Memory.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/jni/main_engine.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/jni/main_print.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/jni/Rdynload.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/jni/sys.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/jni/unimplemented.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/common/util.c,gnu_r.copyright
com.oracle.truffle.r.native/fficall/src/common/variable_defs.h,gnu_r.copyright
com.oracle.truffle.r.native/include/src/libintl.h,no.copyright
com.oracle.truffle.r.native/library/base/src/registration.c,no.copyright
com.oracle.truffle.r.native/library/graphics/src/graphics.h,no.copyright
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment