diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-31 06:43:13 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-31 06:43:13 +0000 |
commit | a105718fd7900b2487133213c7290dd3b0cdad1e (patch) | |
tree | efeaaf31838204e4962a81aea38980d65d8b2809 /configure.ac | |
parent | 5a8bbc99be0ec8ea264fca061276e9ec798bca5e (diff) | |
download | pacman-a105718fd7900b2487133213c7290dd3b0cdad1e.tar.xz |
* Makefile changes for libfetch integration
* Fixed the --enable-debug option in ./configure (never worked)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index d2234739..5d829ef7 100644 --- a/configure.ac +++ b/configure.ac @@ -143,11 +143,13 @@ AC_SUBST(MARCHFLAG) AC_SUBST(CHOST) dnl Help line for debug -AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging support], debug=yes) +AC_ARG_ENABLE(debug, + AC_HELP_STRING([ --enable-debug], [Enable debugging support]), + [debug=$enableval], [debug=yes]) dnl Help line for fakeroot AC_ARG_ENABLE(fakeroot, - AC_HELP_STRING([--disable-fakeroot], [Disable fakeroot proof support]), + AC_HELP_STRING([--disable-fakeroot], [Disable fakeroot proof support]), [fakeroot=$enableval], [fakeroot=yes]) dnl Check for man2html binary @@ -316,7 +318,7 @@ dnl Enable or disable debug code AC_MSG_CHECKING(for debug mode request) if test x$debug = xyes ; then AM_CONDITIONAL(PACMAN_DEBUG, test x$debug = xyes) - CFLAGS="-g -Wall -Werror -std=c99 -DPACMAN_DEBUG" + CFLAGS="$CFLAGS -g -Wall -Werror -std=c99 -DPACMAN_DEBUG" AC_MSG_RESULT(yes) else AM_CONDITIONAL(PACMAN_DEBUG, test x$debug = xno) @@ -346,6 +348,9 @@ src/pacman/po/Makefile.in src/util/Makefile scripts/Makefile doc/Makefile +doc/makepkg.8 +doc/libalpm.3 +doc/pacman.8 doc/hu/Makefile etc/Makefile etc/pacman.d/Makefile |