diff --git a/configure b/configure index e5c7fdd2..e84b6d36 100644 --- a/configure +++ b/configure @@ -3553,7 +3553,7 @@ EOF echo "$ac_t""no" 1>&6 echo "$ac_t"" Warning - $0 has determined that your compiler can not merge" 1>&6 -echo "$ac_t"" template instances, you may have problems linking to libregex++.a - " 1>&6 +echo "$ac_t"" template instances, you may have problems linking to libboost_regex.a - " 1>&6 echo "$ac_t"" see the FAQ for further details." 1>&6 @@ -3593,7 +3593,7 @@ EOF echo "$ac_t""no" 1>&6 echo "$ac_t"" Warning - $0 has determined that your compiler can not merge " 1>&6 echo "$ac_t"" template instances, if these are located inside an archive file," 1>&6 -echo "$ac_t"" you may have problems linking to libregex++.a - see the FAQ for" 1>&6 +echo "$ac_t"" you may have problems linking to libboost_regex.a - see the FAQ for" 1>&6 echo "$ac_t"" further details." 1>&6 @@ -3737,7 +3737,7 @@ EOF echo "$ac_t""no" 1>&6 echo "$ac_t"" Warning - $0 has determined that your compiler can not merge" 1>&6 echo "$ac_t"" template instances, if those instances contain switch statements, " 1>&6 -echo "$ac_t"" you may have problems linking to libregex++.a - " 1>&6 +echo "$ac_t"" you may have problems linking to libboost_regex.a - " 1>&6 echo "$ac_t"" see the FAQ for further details." 1>&6 diff --git a/configure.in b/configure.in index da92b0ad..2935237c 100644 --- a/configure.in +++ b/configure.in @@ -1513,7 +1513,7 @@ AC_TRY_LINK( [AC_DEFINE(BOOST_RE_NO_TEMPLATE_MERGE, []) AC_MSG_RESULT(no) AC_MSG_RESULT([ Warning - $0 has determined that your compiler can not merge]) -AC_MSG_RESULT([ template instances, you may have problems linking to libregex++.a - ]) +AC_MSG_RESULT([ template instances, you may have problems linking to libboost_regex.a - ]) AC_MSG_RESULT([ see the FAQ for further details.]) ] ) @@ -1536,7 +1536,7 @@ AC_TRY_LINK( AC_MSG_RESULT(no) AC_MSG_RESULT([ Warning - $0 has determined that your compiler can not merge ]) AC_MSG_RESULT([ template instances, if these are located inside an archive file,]) -AC_MSG_RESULT([ you may have problems linking to libregex++.a - see the FAQ for]) +AC_MSG_RESULT([ you may have problems linking to libboost_regex.a - see the FAQ for]) AC_MSG_RESULT([ further details.]) ] ) @@ -1663,7 +1663,7 @@ AC_TRY_LINK( AC_MSG_RESULT(no) AC_MSG_RESULT([ Warning - $0 has determined that your compiler can not merge]) AC_MSG_RESULT([ template instances, if those instances contain switch statements, ]) -AC_MSG_RESULT([ you may have problems linking to libregex++.a - ]) +AC_MSG_RESULT([ you may have problems linking to libboost_regex.a - ]) AC_MSG_RESULT([ see the FAQ for further details.]) ] ) diff --git a/demo/jgrep/gcc.mak b/demo/jgrep/gcc.mak index 99db974b..44db05ea 100644 --- a/demo/jgrep/gcc.mak +++ b/demo/jgrep/gcc.mak @@ -6,10 +6,10 @@ CXX= $(INCLUDES) -O2 -I../../../../ -I./ $(CXXFLAGS) $(LDFLAGS) jgrep : jgrep.cpp main.cpp - g++ -ojgrep $(CXX) jgrep.cpp main.cpp -L../../lib/gcc -lregex++ $(LIBS) + g++ -ojgrep $(CXX) jgrep.cpp main.cpp -L../../lib/gcc -lboost_regex $(LIBS) debug : jgrep.cpp main.cpp - g++ -ojgrep -I../../../../ -I./ -g jgrep.cpp main.cpp -L../../lib/gcc -lregex++debug $(LIBS) + g++ -ojgrep -I../../../../ -I./ -g jgrep.cpp main.cpp -L../../lib/gcc -lboost_regex_debug $(LIBS) diff --git a/demo/jgrep/makefile.in b/demo/jgrep/makefile.in index 5f996f34..3cdcccc5 100644 --- a/demo/jgrep/makefile.in +++ b/demo/jgrep/makefile.in @@ -8,10 +8,10 @@ LIBS=@LIBS@ EXE=@ac_exe_ext@ OBJ=@ac_obj_ext@ -LIBDEP=../../lib/libregex++.a ../../../../boost/re_detail/regex_options.hpp ../../../../boost/re_detail/regex_config.hpp +LIBDEP=../../lib/libboost_regex.a ../../../../boost/re_detail/regex_options.hpp ../../../../boost/re_detail/regex_config.hpp jgrep$(EXE) : jgrep$(OBJ) main$(OBJ) - $(CXX) -o jgrep$(EXE) jgrep$(OBJ) main$(OBJ) -L../../lib -lregex++ $(LIBS) + $(CXX) -o jgrep$(EXE) jgrep$(OBJ) main$(OBJ) -L../../lib -lboost_regex $(LIBS) jgrep$(OBJ) : jgrep.cpp jgrep.h $(LIBDEP) $(CXX) -c $(CXXFLAGS) -I../../../../ -I./ jgrep.cpp diff --git a/demo/regress/gcc.mak b/demo/regress/gcc.mak index 7bbd7ed3..6cc8bb56 100644 --- a/demo/regress/gcc.mak +++ b/demo/regress/gcc.mak @@ -9,10 +9,10 @@ total : r2 ./r2 tests.txt r2 : tests.cpp parse.cpp regress.cpp - $(CXX) -O2 -o r2 tests.cpp parse.cpp regress.cpp -lregex++ $(LIBS) + $(CXX) -O2 -o r2 tests.cpp parse.cpp regress.cpp -lboost_regex $(LIBS) debug : tests.cpp parse.cpp regress.cpp - $(CXX) -g -o r2 tests.cpp parse.cpp regress.cpp -lregex++debug $(LIBS) + $(CXX) -g -o r2 tests.cpp parse.cpp regress.cpp -lboost_regex_debug $(LIBS) diff --git a/demo/regress/makefile.in b/demo/regress/makefile.in index 1f441f58..33977b76 100644 --- a/demo/regress/makefile.in +++ b/demo/regress/makefile.in @@ -3,13 +3,13 @@ # CXX=@CXX@ CXXFLAGS=@CXXFLAGS@ -I../../../../ -LIBS=@LIBS@ -L../../lib -lregex++ +LIBS=@LIBS@ -L../../lib -lboost_regex EXE=@ac_exe_ext@ OBJ=@ac_obj_ext@ total : @ac_regress@ -LIBDEP=../../lib/libregex++.a ../../../../boost/re_detail/regex_options.hpp ../../../../boost/re_detail/regex_config.hpp +LIBDEP=../../lib/libboost_regex.a ../../../../boost/re_detail/regex_options.hpp ../../../../boost/re_detail/regex_config.hpp r1$(EXE) :: tests.cpp parse.cpp regress.cpp $(CXX) -o r1$(EXE) $(CXXFLAGS) tests.cpp parse.cpp regress.cpp $(LIBS) diff --git a/demo/timer/gcc.mak b/demo/timer/gcc.mak index eabc68c8..84bdddcb 100644 --- a/demo/timer/gcc.mak +++ b/demo/timer/gcc.mak @@ -6,10 +6,10 @@ CXX= $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS) timer : regex_timer.cpp - g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../lib/gcc $(LDFLAGS) -lregex++ $(LIBS) + g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../lib/gcc $(LDFLAGS) -lboost_regex $(LIBS) debug : regex_timer.cpp timer.cpp - g++ $(CXX) -g -o timer regex_timer.cpp -L../../lib/gcc $(LDFLAGS) -lregex++debug $(LIBS) + g++ $(CXX) -g -o timer regex_timer.cpp -L../../lib/gcc $(LDFLAGS) -lboost_regex_debug $(LIBS) diff --git a/demo/timer/makefile.in b/demo/timer/makefile.in index 49dfff24..31c3ceb1 100644 --- a/demo/timer/makefile.in +++ b/demo/timer/makefile.in @@ -7,10 +7,10 @@ LIBS=@LIBS@ EXE=@ac_exe_ext@ OBJ=@ac_obj_ext@ -LIBDEP=../../lib/libregex++.a ../../../../boost/re_detail/regex_options.hpp ../../../../boost/re_detail/regex_config.hpp +LIBDEP=../../lib/libboost_regex.a ../../../../boost/re_detail/regex_options.hpp ../../../../boost/re_detail/regex_config.hpp regex_timer$(EXE) : regex_timer$(OBJ) - $(CXX) -o timer$(EXE) regex_timer$(OBJ) -L../../lib -lregex++ $(LIBS) + $(CXX) -o timer$(EXE) regex_timer$(OBJ) -L../../lib -lboost_regex $(LIBS) regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP) $(CXX) -c $(CXXFLAGS) -DSTRICT -I../../../../ -I./ regex_timer.cpp diff --git a/lib/makefile.in b/lib/makefile.in index 9a9d5585..4eae6aef 100644 --- a/lib/makefile.in +++ b/lib/makefile.in @@ -1,5 +1,5 @@ -LIBNAME=regex++ +LIBNAME=boost_regex CPP=@CXX@ AR=ar diff --git a/lib/makefile.org b/lib/makefile.org index c302316c..95663370 100644 --- a/lib/makefile.org +++ b/lib/makefile.org @@ -1,5 +1,5 @@ -LIBNAME=regex++ +LIBNAME=boost_regex CPP=@CXX@ AR=ar @@ -16,3 +16,4 @@ lib$(LIBNAME).a : $(ALL_O) + diff --git a/makefile.in b/makefile.in index 11b629fd..ba1ae513 100644 --- a/makefile.in +++ b/makefile.in @@ -1,9 +1,9 @@ ALL_DEP=@ac_all_dep@ -base: ./lib/libregex++.a +base: ./lib/libboost_regex.a -./lib/libregex++.a: $(ALL_DEP) +./lib/libboost_regex.a: $(ALL_DEP) sh dmi.sh lib