Changeset 9501
- Timestamp:
- 09/05/08 02:38:37
- Files:
-
- usrp2/trunk/host/configure.ac (modified) (2 diffs)
- usrp2/trunk/host/lib (modified) (1 prop)
- usrp2/trunk/host/lib/Makefile.am (modified) (1 diff)
- usrp2/trunk/host/lib/usrp2_socket_opener.cc (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
usrp2/trunk/host/configure.ac
r9496 r9501 118 118 119 119 AC_CHECK_HEADERS(arpa/inet.h netinet/in.h byteswap.h sys/select.h linux/if_packet.h) 120 AC_CHECK_HEADERS(sys/types.h sys/socket.h sys/un.h) 120 121 121 122 dnl Checks for typedefs, structures, and compiler characteristics. … … 126 127 AC_C_BIGENDIAN 127 128 AC_STRUCT_TM 129 130 AC_CHECK_MEMBERS([struct msghdr.msg_control, 131 struct msghdr.msg_accrights, 132 struct cmsgcred.cmcred_uid, 133 struct ucred.uid], 134 [],[], 135 [#define __USE_GNU 1 136 #include <sys/types.h> 137 #include <sys/socket.h> 138 #include <sys/un.h>]) 128 139 129 140 dnl Checks for library functions. usrp2/trunk/host/lib
- Property svn:ignore changed from .libs .deps Makefile Makefile.in to .libs .deps Makefile Makefile.in usrp2_socket_opener
usrp2/trunk/host/lib/Makefile.am
r9496 r9501 20 20 #AM_CXXFLAGS = -Wall -Werror (handle this with: $ ./configure CXXFLAGS="-Wall -Werror -O2 -g") 21 21 AM_CPPFLAGS = $(BOOST_CPPFLAGS) $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_INCLUDES) $(GRUEL_CFLAGS) 22 23 bin_PROGRAMS = usrp2_socket_opener 24 usrp2_socket_opener_SOURCES = usrp2_socket_opener.cc 22 25 23 26 lib_LTLIBRARIES = \
