about summary refs log tree commit diff stats
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/preferences.c2
-rw-r--r--src/config/preferences.h2
-rw-r--r--src/config/theme.c6
-rw-r--r--src/config/theme.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/config/preferences.c b/src/config/preferences.c
index f12e88d7..968787e3 100644
--- a/src/config/preferences.c
+++ b/src/config/preferences.c
@@ -32,7 +32,7 @@
  *
  */
 
-#include "prof_config.h"
+#include "config.h"
 
 #include <stdlib.h>
 #include <stdio.h>
diff --git a/src/config/preferences.h b/src/config/preferences.h
index f859201c..1ab18d31 100644
--- a/src/config/preferences.h
+++ b/src/config/preferences.h
@@ -35,7 +35,7 @@
 #ifndef PREFERENCES_H
 #define PREFERENCES_H
 
-#include "prof_config.h"
+#include "config.h"
 
 #include <glib.h>
 
diff --git a/src/config/theme.c b/src/config/theme.c
index e884f0c3..a4f5df65 100644
--- a/src/config/theme.c
+++ b/src/config/theme.c
@@ -32,15 +32,15 @@
  *
  */
 
-#include "prof_config.h"
+#include "config.h"
 
 #include <stdlib.h>
 #include <string.h>
 
 #include <glib.h>
-#ifdef PROF_HAVE_NCURSESW_NCURSES_H
+#ifdef HAVE_NCURSESW_NCURSES_H
 #include <ncursesw/ncurses.h>
-#elif PROF_HAVE_NCURSES_H
+#elif HAVE_NCURSES_H
 #include <ncurses.h>
 #endif
 
diff --git a/src/config/theme.h b/src/config/theme.h
index b8547716..4e9bc8e7 100644
--- a/src/config/theme.h
+++ b/src/config/theme.h
@@ -35,7 +35,7 @@
 #ifndef THEME_H
 #define THEME_H
 
-#include "prof_config.h"
+#include "config.h"
 
 #include <glib.h>