- Timestamp:
- 2012-09-15T15:59:17Z (12 years ago)
- Branches:
- master
- Children:
- b3d99e3
- Parents:
- 68709f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r68709f5 r7281ad1 42 42 ssl=auto 43 43 44 pie=1 45 44 46 arch=`uname -s` 45 47 cpu=`uname -m` … … 80 82 --debug=0/1 Disable/enable debugging $debug 81 83 --strip=0/1 Disable/enable binary stripping $strip 84 --pie=0/1 Build position independent executable $pie 82 85 --gcov=0/1 Disable/enable test coverage reporting $gcov 83 86 --plugins=0/1 Disable/enable plugins support $plugins … … 90 93 --ssl=... SSL library to use (gnutls, nss, openssl, bogus, auto) 91 94 $ssl 95 92 96 93 97 --target=... Cross compilation target same as host … … 198 202 else 199 203 [ -z "$CFLAGS" ] && CFLAGS="-O2 -fno-strict-aliasing" 204 fi 205 206 if [ "$pie" = "1" ]; then 207 echo 'CFLAGS_BITLBEE=-fPIE' >> Makefile.settings 208 echo 'LDFLAGS_BITLBEE=-pie' >> Makefile.settings 200 209 fi 201 210 … … 748 757 fi 749 758 759 if [ "$pie" = "1" ]; then 760 echo ' Building PIE executable' 761 else 762 echo ' Building non-PIE executable' 763 fi 764 750 765 if [ "$strip" = "1" ]; then 751 766 echo ' Binary stripping enabled.'
Note: See TracChangeset
for help on using the changeset viewer.