diff options
author | Martin Szulecki | 2020-06-14 15:17:31 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-14 23:36:23 +0200 |
commit | f18b8afe8db4c40a2cccefe4d2dc57aed0b1337c (patch) | |
tree | 17d1ae3c73f38fef43d00131f9f4cddc321ada98 | |
parent | bc82fa167f367c3654503df14b13270c99a6d304 (diff) | |
download | libimobiledevice-f18b8afe8db4c40a2cccefe4d2dc57aed0b1337c.tar.gz libimobiledevice-f18b8afe8db4c40a2cccefe4d2dc57aed0b1337c.tar.bz2 |
Rename configure option for debug code to "--enable-debug" to match libplist
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -89,7 +89,7 @@ sudo make install If you require a custom prefix or other option being passed to `./configure` you can pass them directly to `./autogen.sh` like this: ```bash -./autogen.sh --prefix=/opt/local --enable-debug-code +./autogen.sh --prefix=/opt/local --enable-debug make sudo make install ``` diff --git a/configure.ac b/configure.ac index 9f1eb47..e33f1ab 100644 --- a/configure.ac +++ b/configure.ac @@ -157,14 +157,14 @@ else AC_SUBST(ssl_requires) fi -AC_ARG_ENABLE([debug-code], - [AS_HELP_STRING([--enable-debug-code], - [enable debug message reporting in library (default is no)])], +AC_ARG_ENABLE([debug], + [AS_HELP_STRING([--enable-debug], + [build debug message output code (default is no)])], [no_debug_code=false], [no_debug_code=true]) if test "$no_debug_code" = true; then building_debug_code=no - AC_DEFINE(STRIP_DEBUG_CODE,1,[Strip debug reporting code]) + AC_DEFINE(STRIP_DEBUG_CODE,1,[Define if debug message output code should not be built.]) else building_debug_code=yes fi |