diff options
author | Sebastian Dransfeld <sebastian.dransfeld@sintef.no> | 2013-06-20 12:53:29 +0200 |
---|---|---|
committer | Sebastian Dransfeld <sebastian.dransfeld@sintef.no> | 2013-06-20 12:53:29 +0200 |
commit | 51023d2d4fd9fbde2e376d32b29dc7b37da70919 (patch) | |
tree | ac8c51e9e9521d7e5532e9f5185834ed0642bc3e /src/Makefile_Evas.am | |
parent | 9aada5f7359ebe6032a0db902b4171887d2f898a (diff) |
evas: Keep sane name for public header
Evas_Common.h should be used for the public header, and rather rename
evas_common.h internal header to another name.
Sa:
Evas_Common_Header.h -> Evas_Common.h
evas_common.h -> evas_common_private.h
Shouldn't have both Evas_Common.h and evas_common.h because of case
insensitive filesystems.
Diffstat (limited to 'src/Makefile_Evas.am')
-rw-r--r-- | src/Makefile_Evas.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index cbb0cdc9c..7cc9433e0 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am @@ -7,7 +7,7 @@ noinst_LTLIBRARIES = installed_evasmainheadersdir = $(includedir)/evas-@VMAJ@ dist_installed_evasmainheaders_DATA = \ lib/evas/Evas.h \ -lib/evas/Evas_Common_Header.h \ +lib/evas/Evas_Common.h \ lib/evas/Evas_Eo.h \ lib/evas/Evas_Legacy.h \ lib/evas/Evas_GL.h \ @@ -19,7 +19,7 @@ lib/evas/include/evas_private.h \ lib/evas/include/evas_options.h \ lib/evas/include/evas_macros.h \ lib/evas/include/evas_mmx.h \ -lib/evas/include/evas_common.h \ +lib/evas/include/evas_common_private.h \ lib/evas/include/evas_blend_ops.h # Linebreak |