Skip to content

Commit

Permalink
Rename openexr_conf.h to openexr_config.h
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Porcino <[email protected]>
  • Loading branch information
meshula committed Aug 17, 2023
1 parent 1a69aed commit 4994172
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ cc_library(
"src/lib/OpenEXRCore/openexr_chunkio.h",
"src/lib/OpenEXRCore/openexr_coding.h",
"src/lib/OpenEXRCore/openexr_compression.h",
"src/lib/OpenEXRCore/openexr_conf.h",
"src/lib/OpenEXRCore/openexr_config.h",
"src/lib/OpenEXRCore/openexr_context.h",
"src/lib/OpenEXRCore/openexr_debug.h",
"src/lib/OpenEXRCore/openexr_decode.h",
Expand Down
2 changes: 1 addition & 1 deletion src/bin/exrinfo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright Contributors to the OpenEXR Project.

add_executable(exrinfo main.c)
target_link_libraries(exrinfo OpenEXR::OpenEXRCore OpenEXR::Config)
target_link_libraries(exrinfo OpenEXR::OpenEXRCore Imath::Imath)
set_target_properties(exrinfo PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
)
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ openexr_define_library(OpenEXRCore
openexr_chunkio.h
openexr_coding.h
openexr_compression.h
openexr_conf.h
openexr_config.h
openexr_context.h
openexr_decode.h
openexr_debug.h
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/context.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# define _LARGEFILE64_SOURCE
#endif

#include "openexr_conf.h"
#include "openexr_config.h"
#include "openexr_context.h"

#include "openexr_part.h"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/internal_coding.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef OPENEXR_CORE_UNPACK_H
#define OPENEXR_CORE_UNPACK_H

#include "openexr_conf.h"
#include "openexr_config.h"
#include "openexr_decode.h"
#include "openexr_encode.h"

Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/internal_posix_file_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

/* implementation for unix-like file io routines (used in context.c) */
#include "openexr_conf.h"
#include "openexr_config.h"

#include <errno.h>

Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/internal_structs.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
** Copyright Contributors to the OpenEXR Project.
*/

#include "openexr_conf.h"
#include "openexr_config.h"
#include "internal_structs.h"
#include "internal_attr.h"
#include "internal_constants.h"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/internal_structs.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef OPENEXR_PRIVATE_STRUCTS_H
#define OPENEXR_PRIVATE_STRUCTS_H

#include "openexr_conf.h"
#include "openexr_config.h"
#include "internal_attr.h"

#ifdef ILMTHREAD_THREADING_ENABLED
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/openexr.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef OPENEXR_CORE_H
#define OPENEXR_CORE_H

#include "openexr_conf.h"
#include "openexr_config.h"

#include "openexr_base.h"
#include "openexr_errors.h"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/openexr_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef OPENEXR_BASE_H
#define OPENEXR_BASE_H

#include "openexr_conf.h"
#include "openexr_config.h"

#include <stddef.h>

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/openexr_errors.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef OPENEXR_ERRORS_H
#define OPENEXR_ERRORS_H

#include "openexr_conf.h"
#include "openexr_config.h"

#include <stdint.h>

Expand Down

0 comments on commit 4994172

Please sign in to comment.