Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and PICFLAG_FOR_TARGET.
* Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and PICFLAG_FOR_TARGET. (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET. * configure: Emit a definition for the new macro enable_shared into each Makefile. * config/mh-sparcpic (PICFLAG): Define to properly according to current multilib configuration. * config/mt-sparcpic (PICFLAG_FOR_TARGET): Define to properly according to current multilib configuration. From-SVN: r17680
This commit is contained in:
parent
94e5565f92
commit
4e77e8f159
14
ChangeLog
14
ChangeLog
@ -1,3 +1,17 @@
|
|||||||
|
Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
|
||||||
|
|
||||||
|
* Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
|
||||||
|
PICFLAG_FOR_TARGET.
|
||||||
|
(EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
|
||||||
|
|
||||||
|
* configure: Emit a definition for the new macro enable_shared
|
||||||
|
into each Makefile.
|
||||||
|
|
||||||
|
* config/mh-sparcpic (PICFLAG): Define to properly according
|
||||||
|
to current multilib configuration.
|
||||||
|
* config/mt-sparcpic (PICFLAG_FOR_TARGET): Define to properly
|
||||||
|
according to current multilib configuration.
|
||||||
|
|
||||||
Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
|
Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
* Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
|
* Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
|
||||||
|
@ -1 +1 @@
|
|||||||
PICFLAG=-fPIC
|
PICFLAG=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
|
||||||
|
@ -1 +1 @@
|
|||||||
PICFLAG_FOR_TARGET=-fPIC
|
PICFLAG_FOR_TARGET=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
|
||||||
|
7
configure
vendored
7
configure
vendored
@ -1195,6 +1195,13 @@ EOF
|
|||||||
echo gxx_include_dir = ${with_gxx_include_dir} >> ${Makefile}
|
echo gxx_include_dir = ${with_gxx_include_dir} >> ${Makefile}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# record if we want to build shared libs.
|
||||||
|
if test -z "${enable_shared}"; then
|
||||||
|
echo enable_shared = no >> ${Makefile}
|
||||||
|
else
|
||||||
|
echo enable_shared = ${enable_shared} >> ${Makefile}
|
||||||
|
fi
|
||||||
|
|
||||||
# reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
|
# reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
|
||||||
# remove any form feeds.
|
# remove any form feeds.
|
||||||
if [ -z "${subdirs}" ]; then
|
if [ -z "${subdirs}" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user