Skip to content

Commit e97bfa5

Browse files
author
luke
committed
Move R_ext/PrtUtil.h to src/include to restore building from dist tarball.
git-svn-id: https://svn.r-project.org/R/trunk@89100 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 7101184 commit e97bfa5

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/appl/uncmin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <float.h> /* DBL_MAX */
3232
#include <R_ext/Boolean.h>
3333
#include <R_ext/Print.h> /* Rprintf */
34-
#include <R_ext/PrtUtil.h> /* printRealVector */
34+
#include <PrtUtil.h> /* printRealVector */
3535
#include <R_ext/BLAS.h> /* ddot dnrm2 dscal */
3636
#include <R_ext/Linpack.h> /* dtrsl */
3737
#include <R_ext/Applic.h> /* fdhess */

src/include/Makefile.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ OBJ_HEADERS = Rconfig.h Rmath.h Rversion.h
1919
## Non-API internal ones:
2020
INT_HEADERS = Defn.h Errormsg.h Fileio.h Graphics.h GraphicsBase.h \
2121
IOStuff.h Internal.h Parse.h Print.h Rconnections.h \
22-
Rdynpriv.h Rgraphics.h Rinlinedfuns.h Startup.h rlocale.h
22+
Rdynpriv.h Rgraphics.h Rinlinedfuns.h Startup.h rlocale.h \
23+
PrtUtil.h
2324

2425
DISTFILES = Makefile.in Makefile.win $(INT_HEADERS) $(SRC_HEADERS) \
2526
config.h.in stamp-h.in Rmath.h0.in

src/include/Makefile.win

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ SRC_HEADERS = R.h Rdefines.h Rembedded.h Rinternals.h
1515
OBJ_HEADERS = Rconfig.h Rmath.h Rversion.h
1616
GW32_HEADERS = iconv.h psignal.h
1717

18-
## This omits GetX11Image.h QuartzDevice.h eventloop.h Callbacks.h PrtUtil.h
18+
## This omits GetX11Image.h QuartzDevice.h eventloop.h
1919
R_EXT_HEADERS = \
20-
Altrep.h Applic.h Arith.h BLAS.h Boolean.h Complex.h \
20+
Altrep.h Applic.h Arith.h BLAS.h Boolean.h Callbacks.h Complex.h \
2121
Connections.h Constants.h Error.h \
2222
GraphicsDevice.h GraphicsEngine.h Itermacros.h \
2323
Lapack.h Linpack.h MathThreads.h Memory.h \

src/include/Print.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define PRINT_H_
2525

2626
#include "Defn.h"
27-
#include <R_ext/PrtUtil.h>
27+
#include <PrtUtil.h>
2828
#include <R_ext/Print.h>
2929

3030
#define formatRaw Rf_formatRaw

src/include/R_ext/Makefile.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
1414

1515
## Partially included by the API (1) headers in .., but not part of the
1616
## API per se.
17-
## This omits Callbacks.h PrtUtil.h
1817
R_EXT_HEADERS = \
1918
Altrep.h \
20-
Applic.h Arith.h BLAS.h Boolean.h Complex.h Connections.h \
19+
Applic.h Arith.h BLAS.h Boolean.h Callbacks.h Complex.h Connections.h \
2120
Constants.h Error.h GetX11Image.h \
2221
GraphicsDevice.h GraphicsEngine.h Itermacros.h \
2322
Lapack.h Linpack.h MathThreads.h Memory.h QuartzDevice.h \

src/main/bind.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#endif
2727
#include <Defn.h>
2828
#include <Internal.h>
29-
#include <R_ext/PrtUtil.h> // for IndexWidth
29+
#include <PrtUtil.h> // for IndexWidth
3030
#include <R_ext/Itermacros.h>
3131
#define imax2(x, y) ((x < y) ? y : x)
3232

0 commit comments

Comments
 (0)