]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
Added signal.h and locale.h detection for cmake build system.
authorRalf Habacker <ralf.habacker@freenet.de>
Mon, 22 Mar 2010 14:49:30 +0000 (15:49 +0100)
committerRalf Habacker <ralf.habacker@freenet.de>
Mon, 22 Mar 2010 16:28:56 +0000 (17:28 +0100)
cmake/ConfigureChecks.cmake
cmake/config.h.cmake

index 35f3e1f93091e8485c62223d19f3a2a73b02970b..c4e335944331c2e705382de018294bd055e55844 100644 (file)
@@ -15,6 +15,8 @@ check_include_file(unistd.h     HAVE_UNISTD_H)  # dbus-sysdeps-util-win.c
 check_include_file(stdio.h      HAVE_STDIO_H)   # dbus-sysdeps.h
 check_include_file(sys/syslimits.h    HAVE_SYS_SYSLIMITS_H)   # dbus-sysdeps-unix.c
 check_include_file(errno.h     HAVE_ERRNO_H)    # dbus-sysdeps.c
+check_include_file(signal.h     HAVE_SIGNAL_H)
+check_include_file(locale.h     HAVE_LOCALE_H)
 
 check_symbol_exists(backtrace    "execinfo.h"       HAVE_BACKTRACE)          #  dbus-sysdeps.c, dbus-sysdeps-win.c
 check_symbol_exists(getgrouplist "grp.h"            HAVE_GETGROUPLIST)       #  dbus-sysdeps.c
index bc40ec29ba23492bf8580b66b52824f817fa08bb..2313dd2ce92ae1bcc050fbb54cfa331ee50d1204 100644 (file)
 /* Define to 1 if you have unistd.h */
 #cmakedefine   HAVE_UNISTD_H 1
 
-/* Define to 1 if you have errno.h */
-#cmakedefine   HAVE_ERRNO_H 1
-
 /* Define to 1 if you have stdio.h */
 #cmakedefine   HAVE_STDIO_H 1
 
 /* Define to 1 if you have sys/syslimits.h */
 #cmakedefine   HAVE_SYS_SYSLIMITS_H 1
 
+/* Define to 1 if you have errno.h */
+#cmakedefine   HAVE_ERRNO_H 1
+
+/* Define to 1 if you have signal.h */
+#cmakedefine   HAVE_SIGNAL_H 1
+
+/* Define to 1 if you have locale.h */
+#cmakedefine   HAVE_LOCALE_H 1
+
 // symbols
 /* Define to 1 if you have backtrace */
 #cmakedefine   HAVE_BACKTRACE 1