diff options
author | Hubert Figuière <hub@figuiere.net> | 2017-01-07 16:29:25 -0500 |
---|---|---|
committer | Hubert Figuière <hub@figuiere.net> | 2017-01-07 16:30:23 -0500 |
commit | 325bb13f478bbc7efeaaf68e502b0a214b49f5bd (patch) | |
tree | ae9b86f7f8f4ce6cc904d38c542b8326b7f5a097 | |
parent | 93d6535273278a832c50e8f5f9c9db9bb1bb17ff (diff) |
build: fix make distcheck with the new SDK.
-rw-r--r-- | XMPCore/source/Makefile.am | 6 | ||||
-rw-r--r-- | XMPFilesPlugins/api/source/Makefile.am | 54 | ||||
-rw-r--r-- | public/include/Makefile.am | 8 | ||||
-rw-r--r-- | source/Makefile.am | 12 |
4 files changed, 65 insertions, 15 deletions
diff --git a/XMPCore/source/Makefile.am b/XMPCore/source/Makefile.am index 309d255..c73e93d 100644 --- a/XMPCore/source/Makefile.am +++ b/XMPCore/source/Makefile.am @@ -1,7 +1,7 @@ # # exempi - Makefile.am # -# Copyright (C) 2007-2013 Hubert Figuiere +# Copyright (C) 2007-2017 Hubert Figuiere # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -59,6 +59,8 @@ libXMPCore_la_SOURCES = ExpatAdapter.cpp \ WXMPMeta.cpp \ XMPCore_Impl.cpp \ XMPMeta.cpp \ + XMPMeta2.hpp \ XMPMeta-Parse.cpp \ - XMPUtils.cpp + XMPUtils.cpp \ + $(NULL) diff --git a/XMPFilesPlugins/api/source/Makefile.am b/XMPFilesPlugins/api/source/Makefile.am index ece8912..b91a2f7 100644 --- a/XMPFilesPlugins/api/source/Makefile.am +++ b/XMPFilesPlugins/api/source/Makefile.am @@ -1,13 +1,49 @@ +# +# exempi - Makefile.am +# +# Copyright (C) 2016-2017 Hubert Figuiere +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1 Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 2 Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the +# distribution. +# +# 3 Neither the name of the Authors, nor the names of its +# contributors may be used to endorse or promote products derived +# from this software wit hout specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +# OF THE POSSIBILITY OF SUCH DAMAGE. +# EXTRA_DIST = HostAPIAccess.cpp \ - HostAPIAccess.h\ - HostAPI.h\ - PluginAPIImpl.cpp\ - PluginBase.cpp\ - PluginBase.h\ - PluginConst.h\ - PluginHandler.h\ - PluginRegistry.cpp\ - PluginRegistry.h\ + HostAPIAccess.h \ + HostAPI.h \ + PluginAPIImpl.cpp \ + PluginBase.cpp \ + PluginBase.h \ + PluginConst.h \ + PluginHandler.h \ + PluginRegistry.cpp \ + PluginRegistry.h \ + PluginUtils.h \ $(NULL) diff --git a/public/include/Makefile.am b/public/include/Makefile.am index 866c7f9..0a2cd00 100644 --- a/public/include/Makefile.am +++ b/public/include/Makefile.am @@ -47,4 +47,12 @@ noinst_HEADERS = TXMPFiles.hpp TXMPIterator.hpp \ XMP_Const.h XMP_Environment.h \ XMP_IO.hpp \ XMP_UnixEndian.h \ + XMPCore/XMPCoreDefines.h \ + XMPCore/XMPCoreErrorCodes.h \ + XMPCore/XMPCoreFwdDeclarations.h \ + XMPCore/XMPCoreLatestInterfaceVersions.h \ + XMPCommon/XMPCommonDefines.h \ + XMPCommon/XMPCommonErrorCodes.h \ + XMPCommon/XMPCommonFwdDeclarations.h \ + XMPCommon/XMPCommonLatestInterfaceVersions.h \ $(NULL) diff --git a/source/Makefile.am b/source/Makefile.am index 681f98f..b0be93c 100644 --- a/source/Makefile.am +++ b/source/Makefile.am @@ -1,7 +1,7 @@ # # exempi - Makefile.am # -# Copyright (C) 2007-2013 Hubert Figuiere +# Copyright (C) 2007-2017 Hubert Figuiere # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -43,8 +43,10 @@ AM_CPPFLAGS = -I$(top_srcdir) \ -Wall @XMPCORE_CPPFLAGS@ noinst_HEADERS = UnicodeConversions.hpp ExpatAdapter.hpp EndianUtils.hpp\ - XMLParserAdapter.hpp XMPFiles_IO.hpp Endian.h Host_IO.hpp XIO.hpp - + XMLParserAdapter.hpp XMPFiles_IO.hpp Endian.h \ + Host_IO.hpp XIO.hpp\ + SafeStringAPIs.cpp \ + $(NULL) libxmpcommon_la_SOURCES = UnicodeInlines.incl_cpp UnicodeConversions.cpp\ XML_Node.cpp XMPFiles_IO.cpp \ @@ -57,4 +59,6 @@ libxmpcommon_la_SOURCES = UnicodeInlines.incl_cpp UnicodeConversions.cpp\ $(NULL) -EXTRA_DIST = Host_IO-POSIX.cpp Host_IO-Win.cpp +EXTRA_DIST = Host_IO-POSIX.cpp \ + Host_IO-Win.cpp \ + $(NULL) |