| 1 | # lib-prefix.m4 serial 1 (gettext-0.11)
|
|---|
| 2 | dnl Copyright (C) 2001-2002 Free Software Foundation, Inc.
|
|---|
| 3 | dnl This file is free software, distributed under the terms of the GNU
|
|---|
| 4 | dnl General Public License. As a special exception to the GNU General
|
|---|
| 5 | dnl Public License, this file may be distributed as part of a program
|
|---|
| 6 | dnl that contains a configuration script generated by Autoconf, under
|
|---|
| 7 | dnl the same distribution terms as the rest of that program.
|
|---|
| 8 |
|
|---|
| 9 | dnl From Bruno Haible.
|
|---|
| 10 |
|
|---|
| 11 | dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed
|
|---|
| 12 | dnl to access previously installed libraries. The basic assumption is that
|
|---|
| 13 | dnl a user will want packages to use other packages he previously installed
|
|---|
| 14 | dnl with the same --prefix option.
|
|---|
| 15 | dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate
|
|---|
| 16 | dnl libraries, but is otherwise very convenient.
|
|---|
| 17 | AC_DEFUN([AC_LIB_PREFIX],
|
|---|
| 18 | [
|
|---|
| 19 | AC_BEFORE([$0], [AC_LIB_LINKFLAGS])
|
|---|
| 20 | AC_REQUIRE([AC_PROG_CC])
|
|---|
| 21 | AC_REQUIRE([AC_CANONICAL_HOST])
|
|---|
| 22 | AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
|
|---|
| 23 | dnl By default, look in $includedir and $libdir.
|
|---|
| 24 | use_additional=yes
|
|---|
| 25 | AC_LIB_WITH_FINAL_PREFIX([
|
|---|
| 26 | eval additional_includedir=\"$includedir\"
|
|---|
| 27 | eval additional_libdir=\"$libdir\"
|
|---|
| 28 | ])
|
|---|
| 29 | AC_ARG_WITH([lib-prefix],
|
|---|
| 30 | [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib
|
|---|
| 31 | --without-lib-prefix don't search for libraries in includedir and libdir],
|
|---|
| 32 | [
|
|---|
| 33 | if test "X$withval" = "Xno"; then
|
|---|
| 34 | use_additional=no
|
|---|
| 35 | else
|
|---|
| 36 | if test "X$withval" = "X"; then
|
|---|
| 37 | AC_LIB_WITH_FINAL_PREFIX([
|
|---|
| 38 | eval additional_includedir=\"$includedir\"
|
|---|
| 39 | eval additional_libdir=\"$libdir\"
|
|---|
| 40 | ])
|
|---|
| 41 | else
|
|---|
| 42 | additional_includedir="$withval/include"
|
|---|
| 43 | additional_libdir="$withval/lib"
|
|---|
| 44 | fi
|
|---|
| 45 | fi
|
|---|
| 46 | ])
|
|---|
| 47 | if test $use_additional = yes; then
|
|---|
| 48 | dnl Potentially add $additional_includedir to $CPPFLAGS.
|
|---|
| 49 | dnl But don't add it
|
|---|
| 50 | dnl 1. if it's the standard /usr/include,
|
|---|
| 51 | dnl 2. if it's already present in $CPPFLAGS,
|
|---|
| 52 | dnl 3. if it's /usr/local/include and we are using GCC on Linux,
|
|---|
| 53 | dnl 4. if it doesn't exist as a directory.
|
|---|
| 54 | if test "X$additional_includedir" != "X/usr/include"; then
|
|---|
| 55 | haveit=
|
|---|
| 56 | for x in $CPPFLAGS; do
|
|---|
| 57 | AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
|
|---|
| 58 | if test "X$x" = "X-I$additional_includedir"; then
|
|---|
| 59 | haveit=yes
|
|---|
| 60 | break
|
|---|
| 61 | fi
|
|---|
| 62 | done
|
|---|
| 63 | if test -z "$haveit"; then
|
|---|
| 64 | if test "X$additional_includedir" = "X/usr/local/include"; then
|
|---|
| 65 | if test -n "$GCC"; then
|
|---|
| 66 | case $host_os in
|
|---|
| 67 | linux*) haveit=yes;;
|
|---|
| 68 | esac
|
|---|
| 69 | fi
|
|---|
| 70 | fi
|
|---|
| 71 | if test -z "$haveit"; then
|
|---|
| 72 | if test -d "$additional_includedir"; then
|
|---|
|
|---|