Categories

FreeBSD + [FireBird / PostgreSQL] in a jailed enviroment

Today I ran into an interesting problem. While building firebird2-client from ports I got this little message:

1
2
Please do not build firebird as ‘root’ because this may
cause conflicts with SysV semaphores of running services

This was easily overcome with with this short flag (and yes, I got that from peeking in the makefile):

1
make -DPACKAGE_BUILDING

After the build had [...]