diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-12-02 14:54:35 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-12-02 14:54:35 (GMT) |
commit | d2d57f02eabbe81ea976f31e2af66c80c01a2a0b (patch) | |
tree | 0af428e60324ef94f5e04cee664374d5907c36ac /configure | |
parent | d384b6c7459cffcbb30bdd0ab06bde6f0cd12688 (diff) | |
download | Doxygen-d2d57f02eabbe81ea976f31e2af66c80c01a2a0b.zip Doxygen-d2d57f02eabbe81ea976f31e2af66c80c01a2a0b.tar.gz Doxygen-d2d57f02eabbe81ea976f31e2af66c80c01a2a0b.tar.bz2 |
Release-1.5.1-20061202
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -20,7 +20,7 @@ doxygen_version_minor=5 doxygen_version_revision=1 #NOTE: Setting version_mmn to "NO" will omit mmn info from the package. -doxygen_version_mmn=NO +doxygen_version_mmn=20061202 bin_dirs=`echo $PATH | sed -e "s/:/ /g"` @@ -217,6 +217,9 @@ if test -z "$f_platform"; then Cygwin:*) f_platform=win32-g++ ;; + CYGWIN:*) + f_platform=win32-g++ + ;; *MiNT:*) f_platform=m68k-atari-mint-g++ ;; @@ -432,15 +435,13 @@ fi test -f .makeconfig && rm .makeconfig test -f .tmakeconfig && rm .tmakeconfig -if test -z $PWD; then - PWD=`pwd` -fi +configPWD=`pwd` cat > .makeconfig <<EOF -DOXYGEN = $PWD -TMAKEPATH = $PWD/tmake/lib/$f_platform +DOXYGEN = $configPWD +TMAKEPATH = $configPWD/tmake/lib/$f_platform ENV = env TMAKEPATH=\$(TMAKEPATH) -TMAKE = $PWD/tmake/bin/tmake +TMAKE = $configPWD/tmake/bin/tmake MAKE = $f_make PERL = $f_perl RM = rm -f @@ -513,6 +514,11 @@ EOF EOF fi fi +if test "$f_platform" = "hpux-g++"; then + cat >> .tmakeconfig <<EOF + TMAKE_CXXFLAGS += -D_LARGEFILE_SOURCE +EOF +fi if test "$f_wizard" = YES; then cat >> .tmakeconfig <<EOF TMAKE_MOC = $QTDIR/bin/moc |