Date: Tue, 10 Jan 2012 09:52:10 -0600 From: Paul Schmehl <pschmehl_lists@tx.rr.com> To: Da Rock <freebsd-ports@herveybayaustralia.com.au>, freebsd-ports@freebsd.org Subject: Re: define issue - linux-f10-nss_ldap: my first port - be gentle :) Message-ID: <A9BE62A743AF36DDB4A23F4B@utd71538.utdallas.edu> In-Reply-To: <4F0B8BD0.5040405@herveybayaustralia.com.au> References: <4F0446B7.4090703@herveybayaustralia.com.au> <20120104142757.1c77c347@ernst.jennejohn.org> <4F04E648.9090206@herveybayaustralia.com.au> <20120105121825.656677e4@ernst.jennejohn.org> <20120106221610.00005fbe@unknown> <CADLo83-YUtUgAw_r2QNpB2mPxbvPfV0vCRMih-ncAQBCWj73LQ@mail.gmail.com> <20120108160316.00003d59@unknown> <4F0A8164.9090502@herveybayaustralia.com.au> <B1CD9E665E1B62D4A121A9F7@utd71538.utdallas.edu> <4F0B8BD0.5040405@herveybayaustralia.com.au>
next in thread | previous in thread | raw e-mail | index | archive | help
--On January 10, 2012 10:52:32 AM +1000 Da Rock <freebsd-ports@herveybayaustralia.com.au> wrote: > I'm having some trouble using knobs and "defined" in the Makefile. It > keeps complaining about the unexpected. > > I've tried .if defined(WITH_PAM) and .ifdefined(WITH_PAM) and it > complains about an unexpected "(" in the first, and an unexpected word in > the second. > > How do I conditionally handle the knobs? > You need an if - endif for each knob. Something like this. .if defined(WITH_PAM) CONFIGURE_ARGS+= --with-pam PLIST_SUB+= PAM="" .else CONFIGURE_ARGS+= --without-pam PLIST_SUB+= PAM="@comment not installed: " .endif _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?A9BE62A743AF36DDB4A23F4B>