1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

Improve getopt_long search, per Peter:

AC_SEARCH_LIBS(getopt_long, [getopt])
This commit is contained in:
Bruce Momjian
2002-07-17 02:54:01 +00:00
parent 5af19e4227
commit de1a6978fe
2 changed files with 70 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.190 2002/07/16 05:46:35 momjian Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.191 2002/07/17 02:54:01 momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@@ -696,7 +696,7 @@ AC_CHECK_LIB(BSD, main)
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(resolv, main)
AC_CHECK_LIB(getopt, main)
AC_SEARCH_LIBS(getopt_long, [getopt])
# QNX:
AC_CHECK_LIB([[unix]], main)
AC_SEARCH_LIBS(crypt, crypt)