Displaying 1 result from an estimated 1 matches for "pkgcfgdir".
2007 Aug 07
1
pkgconfig fix for nut
...> pkg-config is a more current and more flexible way to do the same and
> you don't have to keep both in sync.
--- configure.in
+++ configure.in
@@ -39,10 +39,6 @@
cgiexecdir='${exec_prefix}/cgi-bin'
driverexecdir='${exec_prefix}/bin'
htmldir='${prefix}/html'
-pkgcfgdir='/usr/lib/pkgconfig'
-if test ! -d "${pkgcfgdir}"; then
- pkgcfgdir=''
-fi
hotplugdir='/etc/hotplug'
if test ! -d "${hotplugdir}"; then
hotplugdir=''
@@ -635,35 +631,6 @@
])
-AC_MSG_CHECKING(whether to enable pkg-config support)
-AC_A...