From 478c05fcab6cb4137b9cbaf55fdcdb6ff74107c0 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Fri, 29 Nov 2013 22:08:25 -0500 Subject: Allow -DNO_GET_ENVIRONMENT to avoid GetEnvironmentVariable If NO_GET_ENVIRONMENT is #defined at compile time on Windows, do not call GetEnvironmentVariable. QUtil::get_env will always return false. This option is not available through configure. This was added to support a specific user's requirements to avoid calling GetEnvironmentVariable from the Windows API. Nothing in qpdf outside the test coverage system in qtest relies on QUtil::get_env. --- ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 888f359f..35037447 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2013-11-29 Jay Berkenbilt + * If NO_GET_ENVIRONMENT is #defined, for Windows only, + QUtil::get_env will always return false. This was added to + support a user who needs to avoid calling GetEnvironmentVariable + from the Windows API. QUtil::get_env is not used for any + functionality in qpdf and exists only to support the test suite + including test coverage support with QTC (part of qtest). + * Add /FS to msvc builds to allow parallel builds to work with Visual C++ 2013. -- cgit v1.2.3-54-g00ecf