diff options
| author | 2020-06-14 15:17:31 +0200 | |
|---|---|---|
| committer | 2020-06-14 23:36:23 +0200 | |
| commit | f18b8afe8db4c40a2cccefe4d2dc57aed0b1337c (patch) | |
| tree | 17d1ae3c73f38fef43d00131f9f4cddc321ada98 /configure.ac | |
| parent | bc82fa167f367c3654503df14b13270c99a6d304 (diff) | |
| download | libimobiledevice-f18b8afe8db4c40a2cccefe4d2dc57aed0b1337c.tar.gz libimobiledevice-f18b8afe8db4c40a2cccefe4d2dc57aed0b1337c.tar.bz2 | |
Rename configure option for debug code to "--enable-debug" to match libplist
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 9f1eb47..e33f1ab 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -157,14 +157,14 @@ else | |||
| 157 | AC_SUBST(ssl_requires) | 157 | AC_SUBST(ssl_requires) |
| 158 | fi | 158 | fi |
| 159 | 159 | ||
| 160 | AC_ARG_ENABLE([debug-code], | 160 | AC_ARG_ENABLE([debug], |
| 161 | [AS_HELP_STRING([--enable-debug-code], | 161 | [AS_HELP_STRING([--enable-debug], |
| 162 | [enable debug message reporting in library (default is no)])], | 162 | [build debug message output code (default is no)])], |
| 163 | [no_debug_code=false], | 163 | [no_debug_code=false], |
| 164 | [no_debug_code=true]) | 164 | [no_debug_code=true]) |
| 165 | if test "$no_debug_code" = true; then | 165 | if test "$no_debug_code" = true; then |
| 166 | building_debug_code=no | 166 | building_debug_code=no |
| 167 | AC_DEFINE(STRIP_DEBUG_CODE,1,[Strip debug reporting code]) | 167 | AC_DEFINE(STRIP_DEBUG_CODE,1,[Define if debug message output code should not be built.]) |
| 168 | else | 168 | else |
| 169 | building_debug_code=yes | 169 | building_debug_code=yes |
| 170 | fi | 170 | fi |
