From bf46e1695894bba62a06e8e22f4cca29f7ae033a Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Tue, 8 Nov 2005 09:08:02 +0000 Subject: 2005-11-08 Christophe Fergeau * src/hal-common.c: * src/hal-common.h: more #if => #ifdef changes git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1145 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- ChangeLog | 5 +++++ src/hal-common.c | 4 ++-- src/hal-common.h | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 93a9407..996627a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-08 Christophe Fergeau + + * src/hal-common.c: + * src/hal-common.h: more #if => #ifdef changes + 2005-11-08 Christophe Fergeau * src/ipod-device.c: diff --git a/src/hal-common.c b/src/hal-common.c index 6b36d6f..0e731b6 100644 --- a/src/hal-common.c +++ b/src/hal-common.c @@ -17,7 +17,7 @@ | | The following changes were done: | -| - libhal becomes optional (see #if HAVE_LIBHAL sections) +| - libhal becomes optional (see #ifdef HAVE_LIBHAL sections) | - provide some dummy libhal functions to make libhal-independence | of ipod-device.c easier. | @@ -58,7 +58,7 @@ #include "hal-common.h" -#if HAVE_LIBHAL +#ifdef HAVE_LIBHAL #include #include diff --git a/src/hal-common.h b/src/hal-common.h index db525fa..cd78cc4 100644 --- a/src/hal-common.h +++ b/src/hal-common.h @@ -62,7 +62,7 @@ #include #include -#if HAVE_LIBHAL +#ifdef HAVE_LIBHAL #include #include -- cgit