我正在尝试构建freetds,但希望它在freetds-devel中包含静态库。看起来它需要一个选项_with_static
,但指定它并不清楚。这是RPM文件的一部分:
%build
%configure \
--disable-dependency-tracking \
--disable-rpath \
%{!?_with_static: --disable-static} \
--with-tdsver="4.2" \
--with-unixodbc="%{_prefix}" \
--enable-msdblib \
--enable-sybase-compat \
--with-gnutls
在我运行_with_static
时,如何更改spec文件以仅提供我想要的选项如何指定rpmbuild
?
答案 0 :(得分:2)
将--with static
传递给rpmbuild
。