1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

r1458: Add a new configure option, to make it possible to both find errors,

and compile with gtk.

The --enable-developer option was just too noisy with buggy GTK headers.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2004-07-12 05:50:29 +00:00 committed by Gerald (Jerry) Carter
parent 893a9a3865
commit 54c3d98baf

View File

@ -136,6 +136,12 @@ AC_ARG_ENABLE(krb5developer, [ --enable-krb5developer Turn on developer warnin
CFLAGS="${CFLAGS} -g -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER"
fi])
AC_ARG_ENABLE(gtkdeveloper, [ --enable-gtkdeveloper Turn on developer warnings and debugging, except -Wstrict-prototypes and -Wshadow (default=no)],
[if eval "test x$enable_gtkdeveloper = xyes"; then
developer=yes
CFLAGS="${CFLAGS} -g -Wall -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER"
fi])
experimental=no
AC_ARG_ENABLE(experimental, [ --enable-experimental Turn on experimental features (default=no)],
[if eval "test x$enable_experimental = xyes"; then