Changeset 5247
- Timestamp:
- Feb 25, 2016 4:54:17 AM (9 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/README.txt
r3553 r5247 464 464 ... 465 465 Optional Features: 466 --enable-epoll Use epoll on Linux instead of select 466 467 --disable-floating-point Disable floating point where possible 467 468 --disable-sound Exclude sound (i.e. use null sound) -
pjproject/trunk/aconfigure
r5239 r5247 623 623 ac_main_obj 624 624 ac_host 625 ac_linux_poll626 625 opus_present 627 626 opus_h_present … … 689 688 ac_external_speex 690 689 ac_shared_libraries 690 ac_linux_poll 691 691 ac_os_objs 692 692 EGREP … … 5682 5682 5683 5683 5684 5684 5685 { $as_echo "$as_me:${as_lineno-$LINENO}: checking ioqueue backend" >&5 5685 5686 $as_echo_n "checking ioqueue backend... " >&6; } … … 5690 5691 { $as_echo "$as_me:${as_lineno-$LINENO}: result: /dev/epoll" >&5 5691 5692 $as_echo "/dev/epoll" >&6; } 5693 $as_echo "#define PJ_HAS_LINUX_EPOLL 1" >>confdefs.h 5694 5695 ac_linux_poll=epoll 5692 5696 5693 5697 else 5694 5698 5695 5699 ac_os_objs=ioqueue_select.o 5696 5700 { $as_echo "$as_me:${as_lineno-$LINENO}: result: select()" >&5 5697 5701 $as_echo "select()" >&6; } 5702 ac_linux_poll=select 5698 5703 5699 5704 fi … … 8412 8417 8413 8418 8414 8415 ac_linux_poll=select8416 8419 8417 8420 ac_host=unix -
pjproject/trunk/aconfigure.ac
r5239 r5247 411 411 dnl # 412 412 AC_SUBST(ac_os_objs) 413 AC_SUBST(ac_linux_poll) 413 414 AC_MSG_CHECKING([ioqueue backend]) 414 415 AC_ARG_ENABLE(epoll, … … 418 419 ac_os_objs=ioqueue_epoll.o 419 420 AC_MSG_RESULT([/dev/epoll]) 421 AC_DEFINE(PJ_HAS_LINUX_EPOLL,1) 422 ac_linux_poll=epoll 420 423 ], 421 424 [ 422 425 ac_os_objs=ioqueue_select.o 423 AC_MSG_RESULT([select()]) 426 AC_MSG_RESULT([select()]) 427 ac_linux_poll=select 424 428 ]) 425 429 … … 1880 1884 1881 1885 AC_SUBST(target) 1882 AC_SUBST(ac_linux_poll,select)1883 1886 AC_SUBST(ac_host,unix) 1884 1887 AC_SUBST(ac_main_obj) -
pjproject/trunk/pjlib/include/pj/compat/os_auto.h.in
r3841 r5247 129 129 #undef PJ_SELECT_NEEDS_NFDS 130 130 131 /* Was Linux epoll support enabled */ 132 #undef PJ_HAS_LINUX_EPOLL 133 131 134 /* Is errno a good way to retrieve OS errors? 132 135 */
Note: See TracChangeset
for help on using the changeset viewer.