head 1.2; access; symbols pkgsrc-2019Q4:1.1.0.54 pkgsrc-2019Q4-base:1.1 pkgsrc-2019Q3:1.1.0.50 pkgsrc-2019Q3-base:1.1 pkgsrc-2019Q2:1.1.0.48 pkgsrc-2019Q2-base:1.1 pkgsrc-2019Q1:1.1.0.46 pkgsrc-2019Q1-base:1.1 pkgsrc-2018Q4:1.1.0.44 pkgsrc-2018Q4-base:1.1 pkgsrc-2018Q3:1.1.0.42 pkgsrc-2018Q3-base:1.1 pkgsrc-2018Q2:1.1.0.40 pkgsrc-2018Q2-base:1.1 pkgsrc-2018Q1:1.1.0.38 pkgsrc-2018Q1-base:1.1 pkgsrc-2017Q4:1.1.0.36 pkgsrc-2017Q4-base:1.1 pkgsrc-2017Q3:1.1.0.34 pkgsrc-2017Q3-base:1.1 pkgsrc-2017Q2:1.1.0.30 pkgsrc-2017Q2-base:1.1 pkgsrc-2017Q1:1.1.0.28 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.26 pkgsrc-2016Q4-base:1.1 pkgsrc-2016Q3:1.1.0.24 pkgsrc-2016Q3-base:1.1 pkgsrc-2016Q2:1.1.0.22 pkgsrc-2016Q2-base:1.1 pkgsrc-2016Q1:1.1.0.20 pkgsrc-2016Q1-base:1.1 pkgsrc-2015Q4:1.1.0.18 pkgsrc-2015Q4-base:1.1 pkgsrc-2015Q3:1.1.0.16 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.14 pkgsrc-2015Q2-base:1.1 pkgsrc-2015Q1:1.1.0.12 pkgsrc-2015Q1-base:1.1 pkgsrc-2014Q4:1.1.0.10 pkgsrc-2014Q4-base:1.1 pkgsrc-2014Q3:1.1.0.8 pkgsrc-2014Q3-base:1.1 pkgsrc-2014Q2:1.1.0.6 pkgsrc-2014Q2-base:1.1 pkgsrc-2014Q1:1.1.0.4 pkgsrc-2014Q1-base:1.1 pkgsrc-2013Q4:1.1.0.2 pkgsrc-2013Q4-base:1.1; locks; strict; comment @// @; 1.2 date 2020.01.16.14.03.50; author nia; state dead; branches; next 1.1; commitid 5nZfYLMzVNfebVSB; 1.1 date 2013.10.14.14.36.12; author joerg; state Exp; branches; next ; commitid WrGggArqgzdUNg9x; desc @@ 1.2 log @*: Remove Ekiga and related packages. No OpenSSL 1.1 support and upstream development is effectively stalled. Also various other dead dependencies: gstreamer0.10, sdl12, esound, GNOME 2 libgnomeui... @ text @$NetBSD: patch-src_ptlib_unix_svcproc.cxx,v 1.1 2013/10/14 14:36:12 joerg Exp $ --- src/ptlib/unix/svcproc.cxx.orig 2013-10-14 12:48:18.000000000 +0000 +++ src/ptlib/unix/svcproc.cxx @@@@ -217,7 +217,8 @@@@ int PServiceProcess::InitialiseService() pid_t pid; { - ifstream pidfile(pidfilename); + const char *pidfilename2(pidfilename); + ifstream pidfile(pidfilename2); if (!pidfile.is_open()) { cout << "Could not open pid file: \"" << pidfilename << "\"" " - " << strerror(errno) << endl; @@@@ -384,7 +385,8 @@@@ int PServiceProcess::InitialiseService() // Run as a daemon, ie fork if (!pidfilename) { - ifstream pidfile(pidfilename); + const char *pidfilename2(pidfilename); + ifstream pidfile(pidfilename2); if (pidfile.is_open()) { pid_t pid; pidfile >> pid; @@@@ -412,7 +414,8 @@@@ int PServiceProcess::InitialiseService() cout << "Daemon started with pid " << pid << endl; if (!pidfilename) { // Write out the child pid to magic file in /var/run (at least for linux) - ofstream pidfile(pidfilename); + const char *pidfilename2(pidfilename); + ofstream pidfile(pidfilename2); if (pidfile.is_open()) pidfile << pid; else @ 1.1 log @Don't use libstdc++ extensions with libc++. Fix build with newer bison. Disambiguate conversion from PString to ifstream argument. @ text @d1 1 a1 1 $NetBSD$ @