Commit e1254e10 authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1751 from c-rack/remove-zmq-utils-includes

Problem: deprecated `zmq_utils.h` is still included
parents 435535ce 7da3ee13
......@@ -497,8 +497,7 @@ if(MINGW)
endif()
include_directories(include ${CMAKE_CURRENT_BINARY_DIR})
set(public_headers include/zmq.h
include/zmq_utils.h)
set(public_headers include/zmq.h)
set(readme-docs AUTHORS
COPYING
......
......@@ -28,8 +28,8 @@
*************************************************************************
NOTE to contributors. This file comprises the principal public contract
for ZeroMQ API users (along with zmq_utils.h). Any change to this file
supplied in a stable release SHOULD not break existing applications.
for ZeroMQ API users. Any change to this file supplied in a stable
release SHOULD not break existing applications.
In practice this means that the value of constants must not change, and
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
%defattr(-,root,root,-)
%{_includedir}/zmq.h
%{_includedir}/zmq_utils.h
%{_libdir}/libzmq.la
%{_libdir}/libzmq.a
......
......@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
......
......@@ -30,7 +30,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
......
......@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
......
......@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
......
......@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
......
......@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
......
......@@ -36,7 +36,6 @@
#include "atomic_counter.hpp"
#include "atomic_ptr.hpp"
#include <assert.h>
#include "../include/zmq_utils.h"
#if !defined ZMQ_HAVE_WINDOWS
#include <unistd.h>
......
......@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
int main (void)
{
......
......@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
// Asynchronous client-to-server (DEALER to ROUTER) - pure libzmq
//
......
......@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
......
......@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
// 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
......
......@@ -30,7 +30,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#undef NDEBUG
......
......@@ -30,7 +30,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <string.h>
#include <unistd.h>
......
......@@ -29,7 +29,6 @@
#include "macros.hpp"
#include "testutil.hpp"
#include "../include/zmq_utils.h"
#if defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment