diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-27 12:28:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-31 17:18:13 +0900 |
commit | 89d040848326c5fc5ea927a4f552f0eaf9a82384 (patch) | |
tree | da9fbca1f2cd8bd585d53c79b6e63780f946ebf3 | |
parent | 332ee860b0ee5645bc76596aa17f0a452c324f54 (diff) | |
download | tdegraphics-89d040848326c5fc5ea927a4f552f0eaf9a82384.tar.gz tdegraphics-89d040848326c5fc5ea927a4f552f0eaf9a82384.zip |
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3989b447c3a19ecdcce2b6636863d8d7c0343b8e)
-rw-r--r-- | kpdf/xpdf/xpdf/xpdf_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpdf/xpdf/xpdf/xpdf_config.h b/kpdf/xpdf/xpdf/xpdf_config.h index f00a6381..fdd7bc38 100644 --- a/kpdf/xpdf/xpdf/xpdf_config.h +++ b/kpdf/xpdf/xpdf/xpdf_config.h @@ -84,7 +84,7 @@ // popen //------------------------------------------------------------------------ -#if defined(_MSC_VER) || defined(__BORLANDC__) +#if defined(_MSC_VER) #define popen _popen #define pclose _pclose #endif @@ -103,7 +103,7 @@ #undef CDECL #endif -#if defined(_MSC_VER) || defined(__BORLANDC__) +#if defined(_MSC_VER) #define CDECL __cdecl #else #define CDECL |