]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/ntp/sntp/libopts/m4/liboptschk.m4
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / ntp / sntp / libopts / m4 / liboptschk.m4
1 # liboptschk.m4 serial 1 (autogen - 5.7.3)
2 dnl Copyright (C) 2005 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 dnl Time-stamp:        "2006-09-23 19:42:31 bkorb"
8 dnl Last Committed:    $Date: 2006/09/24 02:59:00 $
9
10 dnl This file can can be used in projects which are not available under
11 dnl the GNU General Public License or the GNU Library General Public
12 dnl License but which still want to provide support for the GNU gettext
13 dnl functionality.
14 dnl Please note that the actual code of the GNU gettext library is covered
15 dnl by the GNU Library General Public License, and the rest of the GNU
16 dnl gettext package package is covered by the GNU General Public License.
17 dnl They are *not* in the public domain.
18
19 dnl Authors:
20 dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
21 dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
22
23 AC_PREREQ(2.50)
24
25 AC_DEFUN([ag_FIND_LIBOPTS],
26     [if test "X${ac_cv_header_autoopts_options_h}" == Xno
27     then
28       :
29     else
30       f=`autoopts-config cflags` 2>/dev/null
31       test X"${f}" = X && f=`libopts-config cflags` 2>/dev/null
32       if test X"${f}" = X
33       then
34         :
35       else
36         AC_DEFINE([HAVE_LIBOPTS],[1],[define if we can find libopts])
37         CFLAGS="${CFLAGS} ${f}"
38         f=`autoopts-config ldflags` 2>/dev/null
39         test X"${f}" = X && f=`libopts-config ldflags` 2>/dev/null
40         LIBS="${LIBS} ${f}"
41       fi
42     fi])