libtiff: tif_hash_set.c: include tif_hash_set.h after tif_config.h to let a chance for GDAL symbol renaming trick

From bc4d708262e7647a511f3c40aa975e2f5453c3b3 Mon Sep 17 00:00:00 2001
From: Even Rouault <[EMAIL REDACTED]>
Date: Sun, 22 Jan 2023 13:31:46 +0100
Subject: [PATCH] tif_hash_set.c: include tif_hash_set.h after tif_config.h to
 let a chance for GDAL symbol renaming trick

---
 libtiff/tif_hash_set.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libtiff/tif_hash_set.c b/libtiff/tif_hash_set.c
index 22f05d03..9792c63f 100644
--- a/libtiff/tif_hash_set.c
+++ b/libtiff/tif_hash_set.c
@@ -26,9 +26,10 @@
  * DEALINGS IN THE SOFTWARE.
  ****************************************************************************/
 
-#include "tif_hash_set.h"
 #include "tif_config.h"
 
+#include "tif_hash_set.h"
+
 #include <assert.h>
 #include <stdbool.h>
 #include <stdint.h>