~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to frmts/gtiff/GNUmakefile

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
ifeq ($(TIFF_SETTING),internal)
10
10
SUBLIBS := lib-tiff $(SUBLIBS) 
11
11
TIFF_OPTS       :=      -Ilibtiff $(TIFF_OPTS)
 
12
ifeq ($(RENAME_INTERNAL_LIBTIFF_SYMBOLS),yes)
 
13
TIFF_OPTS       :=      -DRENAME_INTERNAL_LIBTIFF_SYMBOLS $(TIFF_OPTS)
 
14
endif
12
15
endif
13
16
 
14
17
ifeq ($(GEOTIFF_SETTING),internal)
15
18
SUBLIBS := lib-geotiff $(SUBLIBS) 
16
19
TIFF_OPTS       :=      -Ilibgeotiff $(TIFF_OPTS)
 
20
ifeq ($(RENAME_INTERNAL_LIBGEOTIFF_SYMBOLS),yes)
 
21
TIFF_OPTS       :=      -DRENAME_INTERNAL_LIBGEOTIFF_SYMBOLS $(TIFF_OPTS)
 
22
endif
17
23
endif
18
24
 
19
25
CPPFLAGS        :=      $(GDAL_INCLUDE) $(GEOTIFF_INCLUDE) $(TIFF_OPTS) $(CPPFLAGS)