Changeset 76779 in vbox for trunk/src/VBox/RDP/client-1.8.4/configure.ac
- Timestamp:
- Jan 11, 2019 2:44:34 PM (6 years ago)
- Location:
- trunk/src/VBox/RDP/client-1.8.4
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/RDP/client-1.8.4/configure.ac
r55123 r76779 1 AC_INIT(rdesktop, 1.8. 3)1 AC_INIT(rdesktop, 1.8.4) 2 2 3 3 AC_CONFIG_SRCDIR([rdesktop.c]) … … 9 9 CFLAGS="$CFLAGS -Wall" 10 10 fi 11 AC_PROG_CXX12 11 13 12 AC_PROG_INSTALL … … 33 32 AC_SEARCH_LIBS(socket, socket) 34 33 AC_SEARCH_LIBS(inet_aton, resolv) 35 AC_SEARCH_LIBS(clock_gettime, rt)36 34 37 35 AC_CHECK_HEADER(sys/select.h, AC_DEFINE(HAVE_SYS_SELECT_H)) … … 225 223 } 226 224 return 0; 227 }], 228 [AC_MSG_RESULT(no)], 229 [AC_MSG_RESULT(yes) 230 AC_DEFINE(NEED_ALIGN)], 231 [AC_MSG_RESULT(assuming yes) 225 }], 226 [AC_MSG_RESULT(no)], 227 [AC_MSG_RESULT(yes) 228 AC_DEFINE(NEED_ALIGN)], 229 [AC_MSG_RESULT(assuming yes) 232 230 AC_DEFINE(NEED_ALIGN)]) 233 234 #235 # linux/compiler.h236 #237 AC_MSG_CHECKING([if linux/compiler.h is required])238 AC_TRY_COMPILE([239 #include <linux/compiler.h>240 ],[],241 [AC_MSG_RESULT(yes)242 AC_DEFINE(VBOX_WITH_LINUX_COMPILER_H)],243 [AC_MSG_RESULT(no)])244 231 245 232 … … 265 252 AC_ARG_WITH(libvncserver, 266 253 [ --with-libvncserver make rdp2vnc], 267 [ 254 [ 268 255 VNCINC=`$vncserverconfig --cflags` 269 256 AC_SUBST(VNCINC) … … 284 271 AC_ARG_WITH(sound, 285 272 [ --with-sound select sound system ("oss", "sgi", "sun", "alsa" or "libao") ], 286 [ 287 sound="$withval" 273 [ 274 sound="$withval" 288 275 ]) 289 276 … … 292 279 AC_CHECK_HEADER(sys/audioio.h, [HAVE_SUN=1], [HAVE_SUN=0]) 293 280 294 AC_ARG_ENABLE(static-libsamplerate, 295 [ --enable-static-libsamplerate link libsamplerate statically], 296 [static_libsamplerate=yes], 281 AC_ARG_ENABLE(static-libsamplerate, 282 [ --enable-static-libsamplerate link libsamplerate statically], 283 [static_libsamplerate=yes], 297 284 [static_libsamplerate=no]) 298 285 … … 867 854 AC_ARG_WITH(ipv6, 868 855 [ --with-ipv6 enable IPv6-support], 869 [ 856 [ 870 857 if test $withval != "no"; 871 858 then … … 882 869 [ 883 870 if test $withval != "no"; 884 then 871 then 885 872 AC_DEFINE(WITH_DEBUG,1) 886 873 fi … … 891 878 [ 892 879 if test $withval != "no"; 893 then 880 then 894 881 AC_DEFINE(WITH_DEBUG_KBD,1) 895 882 fi … … 900 887 [ 901 888 if test $withval != "no"; 902 then 889 then 903 890 AC_DEFINE(WITH_DEBUG_RDP5,1) 904 891 fi … … 909 896 [ 910 897 if test $withval != "no"; 911 then 898 then 912 899 AC_DEFINE(WITH_DEBUG_CLIPBOARD,1) 913 900 fi … … 918 905 [ 919 906 if test $withval != "no"; 920 then 907 then 921 908 AC_DEFINE(WITH_DEBUG_SOUND,1) 922 909 fi … … 927 914 [ 928 915 if test $withval != "no"; 929 then 916 then 930 917 AC_DEFINE(WITH_DEBUG_CHANNEL,1) 931 918 fi … … 936 923 [ 937 924 if test $withval != "no"; 938 then 925 then 939 926 AC_DEFINE(WITH_DEBUG_SEAMLESS,1) 940 927 fi
Note:
See TracChangeset
for help on using the changeset viewer.