configure: Add a check for the grp.h header.
This commit is contained in:
parent
53e165716d
commit
46678dcdde
|
@ -7434,6 +7434,7 @@ done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_header in \
|
for ac_header in \
|
||||||
|
@ -7456,6 +7457,7 @@ for ac_header in \
|
||||||
float.h \
|
float.h \
|
||||||
fontconfig/fontconfig.h \
|
fontconfig/fontconfig.h \
|
||||||
getopt.h \
|
getopt.h \
|
||||||
|
grp.h \
|
||||||
ieeefp.h \
|
ieeefp.h \
|
||||||
io.h \
|
io.h \
|
||||||
jack/jack.h \
|
jack/jack.h \
|
||||||
|
|
|
@ -258,6 +258,7 @@ AC_CHECK_HEADERS(\
|
||||||
float.h \
|
float.h \
|
||||||
fontconfig/fontconfig.h \
|
fontconfig/fontconfig.h \
|
||||||
getopt.h \
|
getopt.h \
|
||||||
|
grp.h \
|
||||||
ieeefp.h \
|
ieeefp.h \
|
||||||
io.h \
|
io.h \
|
||||||
jack/jack.h \
|
jack/jack.h \
|
||||||
|
|
|
@ -141,7 +141,9 @@
|
||||||
#ifdef HAVE_PWD_H
|
#ifdef HAVE_PWD_H
|
||||||
# include <pwd.h>
|
# include <pwd.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_GRP_H
|
||||||
# include <grp.h>
|
# include <grp.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define COBJMACROS
|
#define COBJMACROS
|
||||||
#define NONAMELESSUNION
|
#define NONAMELESSUNION
|
||||||
|
|
|
@ -234,6 +234,9 @@
|
||||||
/* Define if we have libgphoto2 development environment */
|
/* Define if we have libgphoto2 development environment */
|
||||||
#undef HAVE_GPHOTO2
|
#undef HAVE_GPHOTO2
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <grp.h> header file. */
|
||||||
|
#undef HAVE_GRP_H
|
||||||
|
|
||||||
/* Define to 1 if you have the <hal/libhal.h> header file. */
|
/* Define to 1 if you have the <hal/libhal.h> header file. */
|
||||||
#undef HAVE_HAL_LIBHAL_H
|
#undef HAVE_HAL_LIBHAL_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue