summaryrefslogtreecommitdiff
path: root/ftconfig.h
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2024-08-01 14:07:58 +0000
committerCoprDistGit <infra@openeuler.org>2024-08-01 14:07:58 +0000
commit769cb150981af8fc3b6cf58c2979c10d4a44acac (patch)
tree041a526ae6c7d8d99a3f055bad4ff26291430e68 /ftconfig.h
parent56de271d7c24f6d8835932f3e38cea2910633302 (diff)
automatic import of freetypeopeneuler24.03_LTS
Diffstat (limited to 'ftconfig.h')
-rw-r--r--ftconfig.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/ftconfig.h b/ftconfig.h
new file mode 100644
index 0000000..8d4a074
--- /dev/null
+++ b/ftconfig.h
@@ -0,0 +1,14 @@
+#ifndef __FTCONFIG_H__MULTILIB
+#define __FTCONFIG_H__MULTILIB
+
+#include <bits/wordsize.h>
+
+#if __WORDSIZE == 32
+# include "ftconfig-32.h"
+#elif __WORDSIZE == 64
+# include "ftconfig-64.h"
+#else
+# error "unexpected value for __WORDSIZE macro"
+#endif
+
+#endif