diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-10-30 21:12:45 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-10-30 21:12:45 (GMT) |
commit | 1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6 (patch) | |
tree | 7d5c1ef91e61313f10266a746afd0d903d1e5f2a /configure | |
parent | a1116d64863123e6eda545de7ade61ae7dec7ffb (diff) | |
download | Doxygen-1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6.zip Doxygen-1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6.tar.gz Doxygen-1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6.tar.bz2 |
Release-1.2.3
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -351,26 +351,26 @@ touch .tmakeconfig if test "$f_shared" = NO; then if test "$f_platform" = "osf1-cxx" -o "$f_platform" = "irix-n32"; then cat >> .tmakeconfig <<EOF - TMAKE_LFLAGS = -non_shared + TMAKE_LFLAGS += -non_shared EOF elif test "$f_platform" = "solaris-cc"; then cat >> .tmakeconfig <<EOF - TMAKE_LFLAGS = -Bstatic + TMAKE_LFLAGS += -Bstatic EOF elif test "$f_platform" = "hpux-cc"; then cat >> .tmakeconfig <<EOF - TMAKE_LFLAGS = -noshared + TMAKE_LFLAGS += -noshared EOF else cat >> .tmakeconfig <<EOF - TMAKE_LFLAGS = -static + TMAKE_LFLAGS += -static EOF fi fi if test "$f_english" = YES; then cat >> .tmakeconfig <<EOF -TMAKE_CXXFLAGS = -DENGLISH_ONLY +TMAKE_CXXFLAGS += -DENGLISH_ONLY EOF fi |