diff options
author | jmz <jmz@FreeBSD.org> | 1995-09-19 04:30:21 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1995-09-19 04:30:21 +0800 |
commit | c804527d5b3bdb2821414d551b48950c4483f5f8 (patch) | |
tree | a901afaff395346bad175ecf4e30140d0a58c392 /x11 | |
parent | 0c609fa628345f96a32098f1b94c7cac0c04069a (diff) | |
download | freebsd-ports-graphics-c804527d5b3bdb2821414d551b48950c4483f5f8.tar.gz freebsd-ports-graphics-c804527d5b3bdb2821414d551b48950c4483f5f8.tar.zst freebsd-ports-graphics-c804527d5b3bdb2821414d551b48950c4483f5f8.zip |
Add -fno-strength-reduce to compilation flags
Ask the user if he/she wants to use gnu malloc
Diffstat (limited to 'x11')
-rw-r--r-- | x11/XFree86-4-clients/scripts/configure | 9 | ||||
-rw-r--r-- | x11/XFree86-4-libraries/scripts/configure | 9 | ||||
-rw-r--r-- | x11/XFree86-4/scripts/configure | 9 | ||||
-rw-r--r-- | x11/XFree86/scripts/configure | 9 |
4 files changed, 20 insertions, 16 deletions
diff --git a/x11/XFree86-4-clients/scripts/configure b/x11/XFree86-4-clients/scripts/configure index 3e8788b3ca5..3a997b35f82 100644 --- a/x11/XFree86-4-clients/scripts/configure +++ b/x11/XFree86-4-clients/scripts/configure @@ -92,6 +92,9 @@ if [ $answ = NO ]; then echo "#define BuildXIE NO" >> $F fi echo +yesno "Do you want your X applications linked with gnu malloc? [YES] " +gnumalloc=$answ +echo echo "End of configuration questions. No more user input required" echo } @@ -193,11 +196,9 @@ sed -e "s/2.0.5/$version/" \ -e "s/OSMajorVersion *2/OSMajorVersion $1/" \ -e "s/OSMinorVersion *0/OSMinorVersion $2/" \ -e "s/OSTeenyVersion *5/OSTeenyVersion $3/" \ + -e "s/m486/m486 -fno-strength-reduce/" \ + -e "s/UseGnuMalloc.*YES/UseGnuMalloc $gnumalloc/" \ <FreeBSD.cf.old >FreeBSD.cf -#you may change ExtraLibraries too: -#echo "#undef ExtraLibraries >> FreeBSD.cf -#echo "#define ExtraLibraries -lgnumalloc >>FreeBSD.cf - exit 0 diff --git a/x11/XFree86-4-libraries/scripts/configure b/x11/XFree86-4-libraries/scripts/configure index 3e8788b3ca5..3a997b35f82 100644 --- a/x11/XFree86-4-libraries/scripts/configure +++ b/x11/XFree86-4-libraries/scripts/configure @@ -92,6 +92,9 @@ if [ $answ = NO ]; then echo "#define BuildXIE NO" >> $F fi echo +yesno "Do you want your X applications linked with gnu malloc? [YES] " +gnumalloc=$answ +echo echo "End of configuration questions. No more user input required" echo } @@ -193,11 +196,9 @@ sed -e "s/2.0.5/$version/" \ -e "s/OSMajorVersion *2/OSMajorVersion $1/" \ -e "s/OSMinorVersion *0/OSMinorVersion $2/" \ -e "s/OSTeenyVersion *5/OSTeenyVersion $3/" \ + -e "s/m486/m486 -fno-strength-reduce/" \ + -e "s/UseGnuMalloc.*YES/UseGnuMalloc $gnumalloc/" \ <FreeBSD.cf.old >FreeBSD.cf -#you may change ExtraLibraries too: -#echo "#undef ExtraLibraries >> FreeBSD.cf -#echo "#define ExtraLibraries -lgnumalloc >>FreeBSD.cf - exit 0 diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure index 3e8788b3ca5..3a997b35f82 100644 --- a/x11/XFree86-4/scripts/configure +++ b/x11/XFree86-4/scripts/configure @@ -92,6 +92,9 @@ if [ $answ = NO ]; then echo "#define BuildXIE NO" >> $F fi echo +yesno "Do you want your X applications linked with gnu malloc? [YES] " +gnumalloc=$answ +echo echo "End of configuration questions. No more user input required" echo } @@ -193,11 +196,9 @@ sed -e "s/2.0.5/$version/" \ -e "s/OSMajorVersion *2/OSMajorVersion $1/" \ -e "s/OSMinorVersion *0/OSMinorVersion $2/" \ -e "s/OSTeenyVersion *5/OSTeenyVersion $3/" \ + -e "s/m486/m486 -fno-strength-reduce/" \ + -e "s/UseGnuMalloc.*YES/UseGnuMalloc $gnumalloc/" \ <FreeBSD.cf.old >FreeBSD.cf -#you may change ExtraLibraries too: -#echo "#undef ExtraLibraries >> FreeBSD.cf -#echo "#define ExtraLibraries -lgnumalloc >>FreeBSD.cf - exit 0 diff --git a/x11/XFree86/scripts/configure b/x11/XFree86/scripts/configure index 3e8788b3ca5..3a997b35f82 100644 --- a/x11/XFree86/scripts/configure +++ b/x11/XFree86/scripts/configure @@ -92,6 +92,9 @@ if [ $answ = NO ]; then echo "#define BuildXIE NO" >> $F fi echo +yesno "Do you want your X applications linked with gnu malloc? [YES] " +gnumalloc=$answ +echo echo "End of configuration questions. No more user input required" echo } @@ -193,11 +196,9 @@ sed -e "s/2.0.5/$version/" \ -e "s/OSMajorVersion *2/OSMajorVersion $1/" \ -e "s/OSMinorVersion *0/OSMinorVersion $2/" \ -e "s/OSTeenyVersion *5/OSTeenyVersion $3/" \ + -e "s/m486/m486 -fno-strength-reduce/" \ + -e "s/UseGnuMalloc.*YES/UseGnuMalloc $gnumalloc/" \ <FreeBSD.cf.old >FreeBSD.cf -#you may change ExtraLibraries too: -#echo "#undef ExtraLibraries >> FreeBSD.cf -#echo "#define ExtraLibraries -lgnumalloc >>FreeBSD.cf - exit 0 |