Changeset 5393


Ignore:
Timestamp:
Jul 20, 2016 7:03:49 AM (8 years ago)
Author:
riza
Message:

Re #1928 (misc): Remove trailing comma that might cause --disable-libyuv to not
work.
Thanks to Kyle Kurz for the report.

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r5364 r5393  
    752752oldincludedir 
    753753includedir 
     754runstatedir 
    754755localstatedir 
    755756sharedstatedir 
     
    874875sharedstatedir='${prefix}/com' 
    875876localstatedir='${prefix}/var' 
     877runstatedir='${localstatedir}/run' 
    876878includedir='${prefix}/include' 
    877879oldincludedir='/usr/include' 
     
    11261128    silent=yes ;; 
    11271129 
     1130  -runstatedir | --runstatedir | --runstatedi | --runstated \ 
     1131  | --runstate | --runstat | --runsta | --runst | --runs \ 
     1132  | --run | --ru | --r) 
     1133    ac_prev=runstatedir ;; 
     1134  -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ 
     1135  | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ 
     1136  | --run=* | --ru=* | --r=*) 
     1137    runstatedir=$ac_optarg ;; 
     1138 
    11281139  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) 
    11291140    ac_prev=sbindir ;; 
     
    12631274                datadir sysconfdir sharedstatedir localstatedir includedir \ 
    12641275                oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ 
    1265                 libdir localedir mandir 
     1276                libdir localedir mandir runstatedir 
    12661277do 
    12671278  eval ac_val=\$$ac_var 
     
    14161427  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com] 
    14171428  --localstatedir=DIR     modifiable single-machine data [PREFIX/var] 
     1429  --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run] 
    14181430  --libdir=DIR            object code libraries [EPREFIX/lib] 
    14191431  --includedir=DIR        C header files [PREFIX/include] 
     
    83808392if test "${enable_libyuv+set}" = set; then : 
    83818393  enableval=$enable_libyuv; if test "$enable_libyuv" = "no"; then 
    8382                 ac_no_yuv=1, 
     8394                ac_no_yuv=1 
    83838395                $as_echo "#define PJMEDIA_HAS_LIBYUV 0" >>confdefs.h 
    83848396 
  • pjproject/trunk/aconfigure.ac

    r5364 r5393  
    17931793                             [Exclude libyuv in the build]), 
    17941794              [if test "$enable_libyuv" = "no"; then 
    1795                 [ac_no_yuv=1], 
     1795                [ac_no_yuv=1] 
    17961796                AC_DEFINE(PJMEDIA_HAS_LIBYUV,0) 
    17971797                AC_MSG_RESULT([Checking if libyuv is disabled...yes]) 
Note: See TracChangeset for help on using the changeset viewer.