diff options
| author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2015-06-28 18:10:27 -0400 |
|---|---|---|
| committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2015-09-10 16:12:03 -0400 |
| commit | 0fa78bebfbe6333b958315918a2644891ebc914b (patch) | |
| tree | cc0c6da6157c66944db906dfdedb17d578828ac3 /src | |
| parent | b8ea917e86d8634a01b2128ece80ec1315e7a656 (diff) | |
| download | PROJ-0fa78bebfbe6333b958315918a2644891ebc914b.tar.gz PROJ-0fa78bebfbe6333b958315918a2644891ebc914b.zip | |
BLD: Change INCLUDES to AM_CPPFLAGS.
The former is deprecated and automake emits a warning about it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6f8bc0a7..5d89cc28 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,7 +3,7 @@ AM_CFLAGS = @C_WFLAGS@ bin_PROGRAMS = proj nad2bin geod cs2cs EXTRA_PROGRAMS = multistresstest test228 -INCLUDES = -DPROJ_LIB=\"$(pkgdatadir)\" \ +AM_CPPFLAGS = -DPROJ_LIB=\"$(pkgdatadir)\" \ -DMUTEX_@MUTEX_SETTING@ @JNI_INCLUDE@ include_HEADERS = proj_api.h projects.h geodesic.h \ |
