summaryrefslogtreecommitdiff
path: root/libpurple/core.c
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-09-12 22:54:13 -0500
committerGary Kramlich <grim@reaperworld.com>2022-09-12 22:54:13 -0500
commit1e76ba5cefc87d69d69e0df167f44c63e6d6c389 (patch)
treed3908807e81d24acb3f4d1088887d24080b9c2dc /libpurple/core.c
parent6f5d203a633b120dd4e77ad76bb50d3183d8b9dc (diff)
downloadpidgin-1e76ba5cefc87d69d69e0df167f44c63e6d6c389.tar.gz
Stop including internal.h everywhere when we really don't need it.
Testing Done: Compiled, but didn't test on windows. As such I left all the networking stuff untouched as that's where windows will really need it and that can be done in another rr. Reviewed at https://reviews.imfreedom.org/r/1764/
Diffstat (limited to 'libpurple/core.c')
-rw-r--r--libpurple/core.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libpurple/core.c b/libpurple/core.c
index 662159b846..34a40a2e61 100644
--- a/libpurple/core.c
+++ b/libpurple/core.c
@@ -23,7 +23,10 @@
#define G_SETTINGS_ENABLE_BACKEND
#include <gio/gsettingsbackend.h>
-#include "internal.h"
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif /* HAVE_CONFIG_H */
+
#include "cmds.h"
#include "connection.h"
#include "conversations.h"