diff options
author | gregory guy <gregory-tde@laposte.net> | 2021-05-24 17:04:53 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2021-06-03 18:24:44 +0200 |
commit | 425f41c77dcf1616c36e678b9201c87f582efbde (patch) | |
tree | 6b99a14c169ad472127e87e3aa7464ef64749e8d /mcop/md5auth.cpp | |
parent | ec80625a625cd5b868a69dc59d2f326569651b95 (diff) | |
download | arts-feat/cmake_update.tar.gz arts-feat/cmake_update.zip |
some updates on cmake stuff in order to build aRts with optional backend (alsa, jack...)feat/cmake_update
Rename gslconfig.h.in into gslconfig.h.cmake for consistency with the other modules.
Add man3 pages (gsl).
Add Network Audio System (Nas) support.
Add Open Sound System (OSS) support.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'mcop/md5auth.cpp')
-rw-r--r-- | mcop/md5auth.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mcop/md5auth.cpp b/mcop/md5auth.cpp index 5278870..9811641 100644 --- a/mcop/md5auth.cpp +++ b/mcop/md5auth.cpp @@ -20,7 +20,9 @@ */ -#include <config.h> +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <sys/utsname.h> #include <sys/types.h> @@ -32,13 +34,11 @@ #include <assert.h> #include <stdlib.h> -#if TIME_WITH_SYS_TIME -# include <sys/time.h> -# include <time.h> -#elif HAVE_SYS_TIME_H -# include <sys/time.h> -#else -# include <time.h> +#if defined(HAVE_SYS_TIME_H) +#include <sys/time.h> +#endif +#if defined(TIME_WITH_SYS_TIME) +#include <time.h> #endif #include "md5.h" |