diff options
author | Werner Koch <[email protected]> | 2013-02-20 19:31:52 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-02-22 08:29:30 +0000 |
commit | 21f5a9ec27c0794141a835a5bb3c69495ee554a6 (patch) | |
tree | 67e654433e45bc7a245738e9d6d5c4cf7606381a | |
parent | agent: fix two bugs. (diff) | |
download | gnupg-21f5a9ec27c0794141a835a5bb3c69495ee554a6.tar.gz gnupg-21f5a9ec27c0794141a835a5bb3c69495ee554a6.zip |
Remove build hacks for FreeBSD.
* configure.ac [freebsd]: Do not add /usr/local to CPPFLAGS and
LDFLAGS.
--
Back in ~2000 we introduced a quick hack to make building of Libgcrypt
on FreeBSD easier by always adding -I/usr/local/include and
-L/usr/local/lib . It turned out that this is a bad idea if one wants
to build with library version which is not installed in /usr/local.
The hack made was eventually (in 2003) copied from Libgcrypt to
GnuPG-2.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 5881df1a1..cf5ab3fa6 100644 --- a/configure.ac +++ b/configure.ac @@ -627,12 +627,6 @@ case "${host}" in try_gettext="no" ;; - *-*-freebsd*) - # FreeBSD - CPPFLAGS="$CPPFLAGS -I/usr/local/include" - LDFLAGS="$LDFLAGS -L/usr/local/lib" - ;; - *-*-hpux*) if test -z "$GCC" ; then CFLAGS="$CFLAGS -Ae -D_HPUX_SOURCE" |