mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
2003-02-02 Christian Stimming <stimming@tuhh.de>
* configure.in: Disable error-on-warning by default because this seriously breaks quite a number of configure tests. May be enabled again for the development branch, but definitely not for end-users. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7920 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
66c78b40a6
commit
93fd3bff82
@ -1,6 +1,11 @@
|
||||
2003-02-02 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* configure.in: Fix libofx test.
|
||||
* configure.in: Disable error-on-warning by default because this
|
||||
seriously breaks quite a number of configure tests. May be enabled
|
||||
again for the development branch, but definitely not for
|
||||
end-users.
|
||||
|
||||
* configure.in: Fix libofx test.
|
||||
|
||||
* src/import-export/hbci/gnc-hbci-utils.c, po/de.po: Recognize
|
||||
even more error codes from OpenHBCI. Yes, I know this breaks
|
||||
|
12
configure.in
12
configure.in
@ -345,16 +345,20 @@ AC_SUBST(GNC_SCM_INSTALL_DIR)
|
||||
AC_SUBST(GNC_SHAREDIR)
|
||||
AC_SUBST(GNC_LIBEXECDIR)
|
||||
|
||||
# Enable error-on-warning by default -- I'm tired of fixing other
|
||||
# people's missing #includes, etc.
|
||||
## Enable error-on-warning by default -- I'm tired of fixing other
|
||||
## people's missing #includes, etc.
|
||||
|
||||
# Disable error-on-warning by default again because this seriously
|
||||
# breaks quite a number of configure tests (due to, like, 'warning:
|
||||
# unused variable some_variable') -- cstim, 02/02/2003
|
||||
AC_ARG_ENABLE(error-on-warning,
|
||||
[ --enable-error-on-warning treat compile warnings as errors],
|
||||
[case "${enableval}" in
|
||||
yes) CFLAGS="${CFLAGS} -Werror" ;;
|
||||
no) ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
|
||||
esac],
|
||||
[ CFLAGS="${CFLAGS} -Werror" ])
|
||||
esac])
|
||||
#, [ CFLAGS="${CFLAGS} -Werror" ])
|
||||
|
||||
AC_ARG_ENABLE( debug,
|
||||
[ --enable-debug compile with debugging flags set],
|
||||
|
Loading…
Reference in New Issue
Block a user