Add Makefile.in so that configure can determine if inet_aton.o is required
Add CFLAGS= @CPPFLAGS@ to Makefile.global and configure so that build is useful for finding extra header files Split header files from libraries in build. Doesn't make much sense to look for a header file in /usr/local/lib, nor to look for a library in /usr/local/include :)
This commit is contained in:
parent
0d5f773b72
commit
4001a8c7d3
@ -7,7 +7,7 @@
|
||||
#
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.7 1997/02/04 08:53:28 scrappy Exp $
|
||||
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.8 1997/02/05 21:21:33 scrappy Exp $
|
||||
#
|
||||
# NOTES
|
||||
# Essentially all Postgres make files include this file and use the
|
||||
@ -285,6 +285,8 @@ CC= @CC@
|
||||
#
|
||||
LEX= @LEX@
|
||||
|
||||
CFLAGS= @CPPFLAGS@
|
||||
LDFLAGS= @LDFLAGS@
|
||||
LDADD_BE= @LIBS@
|
||||
LD_ADD= $(LDADD_BE)
|
||||
|
||||
|
312
src/configure
vendored
312
src/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -33,6 +33,8 @@ freebsd*) PORTNAME='BSD44_derived' ;;
|
||||
exit;;
|
||||
esac
|
||||
AC_SUBST(PORTNAME)
|
||||
AC_SUBST(LDFLAGS)
|
||||
AC_SUBST(CPPFLAGS)
|
||||
|
||||
AC_CONFIG_HEADER(include/config.h)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user