Make sure we include our config.h if we have one.

This commit is contained in:
Christian Hammond 2004-06-27 23:39:09 +00:00
parent 8e32891f81
commit 59b49141a0
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Sun Jun 27 16:38:42 PDT 2004 Christian Hammond <chipx86@gnupdate.org>
* libnotify/notify.c:
- Make sure we include our config.h if we have one.
Sun Jun 27 16:37:30 PDT 2004 Christian Hammond <chipx86@gnupdate.org>
* libnotify/notify.c:

View File

@ -18,7 +18,13 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#define DBUS_API_SUBJECT_TO_CHANGE 1
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifndef DBUS_API_SUBJECT_TO_CHANGE
# define DBUS_API_SUBJECT_TO_CHANGE 1
#endif
#include "notify.h"
#include <dbus/dbus.h>