diff options
author | Andre Pang <athp@users.sourceforge.net> | 2004-06-19 04:05:23 +0000 |
---|---|---|
committer | Andre Pang <athp@users.sourceforge.net> | 2004-06-19 04:05:23 +0000 |
commit | 5eb58051dac24e6c2958de46eddeefea99ed9791 (patch) | |
tree | 523632dd9be07152249bfca8f48eb36728488f30 | |
parent | f2883e435fa9f3de8657c0735d5ab089c5cb2907 (diff) | |
download | xine-lib-5eb58051dac24e6c2958de46eddeefea99ed9791.tar.gz xine-lib-5eb58051dac24e6c2958de46eddeefea99ed9791.tar.bz2 |
Add comment to configure.ac about not requiring AC_SUBST(OBJCDEPMODE), so that
people know why it's not needed instead of grepping through CVS logs
Removed -no-cpp-precomp and -fconstant-string-class gcc flags for Objective-C
source files
CVS patchset: 6699
CVS date: 2004/06/19 04:05:23
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 37af96cde..c5ee64f76 100644 --- a/configure.ac +++ b/configure.ac @@ -1627,9 +1627,12 @@ case "$host_or_hostalias" in OBJC=${CC:-gcc} AC_SUBST(OBJC) - OBJCFLAGS="-no-cpp-precomp -D_INTL_REDIRECT_MACROS -fconstant-string-class=NSConstantString $OBJCFLAGS" + OBJCFLAGS="-D_INTL_REDIRECT_MACROS $OBJCFLAGS" AC_SUBST(OBJCFLAGS) OBJCDEPMODE="depmode=gcc3" + dnl Do not use AC_SUBST(OBJCDEPMODE): we don't need it as long we use + dnl _AM_DEPENDENCIES (below), and doing the AC_SUBST elicits a warning + dnl from automake 1.6. ;; ppc-*-linux* | powerpc-*) |