summaryrefslogtreecommitdiff
path: root/config/liboptschk.m4
blob: 4a45bdefc6e067804877a9ab6471bfad3adbb539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# liboptschk.m4 serial 2 (autogen - 5.11.4)
dnl Copyright (c) 2005-2012 by Bruce Korb - all rights reserved
dnl
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
dnl
dnl Time-stamp:        "2010-12-07 12:57:56 bkorb"
dnl
AC_DEFUN([ag_FIND_LIBOPTS],
  [if test "X${ac_cv_header_autoopts_options_h}" = Xno
  then :
  else
    f=`autoopts-config cflags` 2>/dev/null
    if test X"${f}" = X
    then
      :
    else
      AC_DEFINE([HAVE_LIBOPTS],[1],[define if we can find libopts])
      CFLAGS="${CFLAGS} ${f}"
      ao_CFLAGS="${f}"
      AC_SUBST(ao_CFLAGS)

      f=`autoopts-config ldflags` 2>/dev/null
      LIBS="${LIBS} ${f}"
      ao_LIBS="${f}"
      AC_SUBST(ao_LIBS)
    fi
  fi])