Re: Specifying Flag Order?

2013-05-23 Thread Gavin Smith
On Thu, May 23, 2013 at 12:46 AM, Jordan H. jorda...@fastmail.fm wrote: I'm using mysql in a program. Here is a snipped of my Makefile.am: project_LDADD += -lboost_thread project_LDADD += -lboost_regex project_LDADD += -lboost_system AM_LDFLAGS = -L/usr/local/lib

Re: Specifying Flag Order?

2013-05-23 Thread Jordan H.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Yes, I'll try that. Thank you. I'm still trying to get a hang of what all the macros and variables mean...I understand the basic syntax, at least. While we're on the topic, any resources out there to help someone get a handle on vars/macros? I see

Re: Specifying Flag Order?

2013-05-23 Thread Jordan H.
I think I'm getting close to understanding what's going on with configure.ac and Makefile. Here's what I understand... I used to think of them separately...that `./configure` just warns the user of a library they're missing; now I'm realizing `./configure` (generated from `configure.ac`, of

Specifying Flag Order?

2013-05-22 Thread Jordan H.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 I'm using mysql in a program. Here is a snipped of my Makefile.am: project_LDADD += -lboost_thread project_LDADD += -lboost_regex project_LDADD += -lboost_system AM_LDFLAGS = -L/usr/local/lib AM_LDFLAGS += `mysql_config

Re: Specifying Flag Order?

2013-05-22 Thread Luke Mewburn
On Wed, May 22, 2013 at 04:46:36PM -0700, Jordan H. wrote: | I'm using mysql in a program. Here is a snipped of my Makefile.am: | | project_LDADD += -lboost_thread | project_LDADD += -lboost_regex | project_LDADD += -lboost_system | | AM_LDFLAGS = -L/usr/local/lib