Ignore:
Timestamp:
Mar 30, 2012 7:10:13 AM (12 years ago)
Author:
bennylp
Message:

Re #1474: Merged all changes from 1.12 - HEAD (from the 1.x branch)

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk

  • pjproject/trunk/aconfigure.ac

    r3927 r3999  
    1 AC_INIT(pjproject,1.x) 
     1AC_INIT(pjproject,2.x) 
    22 
    33host_orig="$host" 
     
    9090    *) 
    9191        ac_pjdir=`pwd` 
     92        ;; 
     93esac 
     94 
     95AC_SUBST(ac_shlib_suffix) 
     96case $target in 
     97    *mingw* | *cygw* | *win32* | *w32* ) 
     98        ac_shlib_suffix=dll 
     99        ;; 
     100    *darwin*) 
     101        ac_shlib_suffix=dylib 
     102        ;; 
     103    *) 
     104        ac_shlib_suffix=so 
    92105        ;; 
    93106esac 
     
    775788             ) 
    776789 
     790dnl # Include libsamplerate 
     791AC_SUBST(ac_resample_dll) 
     792AC_ARG_ENABLE(resample_dll, 
     793              AC_HELP_STRING([--enable-resample-dll], 
     794                             [Build libresample as shared library]), 
     795              [if test "$enable_resample_dll" = "yes"; then 
     796                [ac_resample_dll=1] 
     797                AC_MSG_RESULT([Building libresample as shared library... yes]) 
     798               fi], 
     799              AC_MSG_RESULT([Building libresample as shared library... no]) 
     800              ) 
     801 
    777802dnl # SDL alt prefix 
    778803AC_ARG_WITH(sdl, 
     
    12171242              ]) 
    12181243 
    1219  
    12201244dnl ########################################## 
    12211245dnl # 
Note: See TracChangeset for help on using the changeset viewer.