Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3536f993
Commit
3536f993
authored
May 13, 2010
by
Glenn Morris
Browse files
* configure.in: Fix some paren typos.
parent
7cab80f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
ChangeLog
ChangeLog
+2
-0
configure
configure
+3
-3
configure.in
configure.in
+3
-3
No files found.
ChangeLog
View file @
3536f993
2010-05-13 Glenn Morris <rgm@gnu.org>
* configure.in: Fix some paren typos.
* configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
* configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
...
...
configure
View file @
3536f993
...
...
@@ -6484,7 +6484,7 @@ case $opsys in
START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o'
;;
netbsd | openbsd )
if test -f $
(
CRT_DIR
)
/crti.o; then
if test -f $CRT_DIR/crti.o; then
LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtend.o $(CRT_DIR)/crtn.o'
START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o $(CRT_DIR)/crti.o $(CRT_DIR)/crtbegin.o'
else
...
...
@@ -26578,13 +26578,13 @@ if test "x$GCC" = "xyes"; then
## FIXME? s/gnu-linux.h used to define LIB_GCC as below, then
## immediately undefine it again and redefine it to empty.
## Was the C_SWITCH_X_SITE part really necessary?
## LIB_GCC=`$
(
CC
)
$
(
C_SWITCH_X_SITE
)
-print-libgcc-file-name`
## LIB_GCC=`$CC $C_SWITCH_X_SITE -print-libgcc-file-name`
LIB_GCC=
fi
;;
## Ask GCC where to find libgcc.a.
*) LIB_GCC=`$
(
CC
)
-print-libgcc-file-name 2> /dev/null` ;;
*) LIB_GCC=`$CC -print-libgcc-file-name 2> /dev/null` ;;
esac
fi
...
...
configure.in
View file @
3536f993
...
...
@@ -1094,7 +1094,7 @@ case $opsys in
START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o'
;;
netbsd | openbsd )
if test -f $
(
CRT_DIR
)
/crti.o; then
if test -f $CRT_DIR/crti.o; then
LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtend.o $(CRT_DIR)/crtn.o'
START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o $(CRT_DIR)/crti.o $(CRT_DIR)/crtbegin.o'
else
...
...
@@ -3242,13 +3242,13 @@ if test "x$GCC" = "xyes"; then
## FIXME? s/gnu-linux.h used to define LIB_GCC as below, then
## immediately undefine it again and redefine it to empty.
## Was the C_SWITCH_X_SITE part really necessary?
## LIB_GCC=`$
(
CC
)
$
(
C_SWITCH_X_SITE
)
-print-libgcc-file-name`
## LIB_GCC=`$CC $C_SWITCH_X_SITE -print-libgcc-file-name`
LIB_GCC=
fi
;;
## Ask GCC where to find libgcc.a.
*) LIB_GCC=`$
(
CC
)
-print-libgcc-file-name 2> /dev/null` ;;
*) LIB_GCC=`$CC -print-libgcc-file-name 2> /dev/null` ;;
esac
fi dnl if $GCC
AC_SUBST(LIB_GCC)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment