Changeset 5669:b43ae8224d92 in roaraudio


Ignore:
Timestamp:
09/23/12 13:04:04 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Added new configure option '--root' (Closes: #326)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5665 r5669  
    44        * Changed plugin ABI version number for roard. 
    55        * Added support for v3 and v5 UUIDs. 
     6        * Added new configure option '--root' (Closes: #326) 
    67 
    78v. 1.0beta6 - Fri Sep 21 2012 18:03 CEST 
  • configure

    r5641 r5669  
    224224   echo '--incpath DIR               - Add DIR to search list for headers' 
    225225   echo '--addpath DIR               - Add DIR/lib to lib, DIR/include to header search list' 
     226   echo '--root DIR                  - The same as "--addpath DIR --prefix DIR"' 
    226227   echo 
    227228   echo '--cflags FLAGS              - Sets additional compiler flags (default: '"$CFLAGS"')' 
     
    353354   shift; 
    354355  ;; 
     356  '--root') 
     357   LDPATH="$LDPATH -L$2/lib/" 
     358   INCPATH="$INCPATH -I$2/include/" 
     359   PREFIX="$2" 
     360   shift; 
     361  ;; 
    355362  '--cflags') 
    356363   CFLAGS="$2" 
Note: See TracChangeset for help on using the changeset viewer.