OSDN Git Service

* configure.in (--enable-c-cpplib): New option.
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 29 Jul 1997 22:07:34 +0000 (22:07 +0000)
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 29 Jul 1997 22:07:34 +0000 (22:07 +0000)
(extra_c_flags, extra_c_objs):  New variables.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14556 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/configure.in

index 65a95fc..e6d0683 100644 (file)
@@ -79,6 +79,14 @@ if [[ x$gxx_include_dir = x ]]; then
        gxx_include_dir='${prefix}/include/g++'
 fi
 
+# Enable use of cpplib for C.
+AC_ARG_ENABLE(c-cpplib,
+[  --enable-c-cpplib       Use cpplib for C.],
+if [[[ x$enable_c_cpplib != xno ]]]; then
+  extra_c_objs="${extra_c_objs} cpplib.o cppexp.o cpphash.o cpperror.o"
+  extra_c_flags=-DUSE_CPPLIB=1
+fi)
+
 # Enable threads
 # Pass with no value to take the default
 # Pass with a value to specify a thread package
@@ -3016,6 +3024,8 @@ AC_SUBST(all_headers)
 AC_SUBST(extra_passes)
 AC_SUBST(extra_programs)
 AC_SUBST(extra_parts)
+AC_SUBST(extra_c_objs)
+AC_SUBST(extra_c_flags)
 AC_SUBST(extra_objs)
 AC_SUBST(host_extra_gcc_objs)
 AC_SUBST(extra_headers_list)