Passing in options to make?

  • Thread starter Thread starter Deleted member 2077
  • Start date Start date
D

Deleted member 2077

Guest
Code:
[root@fire2 /usr/ports/multimedia/vlc]# make
===>  vlc-1.0.4_1,3 does not build on FreeBSD 6.x with Qt4.x, set this OPTION to off or define WITHOUT_QT4 to build CLI only version.
*** Error code 1

Stop in /usr/ports/multimedia/vlc.

I tried setting this in shell, putting in /etc/make.conf, passing it as a parameter, etc and still throws this error. How do you pass this option in ?

thanks.
 
Code:
make -DWITHOUT_QT4
should probably work one time during compiling

or put WITHOUT_QT4=yes in /etc/make.conf and this will be pernament (warning, other ports might use this as well)
 
killasmurf86 said:
Code:
make -DWITHOUT_QT4
should probably work one time during compiling

or put WITHOUT_QT4=yes in /etc/make.conf and this will be pernament (warning, other ports might use this as well)

can do this to limit to the specific port.

Code:
# individual setting for VLC
.if ${.CURDIR:M*/ports/multimedia/vlc}
WITHOUT_QT4=yes
.endif
 
Back
Top