diff options
| author | 2008-10-25 18:23:00 +0200 | |
|---|---|---|
| committer | 2008-10-25 18:23:00 +0200 | |
| commit | 41778c3dcd0bf0ede8f526d9045a023a9188d455 (patch) | |
| tree | f2def9d2416bca8ee19d8998cf5111d9a521edc5 /configure.ac | |
| parent | 587990158fe0a7ee9a8ee086d83d1d61d61cc56b (diff) | |
| download | libimobiledevice-41778c3dcd0bf0ede8f526d9045a023a9188d455.tar.gz libimobiledevice-41778c3dcd0bf0ede8f526d9045a023a9188d455.tar.bz2 | |
fix autotools conditional
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 645b3fb..24eec9b 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -43,13 +43,13 @@ AC_ARG_ENABLE([dev-tools], | |||
| 43 | [build development helper tools (default is no)])], | 43 | [build development helper tools (default is no)])], |
| 44 | [build_dev_tools=true], | 44 | [build_dev_tools=true], |
| 45 | [build_dev_tools=false]) | 45 | [build_dev_tools=false]) |
| 46 | AM_CONDITIONAL(BUILD_DEV_TOOLS, test x$build_dev_tools = xtrue) | 46 | AM_CONDITIONAL([BUILD_DEV_TOOLS], [test x$build_dev_tools = xtrue]) |
| 47 | 47 | ||
| 48 | AC_ARG_ENABLE([debug-code], | 48 | AC_ARG_ENABLE([debug-code], |
| 49 | [AS_HELP_STRING([--enable-debug-code], | 49 | [AS_HELP_STRING([--enable-debug-code], |
| 50 | [enable debug message reporting in library (default is yes)])], | 50 | [enable debug message reporting in library (default is yes)])], |
| 51 | [debug_code=true], | 51 | [debug_code=true], |
| 52 | [debug_code=false]) | 52 | [debug_code=false]) |
| 53 | AM_CONDITIONAL(STRIP_DEBUG_CODE, test x$debug_code = xfalse) | 53 | AM_CONDITIONAL([STRIP_DEBUG_CODE], [test x$debug_code = xfalse]) |
| 54 | 54 | ||
| 55 | AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc) | 55 | AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc) |
