mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-12 09:33:37 +02:00
2018-08-07 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'pam_rd' plug-in. * Removed rdchunk(1). * Upgraded Qt3 to Qt4.
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
## Makefile.am
|
||||
##
|
||||
## Makefile for rdvairplayd(8)
|
||||
##
|
||||
## (C) Copyright 2018 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
@@ -19,8 +17,8 @@
|
||||
##
|
||||
## Use automake to process this into a Makefile.in
|
||||
|
||||
AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -DQTDIR=\"@QT_DIR@\" @QT_CXXFLAGS@ -I$(top_srcdir)/lib
|
||||
LIBS = @QT_LIBS@ -L$(top_srcdir)/lib
|
||||
AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -I$(top_srcdir)/lib @QT4_CFLAGS@ -DQT3_SUPPORT -I/usr/include/Qt3Support
|
||||
LIBS = -L$(top_srcdir)/lib
|
||||
MOC = @QT_MOC@
|
||||
|
||||
# The dependency for qt's Meta Object Compiler (moc)
|
||||
@@ -34,7 +32,7 @@ dist_rdvairplayd_SOURCES = local_macros.cpp\
|
||||
|
||||
nodist_rdvairplayd_SOURCES = moc_rdvairplayd.cpp
|
||||
|
||||
rdvairplayd_LDADD = @LIB_RDLIBS@ @LIBVORBIS@
|
||||
rdvairplayd_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT4_LIBS@ -lQt3Support
|
||||
|
||||
CLEANFILES = *~\
|
||||
*.idb\
|
||||
|
@@ -119,7 +119,7 @@ MainObject::MainObject(QObject *parent)
|
||||
//
|
||||
// UDP Transmission Socket
|
||||
//
|
||||
air_nownext_socket=new QSocketDevice(QSocketDevice::Datagram);
|
||||
air_nownext_socket=new Q3SocketDevice(Q3SocketDevice::Datagram);
|
||||
|
||||
//
|
||||
// Log Machines
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#define RDVAIRPLAYD_H
|
||||
|
||||
#include <qobject.h>
|
||||
#include <qsocketdevice.h>
|
||||
#include <q3socketdevice.h>
|
||||
|
||||
#include <rdevent_player.h>
|
||||
#include <rd.h>
|
||||
@@ -56,7 +56,7 @@ class MainObject : public QObject
|
||||
bool air_start_starts[RD_RDVAIRPLAY_LOG_QUAN];
|
||||
std::vector<RDRLMHost *> air_plugin_hosts;
|
||||
RDEventPlayer *air_event_player;
|
||||
QSocketDevice *air_nownext_socket;
|
||||
Q3SocketDevice *air_nownext_socket;
|
||||
QDateTime air_startup_datetime;
|
||||
RDAirPlayConf::ExitCode air_previous_exit_code;
|
||||
QTimer *air_exit_timer;
|
||||
|
Reference in New Issue
Block a user