From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (67-5-177-213.ptld.qwest.net [67.5.177.213]) by hurricane.the-brannons.com (Postfix) with ESMTPSA id 483A27925C; Thu, 17 Dec 2015 02:44:15 -0800 (PST) From: Chris Brannon To: Adam Thompson Cc: Karl Dahlke , Edbrowse-dev@lists.the-brannons.com References: <20151214153200.GA3088@acer.attlocal.net> <87wpsgnbzg.fsf@mushroom.localdomain> <20151114131201.eklhad@comcast.net> <87d1u8mhtt.fsf@mushroom.localdomain> <20151215125827.GA702@toaster.adamthompson.me.uk> Date: Thu, 17 Dec 2015 02:44:19 -0800 In-Reply-To: <20151215125827.GA702@toaster.adamthompson.me.uk> (Adam Thompson's message of "Tue, 15 Dec 2015 12:58:27 +0000") Message-ID: <87bn9pjqws.fsf@mushroom.localdomain> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Edbrowse-dev] edbrowse and edbrowse-js not communicating X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Dec 2015 10:44:15 -0000 Adam Thompson writes: > Definitely, otherwise we leave ourselves open to all sorts of strangeness in the future. Well unfortunately checking for Tidy versions is going to be a smidge more involved than I'd like. Basically at compile time, we can trivially determine whether we're trying to link against tidy or tidy-html5, refusing to link against old tidy. But then we also have to do a runtime check, to make sure that we have a recent enough tidy-html5. >> That begs a question. At some point, should we consider deprecating all >> of our makefiles? > I was actually planning to send an email asking this, Yes, it works quite well, doesn't it? I've always been a bit fond of our single makefile approach, but cmake is so much better for the cross-platform stuff. If we keep the makefiles around, our biggest concern will be guaranteeing that they never get out of sync with cmake. > is there any chance we could add an install (and even uninstall) > rule just to make everything a bit more standard and in case we ever need to > compile parts of the code as shared objects? Sure. I added the install rule tonight. It's too bad that cmake doesn't give you an uninstall rule "for free", but they describe how to craft one in their FAQ. I'll be happy to add it if you like. -- Chris