Fix FreeBSD build.
- Recent changes to the build system appear to make the assumption that the GNU regex APIs are universally available. This isn't the case on FreeBSD, which requires libgnuregex to provide that functionality. This broke the host keymap build.
This commit is contained in:
@@ -573,7 +573,7 @@ HOST_HDRS += [ FDirName $(HAIKU_TOP) headers build host $(HOST_PLATFORM) ] ;
|
||||
if $(HOST_PLATFORM) = freebsd {
|
||||
# FreeBSD's gcc doesn't include /usr/local/* in its search paths,
|
||||
# though that's where most things from ports wind up being installed.
|
||||
HOST_HDRS += /usr/local/include ;
|
||||
HOST_HDRS += /usr/local/include /usr/include/gnu ;
|
||||
HOST_LINKFLAGS += -L/usr/local/lib ;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user