mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-09 15:26:04 +00:00
Merge pull request #1751 from c-rack/remove-zmq-utils-includes
Problem: deprecated `zmq_utils.h` is still included
This commit is contained in:
commit
e1254e100e
@ -497,8 +497,7 @@ if(MINGW)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
include_directories(include ${CMAKE_CURRENT_BINARY_DIR})
|
include_directories(include ${CMAKE_CURRENT_BINARY_DIR})
|
||||||
set(public_headers include/zmq.h
|
set(public_headers include/zmq.h)
|
||||||
include/zmq_utils.h)
|
|
||||||
|
|
||||||
set(readme-docs AUTHORS
|
set(readme-docs AUTHORS
|
||||||
COPYING
|
COPYING
|
||||||
|
@ -28,8 +28,8 @@
|
|||||||
|
|
||||||
*************************************************************************
|
*************************************************************************
|
||||||
NOTE to contributors. This file comprises the principal public contract
|
NOTE to contributors. This file comprises the principal public contract
|
||||||
for ZeroMQ API users (along with zmq_utils.h). Any change to this file
|
for ZeroMQ API users. Any change to this file supplied in a stable
|
||||||
supplied in a stable release SHOULD not break existing applications.
|
release SHOULD not break existing applications.
|
||||||
In practice this means that the value of constants must not change, and
|
In practice this means that the value of constants must not change, and
|
||||||
that old values may not be reused for new constants.
|
that old values may not be reused for new constants.
|
||||||
*************************************************************************
|
*************************************************************************
|
||||||
|
@ -120,7 +120,6 @@ This package contains ZeroMQ related development libraries and header files.
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_includedir}/zmq.h
|
%{_includedir}/zmq.h
|
||||||
%{_includedir}/zmq_utils.h
|
|
||||||
|
|
||||||
%{_libdir}/libzmq.la
|
%{_libdir}/libzmq.la
|
||||||
%{_libdir}/libzmq.a
|
%{_libdir}/libzmq.a
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -36,7 +36,6 @@
|
|||||||
#include "atomic_counter.hpp"
|
#include "atomic_counter.hpp"
|
||||||
#include "atomic_ptr.hpp"
|
#include "atomic_ptr.hpp"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
#if !defined ZMQ_HAVE_WINDOWS
|
#if !defined ZMQ_HAVE_WINDOWS
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "testutil.hpp"
|
#include "testutil.hpp"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
int main (void)
|
int main (void)
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "testutil.hpp"
|
#include "testutil.hpp"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
// Asynchronous client-to-server (DEALER to ROUTER) - pure libzmq
|
// Asynchronous client-to-server (DEALER to ROUTER) - pure libzmq
|
||||||
//
|
//
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "testutil.hpp"
|
#include "testutil.hpp"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "testutil.hpp"
|
#include "testutil.hpp"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
// This is a test for issue #1382. The server thread creates a SUB-PUSH
|
// This is a test for issue #1382. The server thread creates a SUB-PUSH
|
||||||
// steerable proxy. The main process then sends messages to the SUB
|
// steerable proxy. The main process then sends messages to the SUB
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#undef NDEBUG
|
#undef NDEBUG
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../include/zmq.h"
|
#include "../include/zmq.h"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
|
|
||||||
#include "macros.hpp"
|
#include "macros.hpp"
|
||||||
#include "testutil.hpp"
|
#include "testutil.hpp"
|
||||||
#include "../include/zmq_utils.h"
|
|
||||||
|
|
||||||
#if defined ZMQ_HAVE_WINDOWS
|
#if defined ZMQ_HAVE_WINDOWS
|
||||||
#include "windows.hpp"
|
#include "windows.hpp"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user