about summary refs log tree commit diff stats
path: root/src/common.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-03-31 21:05:02 +0100
committerJames Booth <boothj5@gmail.com>2016-03-31 21:05:02 +0100
commit9b177a9e0156bae0a7a01cb15b3afc982dd2582e (patch)
tree45ade45ae92ef543d06c29ccafeb48dea834ba35 /src/common.c
parentc91ce78a0419dc3e624eeffdc870b549e5cdc64f (diff)
downloadprofani-tty-9b177a9e0156bae0a7a01cb15b3afc982dd2582e.tar.gz
Removed #AX_PREFIX_CONFIG_H
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common.c b/src/common.c
index d6e48db0..ad66015f 100644
--- a/src/common.c
+++ b/src/common.c
@@ -31,7 +31,7 @@
  * source files in the program, then also delete it here.
  *
  */
-#include "prof_config.h"
+#include "config.h"
 
 #include <sys/select.h>
 #include <assert.h>
@@ -46,9 +46,9 @@
 #include <curl/easy.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
 
@@ -347,7 +347,7 @@ release_is_new(char *found_version)
 {
     int curr_maj, curr_min, curr_patch, found_maj, found_min, found_patch;
 
-    int parse_curr = sscanf(PROF_PACKAGE_VERSION, "%d.%d.%d", &curr_maj, &curr_min,
+    int parse_curr = sscanf(PACKAGE_VERSION, "%d.%d.%d", &curr_maj, &curr_min,
         &curr_patch);
     int parse_found = sscanf(found_version, "%d.%d.%d", &found_maj, &found_min,
         &found_patch);
@@ -657,13 +657,13 @@ is_notify_enabled(void)
 {
     gboolean notify_enabled = FALSE;
 
-#ifdef PROF_HAVE_OSXNOTIFY
+#ifdef HAVE_OSXNOTIFY
     notify_enabled = TRUE;
 #endif
-#ifdef PROF_HAVE_LIBNOTIFY
+#ifdef HAVE_LIBNOTIFY
     notify_enabled = TRUE;
 #endif
-#ifdef PROF_PLATFORM_CYGWIN
+#ifdef PLATFORM_CYGWIN
     notify_enabled = TRUE;
 #endif